]> git.gir.st - subscriptionfeed.git/blob - app/youtube/__init__.py
show LIVE badge on subscription feed
[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
9
10 from ..common.common import *
11 from .lib import *
12
13 frontend = Blueprint('youtube', __name__,
14 template_folder='templates',
15 static_folder='static',
16 static_url_path='/static/yt')
17
18 @frontend.route('/')
19 def index():
20 return redirect(url_for('.feed'), code=302)
21
22 @frontend.route('/feed/subscriptions')
23 # disabled for guest user: @login_required
24 def feed():
25 if current_user.is_anonymous:
26 token = 'guest'
27 if 'welcome_message' in cf['frontend']:
28 flash(cf['frontend']['welcome_message'], "welcome")
29 else:
30 token = current_user.token
31 page = int(request.args.get('page', 0))
32 with sqlite3.connect(cf['global']['database']) as conn:
33 c = conn.cursor()
34 c.execute("""
35 SELECT videos.id, channel_id, name, title, length, livestream, published, display
36 FROM videos
37 JOIN channels ON videos.channel_id = channels.id
38 LEFT JOIN flags ON (videos.id = flags.video_id) AND (flags.user = ?)
39 WHERE (channel_id IN (SELECT channel_id FROM subscriptions WHERE user=?)
40 OR flags.display = 'pinned')
41 AND flags.display IS NOT 'hidden'
42 ORDER BY (display = 'pinned') DESC, crawled DESC
43 LIMIT 36
44 OFFSET 36*?""", (token, token, page))
45 rows = [{
46 'video_id': video_id,
47 'channel_id': channel_id,
48 'author': author,
49 'title': title,
50 'length': length,
51 'livestream': livestream,
52 'published': published,
53 'pinned': display == 'pinned',
54 } for (video_id, channel_id, author, title, length, livestream, published, display) in c.fetchall()]
55 return render_template('index.html.j2', rows=rows, page=page)
56
57 @frontend.route('/watch')
58 def watch():
59 if current_user.is_anonymous:
60 token = 'guest'
61 else:
62 token = current_user.token
63
64 if not 'v' in request.args:
65 return "missing video id", 400
66
67 plaintextheaders = {
68 'content-type': 'text/plain',
69 'Link': "<data:text/css,body%7Bcolor:%23eee;background:%23333%7D>; rel=stylesheet;"
70 }
71
72 video_id = request.args.get('v')
73 sts, algo = get_cipher()
74 video_url, stream_map, metadata, error, errdetails = get_video_info(video_id, sts, algo)
75
76 extra = {'geolocked':'local=1', 'livestream':'raw=0'}.get(error,'')
77 invidious_url = f"https://invidio.us/watch?v={video_id}&{extra}"
78 errdetails = {
79 'malformed': "Video ID is invalid.",
80 'geolocked': "This video is geolocked.",
81 'livestream': "Livestreams not yet supported.",
82 'exhausted': errdetails or "Couldn't extract video URLs.",
83 'player': errdetails,
84 }.get(error)
85
86 # if the video is geolocked, and the proxy is enabled, we can still play it:
87 try:
88 if error == 'geolocked':
89 videoplayback = url_for('proxy.videoplayback')
90
91 query = urlparse(video_url).query
92 video_url = f"{videoplayback}?{query}"
93 for s in stream_map['adaptive']:
94 query = urlparse(s['url']).query
95 s['url'] = f"{videoplayback}?{query}"
96 for s in stream_map['muxed']:
97 query = urlparse(s['url']).query
98 s['url'] = f"{videoplayback}?{query}"
99
100 error = None
101 except: pass
102
103 show = request.args.get("show")
104 if show == "raw":
105 if error:
106 msg = errdetails if error=='player' else f"{error.upper()}: {errdetails}"
107 return f"{msg}\n\nRedirecting to Invidious.", 502, {
108 'Refresh': f'2; URL={invidious_url}&raw=1',
109 **plaintextheaders}
110 return redirect(video_url, code=307)
111 elif show == "json":
112 if error and not metadata:
113 return {'error': True, error: errdetails}, 400 # TODO: better (test _CpR4o81XQc)
114 return jsonify(metadata)
115 elif show == "audio":
116 # sorting: we want to prioritize mp4a over opus, and sort by highest quality first
117 # todo: geolocking; prefer open format?
118 if error and not metadata:
119 msg = errdetails if error=='player' else f"{error.upper()}: {errdetails}"
120 return msg, 400, plaintextheaders # TODO: nicer
121 stream = next(iter(sorted([
122 stream for stream in stream_map['adaptive']
123 if stream['mimeType'].startswith('audio/')],
124 key=lambda stream: ('opus' not in stream['mimeType'],
125 stream['bitrate']), reverse=True)
126 ),{}).get('url')
127 return redirect(stream)
128 else:
129 if error and not metadata: # e.g. malformed, private/deleted video, ...
130 return errdetails,400 # TODO: nicer
131 meta = prepare_metadata(metadata)
132 with sqlite3.connect(cf['global']['database']) as conn:
133 c = conn.cursor()
134 c.execute("""
135 SELECT COUNT((
136 SELECT 1 FROM subscriptions WHERE channel_id = ? AND user = ?
137 )), COUNT((
138 SELECT 1 FROM flags WHERE video_id = ? AND display = 'pinned' AND user = ?
139 ))""", (meta['channel_id'], token, video_id, token))
140 (is_subscribed, is_pinned) = c.fetchone()
141 return render_template('watch.html.j2',
142 video_id=video_id, video_url=video_url, stream_map=stream_map,
143 video_error=error, errdetails=errdetails, invidious_url=invidious_url,
144 is_pinned=is_pinned, is_subscribed=is_subscribed,
145 **meta)
146
147 @frontend.route('/embed/<video_id>')
148 def embed(video_id):
149 return redirect(url_for('youtube.watch', v=video_id))
150
151 @frontend.route('/<video_id>')
152 def raw_video_id_url(video_id):
153 # a "just-a-variable-endpoint" has lowest priority, but we check if it
154 # looks like a video id anyways, so we can have more than one such endpoint
155 # in the future.
156 if not re.match(r"^[-_0-9A-Za-z]{11}$", video_id): # not actually a video id
157 return fallback_route()
158 return redirect(url_for('youtube.watch', v=video_id))
159
160 @frontend.route('/channel/<channel_id>')
161 @frontend.route('/user/<channel_id>')
162 @frontend.route('/c/<channel_id>')
163 def channel(channel_id):
164 token = getattr(current_user, 'token', 'guest')
165
166 if re.match(r"(UC[A-Za-z0-9_-]{22})", channel_id):
167 xmlfeed = fetch_xml("channel_id", channel_id)
168 else:
169 xmlfeed = fetch_xml("user", channel_id)
170
171 if not xmlfeed:
172 return "not found or something", 404 # XXX
173 title, author, videos, channel_id, _ = parse_xml(xmlfeed)
174
175 with sqlite3.connect(cf['global']['database']) as conn:
176 c = conn.cursor()
177 c.execute("""
178 SELECT COUNT(*)
179 FROM subscriptions
180 WHERE channel_id = ? AND user = ?
181 """, (channel_id, token))
182 (is_subscribed,) = c.fetchone()
183
184 return render_template('xmlfeed.html.j2', title=author, rows=videos,
185 is_subscribed=is_subscribed, channel_id=channel_id)
186
187 @frontend.route('/playlist')
188 def playlist():
189 playlist_id = request.args.get('list')
190 if not playlist_id:
191 return "bad list id", 400 # todo
192
193 xmlfeed = fetch_xml("playlist_id", playlist_id)
194 if not xmlfeed:
195 return "not found or something", 404 # XXX
196 title, author, videos, _, _ = parse_xml(xmlfeed)
197 return render_template('xmlfeed.html.j2', title=f"{title} by {author}", rows=videos)
198
199 @frontend.route('/api/timedtext')
200 def timedtext():
201 r = requests.get("https://www.youtube.com/api/timedtext", request.args.to_dict())
202 # Note: in srv1 format, xmlentities are double-encoded m( a smart quote is
203 # even worse: it's '&amp;39;<smartquote>' wtf!? (at least vvt seems ok)
204 if not r.ok:
205 return "error: {r.text}", 400 # TODO: better
206 retval = r.text
207 if request.args.get('fmt') == 'vtt' and request.args.get('kind') == 'asr':
208 # autocaptions are extremely confusing, and stuck in the lower-left corner. fix it up a bit
209 retval = re.sub(r"<.+?>", "", retval) # remove inline html-like markup that times each word/adds styles
210 retval = retval.replace("align:start position:0%", "") # let browser position the text itself
211 # each subtitle-line is repeated twice (first on the lower line, then
212 # on the next "frame" on the upper line). we want to remove the
213 # repetition, as that's confusing without word and line animations:
214 lines = retval.split('\n')
215 retval = '\n'.join([line for line, prev in zip(lines, ['']+lines) if not " --> " in prev])
216 return retval, {'Content-Type': r.headers.get("Content-Type")}
217
218 @frontend.route('/manage/subscriptions')
219 # disabled for guest user: @login_required
220 def subscription_manager():
221 if current_user.is_anonymous:
222 token = 'guest'
223 else:
224 token = current_user.token
225 with sqlite3.connect(cf['global']['database']) as conn:
226 #with conn.cursor() as c:
227 c = conn.cursor()
228 c.execute("""
229 SELECT subscriptions.channel_id, name, type,
230 (subscribed_until < datetime('now')) AS obsolete
231 FROM subscriptions
232 LEFT JOIN (SELECT name, id FROM channels
233 UNION
234 SELECT name, id FROM playlists
235 ) AS channels ON channels.id = subscriptions.channel_id
236 left JOIN websub ON channels.id = websub.channel_id
237 WHERE user = ?
238 AND subscriptions.type IN ('channel', 'playlist')
239 ORDER BY obsolete=0, name COLLATE NOCASE ASC""", (token,))
240 rows = [{
241 'channel_id': channel_id,
242 'author': author or channel_id,
243 'type': type,
244 'subscribed_until': subscribed_until
245 } for (channel_id, author, type, subscribed_until) in c.fetchall()]
246 return render_template('subscription_manager.html.j2', rows=rows)
247
248 @frontend.route('/feed/subscriptions', methods=['POST'])
249 @login_required
250 def feed_post():
251 token = current_user.token
252 action = next(request.form.keys(), None)
253 if action in ['pin', 'unpin', 'hide']:
254 video_id = request.form.get(action)
255 display = {
256 'pin': 'pinned',
257 'unpin': None,
258 'hide': 'hidden',
259 }[action]
260 with sqlite3.connect(cf['global']['database']) as conn:
261 c = conn.cursor()
262 store_video_metadata(video_id) # only needed for pinning
263 c.execute("""
264 INSERT OR REPLACE INTO flags (user, video_id, display)
265 VALUES (?, ?, ?)
266 """, (token, video_id, display))
267 else:
268 flash("unsupported action", "error")
269 return redirect(request.url, code=303)
270
271 @frontend.route('/manage/subscriptions', methods=['POST'])
272 @login_required
273 def manage_subscriptions():
274 token = current_user.token
275 if 'subscribe' in request.form:
276 some_id = request.form.get("subscribe")
277 match = re.search(r"(UC[A-Za-z0-9_-]{22})", some_id)
278 if match:
279 some_id = match.group(1)
280 id_type = "channel"
281 else:
282 match = re.search(r"((?:PL|LL|EC|UU|FL|UL|OL)[A-Za-z0-9_-]{10,})", some_id)
283 if match: # NOTE: PL-playlists are 32chars, others differ in length.
284 some_id = match.group(1)
285 id_type = "playlist"
286 else:
287 flash("not a valid/subscribable URI", "error")
288 return redirect(request.url, code=303)
289 with sqlite3.connect(cf['global']['database']) as conn:
290 #with conn.cursor() as c:
291 c = conn.cursor()
292 c.execute("""
293 INSERT OR IGNORE INTO subscriptions (user, channel_id, type)
294 VALUES (?, ?, ?)
295 """, (token, some_id, id_type))
296 # TODO: sql-error-handling, asynchronically calling update-subs.pl
297
298 elif 'unsubscribe' in request.form:
299 some_id = request.form.get("unsubscribe")
300 with sqlite3.connect(cf['global']['database']) as conn:
301 #with conn.cursor() as c:
302 c = conn.cursor()
303 c.execute("""
304 DELETE FROM subscriptions
305 WHERE user = ? AND channel_id = ?
306 """, (token, some_id))
307 # TODO: sql-error-handling, report success
308
309 else:
310 flash("unsupported action", "error")
311
312 return redirect(request.url, code=303)
313
314 def get_cipher():
315 # reload cipher from database every 1 hour
316 if 'cipher' not in g or time.time() - g.get('cipher_updated', 0) > 1 * 60 * 60:
317 with sqlite3.connect(cf['global']['database']) as conn:
318 c = conn.cursor()
319 c.execute("SELECT sts, algorithm FROM cipher")
320 g.cipher = c.fetchone()
321 g.cipher_updated = time.time()
322
323 return g.cipher
324
325 #@frontend.teardown_appcontext
326 #def teardown_db():
327 # db = g.pop('db', None)
328 #
329 # if db is not None:
330 # db.close()
331
332
333 @frontend.app_template_filter('format_date')
334 def format_date(s):
335 import datetime # can't import at top level, because it is inherited from common
336 (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'
337 M = '_ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split()
338 if y == datetime.datetime.now().year:
339 return f"{d} {M[m]}"
340 else:
341 return f"{M[m]} '{y%100}"
342
343 @frontend.app_template_filter('format_time')
344 def format_time(i):
345 if i is None:
346 return None
347 h = i // (60*60)
348 m = i // 60 % 60
349 s = i % 60
350 return '%d:%02d:%02d' % (h,m,s) if h else '%02d:%02d' % (m,s)
Imprint / Impressum