]> git.gir.st - subscriptionfeed.git/blob - app/youtube/__init__.py
support /live/ and /shorts/ when pasting full youtube URL
[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 = request.args.get('page', 0, type=int)
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, premiere, 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 'premiere': premiere and (# only if it hasn't yet premiered:
57 datetime.strptime(published+'+0000', "%Y-%m-%d %H:%M:%S%z")>datetime.now(tz=timezone.utc)
58 ),
59 'published': published,
60 'playlist': playlist,
61 'pinned': display == 'pinned',
62 } for (video_id, channel_id, author, title, length, livestream, premiere, published, playlist, display) in c.fetchall()]
63 return render_template('index.html.j2', rows=rows, page=page)
64
65 @frontend.route('/watch')
66 def watch():
67 if current_user.is_anonymous:
68 token = 'guest'
69 else:
70 token = current_user.token
71
72 if not 'v' in request.args:
73 return "missing video id", 400
74 if len(request.args.get('v')) != 11:
75 return "malformed video id", 400
76
77 plaintextheaders = {
78 'content-type': 'text/plain',
79 'Link': "<data:text/css,body%7Bcolor:%23eee;background:%23333%7D>; rel=stylesheet;"
80 }
81
82 video_id = request.args.get('v')
83 show = request.args.get("show")
84 itag = request.args.get("itag")
85 video_url, stream_map, metadata, error, errdetails = get_video_info(video_id, metaOnly=(show == 'meta'))
86
87 if itag: # if itag is specified and available, force its use even if not highest resolution
88 video_url = next((e['url'] for e in stream_map['muxed'] if e['itag'] == int(itag)), video_url)
89
90 proxy_on = getattr(g, 'proxy_on', None)
91 proxy_msg = {
92 False: "Log in to use proxy.", # proxy for logged-in users only
93 None: "", # proxy disabled globally
94 True: "", # proxy is available to this user
95 }[proxy_on]
96 extra = {'geolocked':'local=1', 'livestream':'raw=0'}.get(error,'')
97 invidious_url = f"https://invidious.snopyta.org/watch?v={video_id}&{extra}"
98 errdetails = {
99 'banned': "Instance is being rate limited.",
100 'malformed': "Video ID is invalid.",
101 'geolocked': f"This video is geolocked. {proxy_msg}",
102 'livestream': f"Livestreams disabled. {proxy_msg}",
103 'agegated': "Unable to bypass age-restriction.",
104 'scrambled': "VEVO style cyphering not supported.",
105 'no-url': "No muxed stream available.",
106 'exhausted': errdetails or "Couldn't extract video URLs.",
107 'player': errdetails,
108 }.get(error, error)
109
110 # if the video is geolocked, and the proxy is enabled, we can still play
111 # it, if the video is available in the instance server's region:
112 if error == 'geolocked' and video_url and proxy_on:
113 videoplayback = url_for('proxy.videoplayback')
114 query = urlparse(video_url).query
115 video_url = f"{videoplayback}?{query}"
116 for t in ('adaptive_video', 'adaptive_audio', 'muxed'):
117 for s in stream_map[t]:
118 query = urlparse(s['url']).query
119 s['url'] = f"{videoplayback}?{query}"
120 error = None
121
122 # if the proxy is enabled, we can also play livestreams:
123 if error == 'livestream' and proxy_on:
124 # Note: hlsManifestUrl's hostname will be replaced client-side
125 video_url = stream_map['hlsManifestUrl']
126 error = None
127
128 # if the instance is blocked, try submitting a job to the anti captcha service:
129 if error == 'banned' and cf['captcha']['api_key']:
130 r2 = requests.get(f'https://www.youtube.com/watch?v={video_id}&hl=en&gl=US')
131 status = submit_captcha(r2)
132 if status is False:
133 raise Exception("we are banned, but captcha wasn't triggered!")
134 else:
135 message = "right now" if status is True else f"{int(status)} seconds ago"
136 raise BadGateway(f"""
137 {errdetails} An attempt at getting unblocked has been made {message}.
138 Please try again in 30 seconds.
139 """)
140
141 if show == "raw":
142 if error:
143 msg = errdetails if error=='player' else f"{error.upper()}: {errdetails}"
144 return f"{msg}\n\nRedirecting to Invidious.", 502, {
145 'Refresh': f'2; URL={invidious_url}&raw=1',
146 **plaintextheaders}
147 return redirect(video_url, code=307)
148 elif show == "json":
149 if error and not metadata:
150 return {'error': True, error: errdetails}, 400 # TODO: better (test _CpR4o81XQc)
151 return jsonify(metadata)
152 elif show == "audio":
153 # sorting: we want to prioritize mp4a over opus, and sort by highest quality first
154 # todo: geolocking; prefer open format?
155 if error and not stream_map:
156 msg = errdetails if error=='player' else f"{error.upper()}: {errdetails}"
157 return msg, 400, plaintextheaders # TODO: nicer
158 stream = next(iter(sorted(
159 stream_map['adaptive_audio'],
160 key=lambda e: ('opus' not in e['mimeType'], e['bitrate']),
161 reverse=True
162 )),{}).get('url')
163 return redirect(stream)
164 elif show == "meta":
165 # this is the subset of (useful) keys that are not present in the
166 # Android API response. the special key '_' contains ready-to-use
167 # parsed versions of that data.
168 if error and not metadata:
169 return {'error': True, error: errdetails}, 400 # TODO: better (test _CpR4o81XQc)
170 parsed = microformat_parser(metadata)
171 return {'microformat': metadata.get('microformat'),'cards':metadata.get('cards'), '_':parsed}
172 else:
173 if error and not metadata: # e.g. malformed, private/deleted video, ...
174 return render_template('video-error.html.j2', video_id=video_id,
175 video_error=error, errdetails=errdetails, invidious_url=invidious_url)
176 meta = prepare_metadata(metadata)
177 with sqlite3.connect(cf['global']['database']) as conn:
178 c = conn.cursor()
179 c.execute("""
180 SELECT COUNT((
181 SELECT 1 FROM subscriptions WHERE channel_id = ? AND user = ?
182 )), COUNT((
183 SELECT 1 FROM flags WHERE video_id = ? AND display = 'pinned' AND user = ?
184 ))""", (meta['channel_id'], token, video_id, token))
185 (is_subscribed, is_pinned) = c.fetchone()
186 return render_template('watch.html.j2',
187 video_id=video_id, video_url=video_url, stream_map=stream_map,
188 video_error=error, errdetails=errdetails, invidious_url=invidious_url,
189 is_pinned=is_pinned, is_subscribed=is_subscribed,
190 **meta)
191
192 @frontend.route('/embed/videoseries')
193 def embed_videoseries():
194 return redirect(url_for('.playlist', list=request.args.get('list')))
195 @frontend.route('/embed/<video_id>', strict_slashes=False)
196 def embed(video_id):
197 if video_id == "videoseries":
198 return redirect(url_for('.playlist', list=request.args.get('list')))
199
200 return redirect(url_for('.watch', v=video_id, t=request.args.get('start')))
201
202 @frontend.route('/live/<video_id>', strict_slashes=False)
203 @frontend.route('/shorts/<video_id>', strict_slashes=False)
204 def shorts_or_live(video_id):
205 return redirect(url_for('.watch', v=video_id, t=request.args.get('start')))
206
207 @frontend.route('/<something>', strict_slashes=False)
208 def plain_user_or_video(something):
209 # yt.com interprets this as a username, but we also want to catch youtu.be
210 # short-urls. so we check if it's a channel by querying the RSS feed (this
211 # shoudn't be rate-limited); if that fails, check if it looks like a video
212 # id; or finally give up.
213 if '.' not in something and channel_exists(something):
214 # periods are not valid in usernames, vanity urls or ucids, but common
215 # in urls that get crawled by bots (e.g. index.php). failing early
216 # reduces the amount of invalid channel names getting looked up.
217 return redirect(url_for('.channel', channel_id=something))
218 elif re.match(r"^[-_0-9A-Za-z]{11}$", something): # looks like a video id
219 return redirect(url_for('.watch', v=something, t=request.args.get('t')))
220 else: # ¯\_(ツ)_/¯
221 # XXX: something == 'thethoughtemporium' -> 404s
222 raise NotFound("Note: some usernames not recognized; try searching it")
223
224 @frontend.route('/c/<channel_id>/<subpage>')
225 @frontend.route('/c/<channel_id>/')
226 @frontend.route('/user/<channel_id>/<subpage>')
227 @frontend.route('/user/<channel_id>/')
228 def channel_redirect(channel_id, subpage=None):
229 # Note: we can't check /c/, so we have to assume it is the same as /user/,
230 # which is sometimes wrong.
231 xmlfeed = fetch_xml("user", channel_id)
232
233 if not xmlfeed:
234 raise NotFound("unknown channel name")
235
236 _, _, _, channel_id, _ = parse_xml(xmlfeed)
237
238 return redirect(url_for('.channel', channel_id=channel_id))
239
240 @frontend.route('/channel/<channel_id>/<subpage>')
241 @frontend.route('/channel/<channel_id>/')
242 def channel(channel_id, _=None):
243 token = getattr(current_user, 'token', 'guest')
244 sort = request.args.get("sort", "newest")
245
246 if not re.match(r"(UC[A-Za-z0-9_-]{22})", channel_id):
247 # canonicalize channel id, otherwise popular won't work
248 return redirect(url_for('.channel_redirect', channel_id=channel_id))
249
250 if sort == "popular":
251 xmlfeed = fetch_xml("playlist_id", f"PU{channel_id[2:]}")
252 else:
253 xmlfeed = fetch_xml("channel_id", channel_id)
254 #^note: could also use playlist_id=UU...
255
256 if not xmlfeed:
257 raise NotFound("unknown channel id")
258
259 title, author, videos, _, _ = parse_xml(xmlfeed)
260
261 with sqlite3.connect(cf['global']['database']) as conn:
262 c = conn.cursor()
263 c.execute("""
264 SELECT COUNT(*)
265 FROM subscriptions
266 WHERE channel_id = ? AND user = ?
267 """, (channel_id, token))
268 (is_subscribed,) = c.fetchone()
269
270 return render_template('xmlfeed.html.j2', title=author, rows=videos,
271 is_subscribed=is_subscribed, channel_id=channel_id)
272
273 @frontend.route('/playlist')
274 def playlist():
275 playlist_id = request.args.get('list')
276 if not playlist_id:
277 return "bad list id", 400 # todo
278
279 xmlfeed = fetch_xml("playlist_id", playlist_id)
280 if not xmlfeed:
281 return "not found or something", 404 # XXX
282 title, author, videos, _, _ = parse_xml(xmlfeed)
283 return render_template('xmlfeed.html.j2', title=f"{title} by {author}", rows=videos)
284
285 @frontend.route('/api/timedtext')
286 def timedtext():
287 r = requests.get("https://www.youtube.com/api/timedtext", request.args.to_dict())
288 # Note: in srv1 format, xmlentities are double-encoded m( a smart quote is
289 # even worse: it's '&amp;39;<smartquote>' wtf!? (at least vvt seems ok)
290 if not r.ok:
291 return "error: {r.text}", 400 # TODO: better
292 retval = r.text
293 if request.args.get('fmt') == 'vtt' and request.args.get('kind') == 'asr':
294 # autocaptions are extremely confusing, and stuck in the lower-left corner. fix it up a bit
295 retval = re.sub(r"<.+?>", "", retval) # remove inline html-like markup that times each word/adds styles
296 retval = retval.replace("align:start position:0%", "") # let browser position the text itself
297 # each subtitle-line is repeated twice (first on the lower line, then
298 # on the next "frame" on the upper line). we want to remove the
299 # repetition, as that's confusing without word and line animations:
300 lines = retval.split('\n')
301 retval = '\n'.join([line for line, prev in zip(lines, ['']+lines) if not " --> " in prev])
302 return retval, {'Content-Type': r.headers.get("Content-Type")}
303
304 @frontend.route('/manage/subscriptions')
305 # disabled for guest user: @login_required
306 def subscription_manager():
307 if current_user.is_anonymous:
308 token = 'guest'
309 else:
310 token = current_user.token
311 with sqlite3.connect(cf['global']['database']) as conn:
312 #with conn.cursor() as c:
313 c = conn.cursor()
314 c.execute("""
315 SELECT subscriptions.channel_id, name, type,
316 (subscribed_until < datetime('now')) AS obsolete
317 FROM subscriptions
318 LEFT JOIN (SELECT name, id FROM channels
319 UNION
320 SELECT name, id FROM playlists
321 ) AS channels ON channels.id = subscriptions.channel_id
322 left JOIN websub ON channels.id = websub.channel_id
323 WHERE user = ?
324 AND subscriptions.type IN ('channel', 'playlist')
325 ORDER BY obsolete=0, name COLLATE NOCASE ASC""", (token,))
326 rows = [{
327 'channel_id': channel_id,
328 'author': author or channel_id,
329 'type': type,
330 'subscribed_until': subscribed_until
331 } for (channel_id, author, type, subscribed_until) in c.fetchall()]
332 return render_template('subscription_manager.html.j2', rows=rows)
333
334 @frontend.route('/feed/subscriptions', methods=['POST'])
335 @login_required
336 def feed_post():
337 token = current_user.token
338 action = next(iter(list(request.form.keys())), None)
339 if action in ['pin', 'unpin', 'hide', 'unhide']:
340 video_id = request.form.get(action)
341 display = {
342 'pin': 'pinned',
343 'unpin': None,
344 'hide': 'hidden',
345 'unhide': None,
346 }[action]
347 with sqlite3.connect(cf['global']['database']) as conn:
348 c = conn.cursor()
349 store_video_metadata(video_id) # only needed for pinning
350 c.execute("""
351 INSERT OR REPLACE INTO flags (user, video_id, display)
352 VALUES (?, ?, ?)
353 """, (token, video_id, display))
354 undo_flash(video_id, action)
355 else:
356 flash("unsupported action", "error")
357 return redirect(request.url, code=303)
358
359 @frontend.route('/manage/subscriptions', methods=['POST'])
360 @login_required
361 def manage_subscriptions():
362 token = current_user.token
363 if 'subscribe' in request.form:
364 some_id = request.form.get("subscribe")
365 match = re.search(r"(UC[A-Za-z0-9_-]{22})", some_id)
366 if match:
367 some_id = match.group(1)
368 id_type = "channel"
369 else:
370 match = re.search(r"((?:PL|LL|EC|UU|FL|UL|OL)[A-Za-z0-9_-]{10,})", some_id)
371 if match: # NOTE: PL-playlists are 32chars, others differ in length.
372 some_id = match.group(1)
373 id_type = "playlist"
374 else:
375 flash("not a valid/subscribable URI", "error")
376 return redirect(request.url, code=303)
377 with sqlite3.connect(cf['global']['database']) as conn:
378 #with conn.cursor() as c:
379 c = conn.cursor()
380 c.execute("""
381 INSERT OR IGNORE INTO subscriptions (user, channel_id, type)
382 VALUES (?, ?, ?)
383 """, (token, some_id, id_type))
384 # TODO: sql-error-handling, asynchronically calling update-subs.pl
385 undo_flash(some_id, 'subscribe')
386
387 elif 'unsubscribe' in request.form:
388 some_id = request.form.get("unsubscribe")
389 with sqlite3.connect(cf['global']['database']) as conn:
390 #with conn.cursor() as c:
391 c = conn.cursor()
392 c.execute("""
393 DELETE FROM subscriptions
394 WHERE user = ? AND channel_id = ?
395 """, (token, some_id))
396 # TODO: sql-error-handling, report success
397 undo_flash(some_id, 'unsubscribe')
398
399 else:
400 flash("unsupported action", "error")
401
402 return redirect(request.url, code=303)
403
404 @frontend.route('/vi/<vid>/<res>.jpg')
405 def redirect_thumbnails(vid, res):
406 return redirect(f"https://i.ytimg.com{request.path}", code=301)
407
408 @frontend.record
409 def redirect_youtube_dot_com(state):
410 """
411 This is executed when the blueprint is loaded dynamically builds a number
412 of routes so that URLs like
413 https://subscriptions.gir.st/https://www.youtube.com/watch?v=dQw4w9WgXcQ
414 redirect to the /watch page. Works with /watch, /embed/ and youtu.be short
415 links, with or without protocl and/or 'www'.
416 """
417 def real_redirect_youtube_dot_com(video_id=None):
418 if not re.match(r"^[-_0-9A-Za-z]{11}$", video_id or ''): video_id = None
419 if not video_id: video_id = request.args.get('v')
420 return redirect(url_for('.watch', v=video_id))
421
422 for protocol in ("", "http://", "https://"):
423 for prefix in ("", "www.", "m."):
424 for domain in ("youtube.com", "youtu.be", "youtube-nocookie.com"):
425 for urlpath in ("/watch", "/embed/<video_id>", "/live/<video_id>", "/shorts/<video_id>", "/<video_id>"):
426 if domain != "youtu.be" and urlpath == "/<video_id>":
427 continue # that's a channel, not a video
428 frontend.add_url_rule(
429 f"/{protocol}{prefix}{domain}{urlpath}",
430 view_func=real_redirect_youtube_dot_com,
431 strict_slashes=False
432 )
433
434 def undo_flash(thing_id, action):
435 undo_action, past_action = {
436 'pin': ('unpin', 'pinned'),
437 'unpin': ('pin', 'unpinned'),
438 'hide': ('unhide', 'hidden'),
439 'unhide': ('hide', 'unhidden'),
440 'subscribe': ('unsubscribe', 'subscribed'),
441 'unsubscribe': ('subscribe', 'unsubscribed'),
442 }.get(action)
443 if 'subscribe' in action and thing_id.startswith('UC'):
444 thing = "channel"
445 thing_url = url_for('.channel', channel_id=thing_id)
446 elif 'subscribe' in action:
447 thing = "playlist"
448 thing_url = url_for('.playlist', playlist_id=thing_id)
449 else:
450 thing = "video"
451 thing_url = url_for('.watch', v=thing_id)
452 flash(f'''
453 <form method=post><input type=hidden name="{undo_action}" value="{thing_id}">
454 <a href="{thing_url}">{thing}</a> {past_action}.
455 <label><input type="submit" hidden>
456 <span style="text-decoration:underline;cursor:pointer">undo</span>.
457 </label></form>''', "info")
458
459 @frontend.app_template_filter('format_date')
460 def format_date(s):
461 import datetime # can't import at top level, because it is inherited from common
462 (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'
463 M = '_ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split()
464 if y == datetime.datetime.now().year:
465 return f"{d} {M[m]}"
466 else:
467 return f"{M[m]} '{y%100}"
468
469 @frontend.app_template_filter('format_time')
470 def format_time(i):
471 if i is None:
472 return None
473 h = i // (60*60)
474 m = i // 60 % 60
475 s = i % 60
476 return '%d:%02d:%02d' % (h,m,s) if h else '%02d:%02d' % (m,s)
477
478 @frontend.app_template_filter('timeoffset')
479 def timeoffset(s):
480 if s is None:
481 return None
482 match = re.match(r"^(\d+)s?$", s) # e.g. 2040s
483 if match:
484 return match.group(1)
485 match = re.match(r"^(?:(\d+)h)?(?:(\d+)m)?(?:(\d+)s)?$", s) # e.g. 34m, 1h23s
486 if match:
487 return ":".join([n.zfill(2) for n in match.groups('0')])
488 return None
Imprint / Impressum