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