-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathutils.py
94 lines (90 loc) · 2.54 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import toml
def read_conf(conf_file):
conf_file = open(conf_file)
conf = conf_file.read()
conf = toml.loads(conf)
conf_file.close()
return conf
def convert_timestamp(timestamp):
timestamp = timestamp.split('T')
date = timestamp[0].split('-')
time = timestamp[1].split('+')
time = time[0].split(':')
timestamp = int(date[0] + date[1] + date[2] + time[0] + time[1] + time[2])
return timestamp
def set_pt_lang(yt_lang, conf_lang):
YOUTUBE_LANGUAGE = {
"arabic": 'ar',
"english": 'en',
"french": 'fr',
"german": 'de',
"hindi": 'hi',
"italian": 'it',
"japanese": 'ja',
"korean": 'ko',
"mandarin": 'zh-CN',
"portuguese": 'pt-PT',
"punjabi": 'pa',
"russian": 'ru',
"spanish": 'es'
}
PEERTUBE_LANGUAGE = {
"arabic": "ar",
"english": "en",
"french": "fr",
"german": "de",
"hindi": "hi",
"italian": "it",
"japanese": "ja",
"korean": "ko",
"mandarin": "zh",
"portuguese": "pt",
"punjabi": "pa",
"russian": "ru",
"spanish": "es"
}
# if youtube provides a language value
if yt_lang != None:
# if the language value is a value and not a key
if len((yt_lang).split("-")[0]) < 3:
key_list = list(YOUTUBE_LANGUAGE.keys())
val_list =list(YOUTUBE_LANGUAGE.values())
yt_lang = key_list[val_list.index(yt_lang)]
else:
pass
# now set the language to the peertube value using the key
try:
lang = PEERTUBE_LANGUAGE[yt_lang]
except:
# in the event that no key exists for the youtube language, use the conf value
if len(conf_lang) > 2:
conf_lang = PEERTUBE_LANGUAGE[conf_lang]
lang = conf_lang
else:
if len(conf_lang) > 2:
conf_lang = PEERTUBE_LANGUAGE[conf_lang]
lang = conf_lang
return lang
def set_pt_category(category_str):
print(category_str)
PEERTUBE_CATEGORY = {
"music": 1,
"films": 2,
"vehicles": 3,
"sport": 5,
"travels": 6,
"gaming": 7,
"people": 8,
"comedy": 9,
"entertainment": 10,
"news": 11,
"how to": 12,
"education": 13,
"activism": 14,
"science & technology": 15,
"science": 15,
"technology": 15,
"animals": 16
}
category = str(PEERTUBE_CATEGORY[category_str])
return category