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