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