]> git.gir.st - subscriptionfeed.git/blob - app/youtube/__init__.py
avoid int(request.args.get('page'))
[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
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 'agegated': "Unable to bypass age-restriction.",
89 'exhausted': errdetails or "Couldn't extract video URLs.",
90 'player': errdetails,
91 }.get(error)
92
93 # if the video is geolocked, and the proxy is enabled, we can still play
94 # it, if the video is available in the instance server's region:
95 if error == 'geolocked' and video_url and 'proxy' in current_app.blueprints.keys():
96 videoplayback = url_for('proxy.videoplayback')
97 query = urlparse(video_url).query
98 video_url = f"{videoplayback}?{query}"
99 for s in stream_map['adaptive']:
100 query = urlparse(s['url']).query
101 s['url'] = f"{videoplayback}?{query}"
102 for s in stream_map['muxed']:
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 for stream in stream_map['adaptive']
146 if stream['mimeType'].startswith('audio/')],
147 key=lambda stream: ('opus' not in stream['mimeType'],
148 stream['bitrate']), reverse=True)
149 ),{}).get('url')
150 return redirect(stream)
151 else:
152 if error and not metadata: # e.g. malformed, private/deleted video, ...
153 return render_template('video-error.html.j2', video_id=video_id,
154 video_error=error, errdetails=errdetails, invidious_url=invidious_url)
155 meta = prepare_metadata(metadata)
156 with sqlite3.connect(cf['global']['database']) as conn:
157 c = conn.cursor()
158 c.execute("""
159 SELECT COUNT((
160 SELECT 1 FROM subscriptions WHERE channel_id = ? AND user = ?
161 )), COUNT((
162 SELECT 1 FROM flags WHERE video_id = ? AND display = 'pinned' AND user = ?
163 ))""", (meta['channel_id'], token, video_id, token))
164 (is_subscribed, is_pinned) = c.fetchone()
165 return render_template('watch.html.j2',
166 video_id=video_id, video_url=video_url, stream_map=stream_map,
167 video_error=error, errdetails=errdetails, invidious_url=invidious_url,
168 is_pinned=is_pinned, is_subscribed=is_subscribed,
169 **meta)
170
171 @frontend.route('/embed/videoseries')
172 def embed_videoseries():
173 return redirect(url_for('.playlist', list=request.args.get('list')))
174 @frontend.route('/embed/<video_id>', strict_slashes=False)
175 def embed(video_id):
176 if video_id == "videoseries":
177 return redirect(url_for('.playlist', list=request.args.get('list')))
178
179 return redirect(url_for('.watch', v=video_id, t=request.args.get('start')))
180
181 @frontend.route('/<something>', strict_slashes=False)
182 def plain_user_or_video(something):
183 # yt.com interprets this as a username, but we also want to catch youtu.be
184 # short-urls. so we check if it's a channel by querying the RSS feed (this
185 # shoudn't be rate-limited); if that fails, check if it looks like a video
186 # id; or finally give up.
187 if '.' not in something and channel_exists(something):
188 # periods are not valid in usernames, vanity urls or ucids, but common
189 # in urls that get crawled by bots (e.g. index.php). failing early
190 # reduces the amount of invalid channel names getting looked up.
191 return redirect(url_for('.channel', channel_id=something))
192 elif re.match(r"^[-_0-9A-Za-z]{11}$", something): # looks like a video id
193 return redirect(url_for('.watch', v=something, t=request.args.get('t')))
194 else: # ¯\_(ツ)_/¯
195 # XXX: something == 'thethoughtemporium' -> 404s
196 raise NotFound("Note: some usernames not recognized; try searching it")
197
198 @frontend.route('/channel/<channel_id>/<subpage>')
199 @frontend.route('/user/<channel_id>/<subpage>')
200 @frontend.route('/c/<channel_id>/<subpage>')
201 @frontend.route('/channel/<channel_id>/')
202 @frontend.route('/user/<channel_id>/')
203 @frontend.route('/c/<channel_id>/')
204 def channel(channel_id, _=None):
205 token = getattr(current_user, 'token', 'guest')
206
207 if re.match(r"(UC[A-Za-z0-9_-]{22})", channel_id):
208 xmlfeed = fetch_xml("channel_id", channel_id)
209 else:
210 xmlfeed = fetch_xml("user", channel_id)
211
212 if not xmlfeed:
213 return "not found or something", 404 # XXX
214 title, author, videos, channel_id, _ = parse_xml(xmlfeed)
215
216 with sqlite3.connect(cf['global']['database']) as conn:
217 c = conn.cursor()
218 c.execute("""
219 SELECT COUNT(*)
220 FROM subscriptions
221 WHERE channel_id = ? AND user = ?
222 """, (channel_id, token))
223 (is_subscribed,) = c.fetchone()
224
225 return render_template('xmlfeed.html.j2', title=author, rows=videos,
226 is_subscribed=is_subscribed, channel_id=channel_id)
227
228 @frontend.route('/playlist')
229 def playlist():
230 playlist_id = request.args.get('list')
231 if not playlist_id:
232 return "bad list id", 400 # todo
233
234 xmlfeed = fetch_xml("playlist_id", playlist_id)
235 if not xmlfeed:
236 return "not found or something", 404 # XXX
237 title, author, videos, _, _ = parse_xml(xmlfeed)
238 return render_template('xmlfeed.html.j2', title=f"{title} by {author}", rows=videos)
239
240 @frontend.route('/api/timedtext')
241 def timedtext():
242 r = requests.get("https://www.youtube.com/api/timedtext", request.args.to_dict())
243 # Note: in srv1 format, xmlentities are double-encoded m( a smart quote is
244 # even worse: it's '&amp;39;<smartquote>' wtf!? (at least vvt seems ok)
245 if not r.ok:
246 return "error: {r.text}", 400 # TODO: better
247 retval = r.text
248 if request.args.get('fmt') == 'vtt' and request.args.get('kind') == 'asr':
249 # autocaptions are extremely confusing, and stuck in the lower-left corner. fix it up a bit
250 retval = re.sub(r"<.+?>", "", retval) # remove inline html-like markup that times each word/adds styles
251 retval = retval.replace("align:start position:0%", "") # let browser position the text itself
252 # each subtitle-line is repeated twice (first on the lower line, then
253 # on the next "frame" on the upper line). we want to remove the
254 # repetition, as that's confusing without word and line animations:
255 lines = retval.split('\n')
256 retval = '\n'.join([line for line, prev in zip(lines, ['']+lines) if not " --> " in prev])
257 return retval, {'Content-Type': r.headers.get("Content-Type")}
258
259 @frontend.route('/manage/subscriptions')
260 # disabled for guest user: @login_required
261 def subscription_manager():
262 if current_user.is_anonymous:
263 token = 'guest'
264 else:
265 token = current_user.token
266 with sqlite3.connect(cf['global']['database']) as conn:
267 #with conn.cursor() as c:
268 c = conn.cursor()
269 c.execute("""
270 SELECT subscriptions.channel_id, name, type,
271 (subscribed_until < datetime('now')) AS obsolete
272 FROM subscriptions
273 LEFT JOIN (SELECT name, id FROM channels
274 UNION
275 SELECT name, id FROM playlists
276 ) AS channels ON channels.id = subscriptions.channel_id
277 left JOIN websub ON channels.id = websub.channel_id
278 WHERE user = ?
279 AND subscriptions.type IN ('channel', 'playlist')
280 ORDER BY obsolete=0, name COLLATE NOCASE ASC""", (token,))
281 rows = [{
282 'channel_id': channel_id,
283 'author': author or channel_id,
284 'type': type,
285 'subscribed_until': subscribed_until
286 } for (channel_id, author, type, subscribed_until) in c.fetchall()]
287 return render_template('subscription_manager.html.j2', rows=rows)
288
289 @frontend.route('/feed/subscriptions', methods=['POST'])
290 @login_required
291 def feed_post():
292 token = current_user.token
293 action = next(request.form.keys(), None)
294 if action in ['pin', 'unpin', 'hide', 'unhide']:
295 video_id = request.form.get(action)
296 display = {
297 'pin': 'pinned',
298 'unpin': None,
299 'hide': 'hidden',
300 'unhide': None,
301 }[action]
302 with sqlite3.connect(cf['global']['database']) as conn:
303 c = conn.cursor()
304 store_video_metadata(video_id) # only needed for pinning
305 c.execute("""
306 INSERT OR REPLACE INTO flags (user, video_id, display)
307 VALUES (?, ?, ?)
308 """, (token, video_id, display))
309 undo_flash(video_id, action)
310 else:
311 flash("unsupported action", "error")
312 return redirect(request.url, code=303)
313
314 @frontend.route('/manage/subscriptions', methods=['POST'])
315 @login_required
316 def manage_subscriptions():
317 token = current_user.token
318 if 'subscribe' in request.form:
319 some_id = request.form.get("subscribe")
320 match = re.search(r"(UC[A-Za-z0-9_-]{22})", some_id)
321 if match:
322 some_id = match.group(1)
323 id_type = "channel"
324 else:
325 match = re.search(r"((?:PL|LL|EC|UU|FL|UL|OL)[A-Za-z0-9_-]{10,})", some_id)
326 if match: # NOTE: PL-playlists are 32chars, others differ in length.
327 some_id = match.group(1)
328 id_type = "playlist"
329 else:
330 flash("not a valid/subscribable URI", "error")
331 return redirect(request.url, code=303)
332 with sqlite3.connect(cf['global']['database']) as conn:
333 #with conn.cursor() as c:
334 c = conn.cursor()
335 c.execute("""
336 INSERT OR IGNORE INTO subscriptions (user, channel_id, type)
337 VALUES (?, ?, ?)
338 """, (token, some_id, id_type))
339 # TODO: sql-error-handling, asynchronically calling update-subs.pl
340 undo_flash(some_id, 'subscribe')
341
342 elif 'unsubscribe' in request.form:
343 some_id = request.form.get("unsubscribe")
344 with sqlite3.connect(cf['global']['database']) as conn:
345 #with conn.cursor() as c:
346 c = conn.cursor()
347 c.execute("""
348 DELETE FROM subscriptions
349 WHERE user = ? AND channel_id = ?
350 """, (token, some_id))
351 # TODO: sql-error-handling, report success
352 undo_flash(some_id, 'unsubscribe')
353
354 else:
355 flash("unsupported action", "error")
356
357 return redirect(request.url, code=303)
358
359 def get_cipher():
360 # reload cipher from database every 1 hour
361 if 'cipher' not in g or time.time() - g.get('cipher_updated', 0) > 1 * 60 * 60:
362 with sqlite3.connect(cf['global']['database']) as conn:
363 c = conn.cursor()
364 c.execute("SELECT sts, algorithm FROM cipher")
365 g.cipher = c.fetchone()
366 g.cipher_updated = time.time()
367
368 return g.cipher
369
370 #@frontend.teardown_appcontext
371 #def teardown_db():
372 # db = g.pop('db', None)
373 #
374 # if db is not None:
375 # db.close()
376
377 def undo_flash(thing_id, action):
378 undo_action, past_action = {
379 'pin': ('unpin', 'pinned'),
380 'unpin': ('pin', 'unpinned'),
381 'hide': ('unhide', 'hidden'),
382 'unhide': ('hide', 'unhidden'),
383 'subscribe': ('unsubscribe', 'subscribed'),
384 'unsubscribe': ('subscribe', 'unsubscribed'),
385 }.get(action)
386 if 'subscribe' in action and thing_id.startswith('UC'):
387 thing = "channel"
388 thing_url = url_for('.channel', channel_id=thing_id)
389 elif 'subscribe' in action:
390 thing = "playlist"
391 thing_url = url_for('.playlist', playlist_id=thing_id)
392 else:
393 thing = "video"
394 thing_url = url_for('.watch', v=thing_id)
395 flash(f'''
396 <form method=post><input type=hidden name="{undo_action}" value="{thing_id}">
397 <a href="{thing_url}">{thing}</a> {past_action}.
398 <label><input type="submit" hidden>
399 <span style="text-decoration:underline;cursor:pointer">undo</span>.
400 </label></form>''', "info")
401
402 @frontend.app_template_filter('format_date')
403 def format_date(s):
404 import datetime # can't import at top level, because it is inherited from common
405 (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'
406 M = '_ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split()
407 if y == datetime.datetime.now().year:
408 return f"{d} {M[m]}"
409 else:
410 return f"{M[m]} '{y%100}"
411
412 @frontend.app_template_filter('format_time')
413 def format_time(i):
414 if i is None:
415 return None
416 h = i // (60*60)
417 m = i // 60 % 60
418 s = i % 60
419 return '%d:%02d:%02d' % (h,m,s) if h else '%02d:%02d' % (m,s)
420
421 @frontend.app_template_filter('timeoffset')
422 def timeoffset(s):
423 if s is None:
424 return None
425 match = re.match(r"^(\d+)s?$", s) # e.g. 2040s
426 if match:
427 return match.group(1)
428 match = re.match(r"^(?:(\d+)h)?(?:(\d+)m)?(?:(\d+)s)?$", s) # e.g. 34m, 1h23s
429 if match:
430 return ":".join([n.zfill(2) for n in match.groups('0')])
431 return None
Imprint / Impressum