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