-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.py
247 lines (210 loc) · 8.69 KB
/
common.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
from subprocess import Popen
#from config import title_filter,description_filter
from yt_dlp import YoutubeDL
#import getConfig
from getConfig import ConfigHandler
from datetime import datetime, timedelta, timezone
import os
from time import sleep
import re
import random
getConfig = ConfigHandler()
def vid_executor(streams, command, unarchived = False, frequency = None):
if getConfig.randomise_lists() is True:
streams = random_sample(streams)
if(command == "spawn"):
if unarchived == True:
download_script = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'unarchived.py')
else:
download_script = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'downloadVid.py')
if frequency:
frequency_sec = cron_frequency(frequency)
sleep_time = frequency_sec/(max(len(streams) + 1),2)
else:
sleep_time = 60
for i, live in enumerate(streams):
command = ["python", download_script, '--', live]
#Popen(command)
Popen(command, start_new_session=True)
if i < len(streams) - 1:
sleep(random.uniform(max(sleep_time/2, 1.0),max(sleep_time * 1.25, 1.0)))
return
elif(command == "bash"):
bash_array = ' '.join(streams)
print(bash_array)
return bash_array
else:
print(streams)
return streams
def titleFilter(live,channel_id):
titFilter = getConfig.get_title_filter().get(channel_id)
if titFilter is None:
return None
#Return the result of the regex, if the search fails (such as a syntax error), disregard filter
try:
search = re.search(titFilter,live.get('title'))
if(search):
return True
else:
return False
except:
print("Filter failed")
return None
def descriptionFilter(live,channel_id):
descFilter = getConfig.get_desc_filter().get(channel_id)
#If filter not present, return None
if descFilter is None:
return None
desc = live.get('description', None)
if desc is None:
ydl_opts = {
'quiet': True,
'force_generic_extractor': True,
'sleep_interval': 1,
'sleep_interval_requests': 1,
'no_warnings': True,
'cookiefile': getConfig.get_cookies_file(),
#'verbose': True
#'match_filter': filters
}
with YoutubeDL(ydl_opts) as ydl:
url = "https://www.youtube.com/watch?v={0}".format(live.get('id'))
info = ydl.extract_info(url, download=False)
#print(info)
desc = info.get('description')
#if not desc:
# return None
#Return the result of the regex, if the search fails (such as a syntax error), disregard filter
try:
if re.search(descFilter,desc):
return True
else:
return False
except:
return None
def filtering(live,channel_id):
title = titleFilter(live,channel_id)
description = descriptionFilter(live,channel_id)
if(title or description):
return True
elif(title is None and description is None):
return True
else:
return False
def withinFuture(releaseTime=None):
#Assume true if value missing
lookahead = getConfig.get_look_ahead()
if(not releaseTime or not lookahead):
return True
release = datetime.fromtimestamp(releaseTime, timezone.utc)
limit = datetime.now(timezone.utc) + timedelta(hours=lookahead)
if(release <= limit):
return True
else:
return False
def getAvailability(live):
if live.availability is None:
from yt_dlp import YoutubeDL
options = {
"cookiefile": getConfig.get_cookies_file(),
"quiet": True
}
with YoutubeDL(options) as ydl:
#If unable to get availability (such as broken cookies or not a member), then keep as none
try:
info_dict = ydl.extract_info("https://youtu.be/{0}".format(live.id), download=False)
live.description = info_dict.get('description', None)
live.availability = info_dict.get('availability', None)
except:
pass
return live.availability
def get_upcoming_or_live_videos(channel_id, tab=None):
#channel_id = str(channel_id)
ydl_opts = {
'quiet': True,
'extract_flat': True,
#'force_generic_extractor': True,
'sleep_interval': 1,
'sleep_interval_requests': 1,
'no_warnings': True,
'cookiefile': getConfig.get_cookies_file(),
#'playlist_items': '1:10',
#'verbose': True
#'match_filter': filters
}
with YoutubeDL(ydl_opts) as ydl:
if tab == "membership":
if channel_id.startswith("UUMO"):
url = "https://www.youtube.com/playlist?list={0}".format(channel_id)
elif channel_id.startswith("UC") or channel_id.startswith("UU"):
url = "https://www.youtube.com/playlist?list={0}".format("UUMO" + channel_id[2:])
else:
url = "https://www.youtube.com/channel/{0}/{1}".format(channel_id, tab)
ydl_opts.update({'playlist_items': '1:10'})
elif tab == "streams":
if channel_id.startswith("UU"):
url = "https://www.youtube.com/playlist?list={0}".format(channel_id)
elif channel_id.startswith("UC"):
url = "https://www.youtube.com/playlist?list={0}".format("UU" + channel_id[2:])
elif channel_id.startswith("UUMO"):
url = "https://www.youtube.com/playlist?list={0}".format("UU" + channel_id[4:])
else:
url = "https://www.youtube.com/channel/{0}/{1}".format(channel_id, tab)
ydl_opts.update({'playlist_items': '1:10'})
else:
url = "https://www.youtube.com/channel/{0}/{1}".format(channel_id, tab)
ydl_opts.update({'playlist_items': '1:10'})
info = ydl.extract_info(url, download=False)
#print(info)
upcoming_or_live_videos = []
for video in info['entries']:
if (video.get('live_status') == 'is_live' or video.get('live_status') == 'post_live' or (video.get('live_status') == 'is_upcoming' and withinFuture(video.get('release_timestamp')))) and filtering(video,video.get('channel_id')):
#print("live_status = {0}".format(video.get('live_status')))
#print(video)
upcoming_or_live_videos.append(video.get('id'))
return list(set(upcoming_or_live_videos))
def combine_unarchived(ids):
yta_pattern = r"^.([0-9A-Za-z_-]{10}[048AEIMQUYcgkosw])-yta\.info\.json$"
directory = getConfig.get_unarchived_temp_folder()
if not os.path.exists(directory):
os.makedirs(directory, exist_ok=True)
files = [f for f in os.listdir(directory) if (os.path.isfile(os.path.join(directory, f)) and os.path.join(directory, f).endswith('.info.json'))]
id_set = set()
for id in ids:
id_set.add(id)
for file in files:
if re.match(yta_pattern, file):
continue
id = file.replace('.info.json', '')
id_set.add(id)
return list(id_set)
def cron_frequency(cron_expr):
from croniter import croniter
now = datetime.now()
cron = croniter(cron_expr, now)
# Get the next two execution times
next_time = cron.get_next(datetime)
next_time_after = cron.get_next(datetime)
# Calculate the interval in seconds
interval_seconds = (next_time_after - next_time).total_seconds()
return interval_seconds
def replace_ip_in_json(file_name):
pattern = re.compile(r'((?:[0-9]{1,3}\.){3}[0-9]{1,3})|((?:[a-f0-9]{1,4}:){7}[a-f0-9]{1,4})')
with open(file_name, 'r', encoding="utf8") as file:
content = file.read()
modified_content = re.sub(pattern, '0.0.0.0', content)
with open(file_name, 'w', encoding="utf8") as file:
file.write(modified_content)
def random_sample(data, k=None):
"""Returns a random sample of size k from a list, tuple, or dictionary."""
if k is None:
k = len(data)
if isinstance(data, list):
return random.sample(data, k) # Returns a list
elif isinstance(data, tuple):
return tuple(random.sample(data, k)) # Returns a tuple
elif isinstance(data, dict):
sampled_items = dict(random.sample(list(data.items()), k)) # Returns a dictionary
return sampled_items
else:
raise TypeError("Unsupported data type. Only lists, tuples, and dictionaries are allowed.")