]> git.gir.st - subscriptionfeed.git/blob - app/youtube/__init__.py
don't load livestreams through proxy for osx(?) devices
[subscriptionfeed.git] / app / youtube / __init__.py
1 import re
2 import time
3 import sqlite3
4 import requests
5 from urllib.parse import urlparse
6 #from flask_login import current_user, login_required
7 from flask_login import LoginManager, UserMixin, current_user, login_user, logout_user, login_required
8 from flask import Blueprint, render_template, request, redirect, flash, url_for, jsonify, g, current_app
9 from werkzeug.exceptions import NotFound, BadGateway
10
11 from ..common.common import *
12 from ..common.anticaptcha import submit_captcha
13 from .lib import *
14
15 frontend = Blueprint('youtube', __name__,
16 template_folder='templates',
17 static_folder='static',
18 static_url_path='/static/yt')
19
20 @frontend.route('/')
21 def index():
22 return redirect(url_for('.feed'), code=302)
23
24 @frontend.route('/feed/subscriptions')
25 # disabled for guest user: @login_required
26 def feed():
27 if current_user.is_anonymous:
28 token = 'guest'
29 if 'welcome_message' in cf['frontend']:
30 flash(cf['frontend']['welcome_message'], "welcome")
31 else:
32 token = current_user.token
33 page = int(request.args.get('page', 0))
34 with sqlite3.connect(cf['global']['database']) as conn:
35 c = conn.cursor()
36 c.execute("""
37 SELECT videos.id, channel_id, name, title, length, livestream, published, playlist_videos.playlist_id, display
38 FROM videos
39 JOIN channels ON videos.channel_id = channels.id
40 LEFT JOIN playlist_videos ON (videos.id = playlist_videos.video_id)
41 LEFT JOIN flags ON (videos.id = flags.video_id) AND (flags.user = ?)
42 WHERE (channel_id IN (SELECT channel_id FROM subscriptions WHERE user=? AND type = 'channel')
43 OR playlist_videos.playlist_id IN (SELECT channel_id FROM subscriptions WHERE user=? AND type = 'playlist')
44 OR flags.display = 'pinned')
45 AND flags.display IS NOT 'hidden'
46 ORDER BY (display = 'pinned') DESC, crawled DESC
47 LIMIT 36
48 OFFSET 36*?""", (token, token, token, page))
49 rows = [{
50 'video_id': video_id,
51 'channel_id': channel_id,
52 'author': author,
53 'title': title,
54 'length': length,
55 'livestream': livestream,
56 'published': published,
57 'playlist': playlist,
58 'pinned': display == 'pinned',
59 } for (video_id, channel_id, author, title, length, livestream, published, playlist, display) in c.fetchall()]
60 return render_template('index.html.j2', rows=rows, page=page)
61
62 @frontend.route('/watch')
63 def watch():
64 if current_user.is_anonymous:
65 token = 'guest'
66 else:
67 token = current_user.token
68
69 if not 'v' in request.args:
70 return "missing video id", 400
71
72 plaintextheaders = {
73 'content-type': 'text/plain',
74 'Link': "<data:text/css,body%7Bcolor:%23eee;background:%23333%7D>; rel=stylesheet;"
75 }
76
77 video_id = request.args.get('v')
78 sts, algo = get_cipher()
79 video_url, stream_map, metadata, error, errdetails = get_video_info(video_id, sts, algo)
80
81 extra = {'geolocked':'local=1', 'livestream':'raw=0'}.get(error,'')
82 invidious_url = f"https://invidious.snopyta.org/watch?v={video_id}&{extra}"
83 errdetails = {
84 'banned': "Instance is being rate limited.",
85 'malformed': "Video ID is invalid.",
86 'geolocked': "This video is geolocked.",
87 'livestream': "Livestreams not supported on this instance.",
88 'exhausted': errdetails or "Couldn't extract video URLs.",
89 'player': errdetails,
90 }.get(error)
91
92 # if the video is geolocked, and the proxy is enabled, we can still play it:
93 if error == 'geolocked' and 'proxy' in current_app.blueprints.keys():
94 videoplayback = url_for('proxy.videoplayback')
95 query = urlparse(video_url).query
96 video_url = f"{videoplayback}?{query}"
97 for s in stream_map['adaptive']:
98 query = urlparse(s['url']).query
99 s['url'] = f"{videoplayback}?{query}"
100 for s in stream_map['muxed']:
101 query = urlparse(s['url']).query
102 s['url'] = f"{videoplayback}?{query}"
103 error = None
104
105 # if the proxy is enabled, we can also play livestreams:
106 if error == 'livestream' and 'proxy' in current_app.blueprints.keys():
107 # Note: hlsManifestUrl's hostname will be replaced client-side
108 video_url = stream_map['hlsManifestUrl']
109 error = None
110
111 # if the instance is blocked, try submitting a job to the anti captcha service:
112 if error == 'banned' and cf['captcha']['api_key']:
113 r2 = requests.get(f'https://www.youtube.com/watch?v={video_id}&hl=en&gl=US')
114 status = submit_captcha(r2)
115 if status is False:
116 raise Exception("we are banned, but captcha wasn't triggered!")
117 else:
118 message = "right now" if status is True else f"{int(status)} seconds ago"
119 raise BadGateway(f"""
120 {errdetails} An attempt at getting unblocked has been made {message}.
121 Please try again in 30 seconds.
122 """)
123
124 show = request.args.get("show")
125 if show == "raw":
126 if error:
127 msg = errdetails if error=='player' else f"{error.upper()}: {errdetails}"
128 return f"{msg}\n\nRedirecting to Invidious.", 502, {
129 'Refresh': f'2; URL={invidious_url}&raw=1',
130 **plaintextheaders}
131 return redirect(video_url, code=307)
132 elif show == "json":
133 if error and not metadata:
134 return {'error': True, error: errdetails}, 400 # TODO: better (test _CpR4o81XQc)
135 return jsonify(metadata)
136 elif show == "audio":
137 # sorting: we want to prioritize mp4a over opus, and sort by highest quality first
138 # todo: geolocking; prefer open format?
139 if error and not metadata:
140 msg = errdetails if error=='player' else f"{error.upper()}: {errdetails}"
141 return msg, 400, plaintextheaders # TODO: nicer
142 stream = next(iter(sorted([
143 stream for stream in stream_map['adaptive']
144 if stream['mimeType'].startswith('audio/')],
145 key=lambda stream: ('opus' not in stream['mimeType'],
146 stream['bitrate']), reverse=True)
147 ),{}).get('url')
148 return redirect(stream)
149 else:
150 if error and not metadata: # e.g. malformed, private/deleted video, ...
151 return errdetails + f"<br>Try visiting <a href='{invidious_url}'>Invidious</a>.",400 # TODO: nicer
152 meta = prepare_metadata(metadata)
153 with sqlite3.connect(cf['global']['database']) as conn:
154 c = conn.cursor()
155 c.execute("""
156 SELECT COUNT((
157 SELECT 1 FROM subscriptions WHERE channel_id = ? AND user = ?
158 )), COUNT((
159 SELECT 1 FROM flags WHERE video_id = ? AND display = 'pinned' AND user = ?
160 ))""", (meta['channel_id'], token, video_id, token))
161 (is_subscribed, is_pinned) = c.fetchone()
162 return render_template('watch.html.j2',
163 video_id=video_id, video_url=video_url, stream_map=stream_map,
164 video_error=error, errdetails=errdetails, invidious_url=invidious_url,
165 is_pinned=is_pinned, is_subscribed=is_subscribed,
166 **meta)
167
168 @frontend.route('/embed/videoseries')
169 def embed_videoseries():
170 return redirect(url_for('.playlist', list=request.args.get('list')))
171 @frontend.route('/embed/<video_id>')
172 def embed(video_id):
173 if video_id == "videoseries":
174 return redirect(url_for('.playlist', list=request.args.get('list')))
175
176 return redirect(url_for('.watch', v=video_id, t=request.args.get('start')))
177
178 @frontend.route('/<something>', strict_slashes=False)
179 def plain_user_or_video(something):
180 # yt.com interprets this as a username, but we also want to catch youtu.be
181 # short-urls. so we check if it's a channel by querying the RSS feed (this
182 # shoudn't be rate-limited); if that fails, check if it looks like a video
183 # id; or finally give up.
184 if '.' not in something and channel_exists(something):
185 # periods are not valid in usernames, vanity urls or ucids, but common
186 # in urls that get crawled by bots (e.g. index.php). failing early
187 # reduces the amount of invalid channel names getting looked up.
188 return redirect(url_for('.channel', channel_id=something))
189 elif re.match(r"^[-_0-9A-Za-z]{11}$", something): # looks like a video id
190 return redirect(url_for('.watch', v=something, t=request.args.get('t')))
191 else: # ¯\_(ツ)_/¯
192 # XXX: something == 'thethoughtemporium' -> 404s
193 raise NotFound("Note: some usernames not recognized; try searching it")
194
195 @frontend.route('/channel/<channel_id>/<subpage>')
196 @frontend.route('/user/<channel_id>/<subpage>')
197 @frontend.route('/c/<channel_id>/<subpage>')
198 @frontend.route('/channel/<channel_id>/')
199 @frontend.route('/user/<channel_id>/')
200 @frontend.route('/c/<channel_id>/')
201 def channel(channel_id, _=None):
202 token = getattr(current_user, 'token', 'guest')
203
204 if re.match(r"(UC[A-Za-z0-9_-]{22})", channel_id):
205 xmlfeed = fetch_xml("channel_id", channel_id)
206 else:
207 xmlfeed = fetch_xml("user", channel_id)
208
209 if not xmlfeed:
210 return "not found or something", 404 # XXX
211 title, author, videos, channel_id, _ = parse_xml(xmlfeed)
212
213 with sqlite3.connect(cf['global']['database']) as conn:
214 c = conn.cursor()
215 c.execute("""
216 SELECT COUNT(*)
217 FROM subscriptions
218 WHERE channel_id = ? AND user = ?
219 """, (channel_id, token))
220 (is_subscribed,) = c.fetchone()
221
222 return render_template('xmlfeed.html.j2', title=author, rows=videos,
223 is_subscribed=is_subscribed, channel_id=channel_id)
224
225 @frontend.route('/playlist')
226 def playlist():
227 playlist_id = request.args.get('list')
228 if not playlist_id:
229 return "bad list id", 400 # todo
230
231 xmlfeed = fetch_xml("playlist_id", playlist_id)
232 if not xmlfeed:
233 return "not found or something", 404 # XXX
234 title, author, videos, _, _ = parse_xml(xmlfeed)
235 return render_template('xmlfeed.html.j2', title=f"{title} by {author}", rows=videos)
236
237 @frontend.route('/api/timedtext')
238 def timedtext():
239 r = requests.get("https://www.youtube.com/api/timedtext", request.args.to_dict())
240 # Note: in srv1 format, xmlentities are double-encoded m( a smart quote is
241 # even worse: it's '&amp;39;<smartquote>' wtf!? (at least vvt seems ok)
242 if not r.ok:
243 return "error: {r.text}", 400 # TODO: better
244 retval = r.text
245 if request.args.get('fmt') == 'vtt' and request.args.get('kind') == 'asr':
246 # autocaptions are extremely confusing, and stuck in the lower-left corner. fix it up a bit
247 retval = re.sub(r"<.+?>", "", retval) # remove inline html-like markup that times each word/adds styles
248 retval = retval.replace("align:start position:0%", "") # let browser position the text itself
249 # each subtitle-line is repeated twice (first on the lower line, then
250 # on the next "frame" on the upper line). we want to remove the
251 # repetition, as that's confusing without word and line animations:
252 lines = retval.split('\n')
253 retval = '\n'.join([line for line, prev in zip(lines, ['']+lines) if not " --> " in prev])
254 return retval, {'Content-Type': r.headers.get("Content-Type")}
255
256 @frontend.route('/manage/subscriptions')
257 # disabled for guest user: @login_required
258 def subscription_manager():
259 if current_user.is_anonymous:
260 token = 'guest'
261 else:
262 token = current_user.token
263 with sqlite3.connect(cf['global']['database']) as conn:
264 #with conn.cursor() as c:
265 c = conn.cursor()
266 c.execute("""
267 SELECT subscriptions.channel_id, name, type,
268 (subscribed_until < datetime('now')) AS obsolete
269 FROM subscriptions
270 LEFT JOIN (SELECT name, id FROM channels
271 UNION
272 SELECT name, id FROM playlists
273 ) AS channels ON channels.id = subscriptions.channel_id
274 left JOIN websub ON channels.id = websub.channel_id
275 WHERE user = ?
276 AND subscriptions.type IN ('channel', 'playlist')
277 ORDER BY obsolete=0, name COLLATE NOCASE ASC""", (token,))
278 rows = [{
279 'channel_id': channel_id,
280 'author': author or channel_id,
281 'type': type,
282 'subscribed_until': subscribed_until
283 } for (channel_id, author, type, subscribed_until) in c.fetchall()]
284 return render_template('subscription_manager.html.j2', rows=rows)
285
286 @frontend.route('/feed/subscriptions', methods=['POST'])
287 @login_required
288 def feed_post():
289 token = current_user.token
290 action = next(request.form.keys(), None)
291 if action in ['pin', 'unpin', 'hide', 'unhide']:
292 video_id = request.form.get(action)
293 display = {
294 'pin': 'pinned',
295 'unpin': None,
296 'hide': 'hidden',
297 'unhide': None,
298 }[action]
299 with sqlite3.connect(cf['global']['database']) as conn:
300 c = conn.cursor()
301 store_video_metadata(video_id) # only needed for pinning
302 c.execute("""
303 INSERT OR REPLACE INTO flags (user, video_id, display)
304 VALUES (?, ?, ?)
305 """, (token, video_id, display))
306 undo_flash(video_id, action)
307 else:
308 flash("unsupported action", "error")
309 return redirect(request.url, code=303)
310
311 @frontend.route('/manage/subscriptions', methods=['POST'])
312 @login_required
313 def manage_subscriptions():
314 token = current_user.token
315 if 'subscribe' in request.form:
316 some_id = request.form.get("subscribe")
317 match = re.search(r"(UC[A-Za-z0-9_-]{22})", some_id)
318 if match:
319 some_id = match.group(1)
320 id_type = "channel"
321 else:
322 match = re.search(r"((?:PL|LL|EC|UU|FL|UL|OL)[A-Za-z0-9_-]{10,})", some_id)
323 if match: # NOTE: PL-playlists are 32chars, others differ in length.
324 some_id = match.group(1)
325 id_type = "playlist"
326 else:
327 flash("not a valid/subscribable URI", "error")
328 return redirect(request.url, code=303)
329 with sqlite3.connect(cf['global']['database']) as conn:
330 #with conn.cursor() as c:
331 c = conn.cursor()
332 c.execute("""
333 INSERT OR IGNORE INTO subscriptions (user, channel_id, type)
334 VALUES (?, ?, ?)
335 """, (token, some_id, id_type))
336 # TODO: sql-error-handling, asynchronically calling update-subs.pl
337 undo_flash(some_id, 'subscribe')
338
339 elif 'unsubscribe' in request.form:
340 some_id = request.form.get("unsubscribe")
341 with sqlite3.connect(cf['global']['database']) as conn:
342 #with conn.cursor() as c:
343 c = conn.cursor()
344 c.execute("""
345 DELETE FROM subscriptions
346 WHERE user = ? AND channel_id = ?
347 """, (token, some_id))
348 # TODO: sql-error-handling, report success
349 undo_flash(some_id, 'unsubscribe')
350
351 else:
352 flash("unsupported action", "error")
353
354 return redirect(request.url, code=303)
355
356 def get_cipher():
357 # reload cipher from database every 1 hour
358 if 'cipher' not in g or time.time() - g.get('cipher_updated', 0) > 1 * 60 * 60:
359 with sqlite3.connect(cf['global']['database']) as conn:
360 c = conn.cursor()
361 c.execute("SELECT sts, algorithm FROM cipher")
362 g.cipher = c.fetchone()
363 g.cipher_updated = time.time()
364
365 return g.cipher
366
367 #@frontend.teardown_appcontext
368 #def teardown_db():
369 # db = g.pop('db', None)
370 #
371 # if db is not None:
372 # db.close()
373
374 def undo_flash(thing_id, action):
375 undo_action, past_action = {
376 'pin': ('unpin', 'pinned'),
377 'unpin': ('pin', 'unpinned'),
378 'hide': ('unhide', 'hidden'),
379 'unhide': ('hide', 'unhidden'),
380 'subscribe': ('unsubscribe', 'subscribed'),
381 'unsubscribe': ('subscribe', 'unsubscribed'),
382 }.get(action)
383 if 'subscribe' in action and thing_id.startswith('UC'):
384 thing = "channel"
385 thing_url = url_for('.channel', channel_id=thing_id)
386 elif 'subscribe' in action:
387 thing = "playlist"
388 thing_url = url_for('.playlist', playlist_id=thing_id)
389 else:
390 thing = "video"
391 thing_url = url_for('.watch', v=thing_id)
392 flash(f'''
393 <form method=post><input type=hidden name="{undo_action}" value="{thing_id}">
394 <a href="{thing_url}">{thing}</a> {past_action}.
395 <label><input type="submit" hidden>
396 <span style="text-decoration:underline;cursor:pointer">undo</span>.
397 </label></form>''', "info")
398
399 @frontend.app_template_filter('format_date')
400 def format_date(s):
401 import datetime # can't import at top level, because it is inherited from common
402 (y,m,d) = (int(n) for n in s.split('T')[0].split(' ')[0].split('-')) # iso-dates can seperate date from time with space or 'T'
403 M = '_ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split()
404 if y == datetime.datetime.now().year:
405 return f"{d} {M[m]}"
406 else:
407 return f"{M[m]} '{y%100}"
408
409 @frontend.app_template_filter('format_time')
410 def format_time(i):
411 if i is None:
412 return None
413 h = i // (60*60)
414 m = i // 60 % 60
415 s = i % 60
416 return '%d:%02d:%02d' % (h,m,s) if h else '%02d:%02d' % (m,s)
417
418 @frontend.app_template_filter('timeoffset')
419 def timeoffset(s):
420 if s is None:
421 return None
422 match = re.match(r"^(\d+)s?$", s) # e.g. 2040s
423 if match:
424 return match.group(1)
425 match = re.match(r"^(?:(\d+)h)?(?:(\d+)m)?(?:(\d+)s)?$", s) # e.g. 34m, 1h23s
426 if match:
427 return ":".join([n.zfill(2) for n in match.groups('0')])
428 return None
Imprint / Impressum