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