]> git.gir.st - subscriptionfeed.git/blob - app/dangerous/__init__.py
paper over exception on dangerous.search
[subscriptionfeed.git] / app / dangerous / __init__.py
1 # this is an alternative to proxying through invidious. the search endpoint has only been (loosely) tested by
2 #17:50 < perflyst[m]> appears to be working
3 #, so i hope™ this works. if not, that's why it's in the 'dangerous' blueprint
4 import requests
5 from flask import Blueprint, render_template, request, flash, g, url_for, redirect
6
7 from ..common.common import *
8 from ..common.innertube import *
9 from .lib import *
10 from .protobuf import make_sp, make_channel_params, make_playlist_params
11
12 frontend = Blueprint('dangerous', __name__,
13 template_folder='templates',
14 static_folder='static',
15 static_url_path='/static/ys')
16
17 @frontend.route('/search')
18 def search():
19 #token = getattr(current_user, 'token', 'guest')
20 q = request.args.get('q')
21 page = int(request.args.get('page', 1))
22
23 sp = make_sp(**{
24 k:v for k,v in request.args.items()
25 if k in ['sort','date','type','len']
26 }, extras=['dont_fix_spelling']*0) # extras disabled
27
28 if q:
29 yt_results = fetch_searchresults(q, page, sp)
30
31 results, extras = prepare_searchresults(yt_results)
32
33 for extra in extras:
34 flash(extra, 'info')
35 else:
36 results = None
37
38 return render_template('search.html.j2', rows=results, query=q, page=page)
39
40 # TODO: channels, playlists:
41 # https://github.com/iv-org/invidious/blob/452d1e8307d6344dd51c5437ccd032a566291c34/src/invidious/channels.cr#L399
42
43 @frontend.route('/channel/<channel_id>/')
44 @frontend.route('/channel/<channel_id>/<subpage>')
45 def channel(channel_id, subpage="videos"):
46 if subpage == "videos":
47 page = int(request.args.get('page', 1))
48 sort_by = request.args.get('sort', "newest")
49 query = None
50 elif subpage == "playlists":
51 page = None # TODO: cursor
52 sort_by = request.args.get('sort', "modified")
53 query = None
54 elif subpage == "search":
55 query = request.args.get('q')
56 page = int(request.args.get('page', 1))
57 sort_by = None
58 else: # we don't support /home, /about, ..., so redirect to /videos.
59 return redirect(url_for('.channel', channel_id=channel_id))
60
61 try:
62 result = fetch_ajax(make_channel_params(channel_id, subpage, page, sort_by, query))
63 except RuntimeError:
64 try:
65 result = fetch_ajax(make_channel_params(channel_id, subpage, page, sort_by, query, v2=True))
66 except RuntimeError: # XXX: this should never happen™ -- log to somewhere
67 flash("unable to fetch results from 'classic' ajax; displaying fallback results (15 newest)", "error")
68 return fallback_route(channel_id, subpage)
69
70 title, descr, thumb, rows, more = prepare_channel(result, channel_id)
71 # TODO: add is_pinned/is_hidden
72
73 return render_template('channel.html.j2',
74 title=title,
75 subpage=subpage,
76 rows=rows,
77 channel_id=channel_id,
78 channel_img=thumb,
79 channel_desc=descr,
80 page=page,
81 has_more=more)
82
83 @frontend.route('/user/<user>')
84 @frontend.route('/user/<user>/<subpage>')
85 @frontend.route('/c/<user>')
86 @frontend.route('/c/<user>/<subpage>')
87 def channel_redirect(user, subpage=None):
88 """
89 The browse_ajax 'API' needs the UCID. We can get that from the RSS feeds.
90 """
91 xmlfeed = fetch_xml("user", user)
92 _, _, _, channel_id, _ = parse_xml(xmlfeed)
93 return redirect(
94 url_for('.channel', channel_id=channel_id, subpage=subpage), 308
95 )
96
97 @frontend.route('/playlist')
98 def playlist():
99 #TODO: if anything goes wrong, fall back to xmlfeed
100 playlist_id = request.args.get('list')
101 if not playlist_id:
102 return "bad list id", 400 # todo
103 page = int(request.args.get('page', 1))
104
105 xmlfeed = fetch_xml("playlist_id", playlist_id)
106 if not xmlfeed:
107 return "not found or something", 404 # XXX
108 title, author, _, channel_id, _ = parse_xml(xmlfeed)
109
110 offset = (page-1)*100 # each call returns 100 items
111 result = fetch_ajax(make_playlist_params(playlist_id, offset))
112
113 rows, more = prepare_playlist(result)
114
115 return render_template('playlist.html.j2',
116 title=title,
117 author=author,
118 channel_id=channel_id,
119 rows=rows,
120 page=page,
121 has_more=more)
122
123 @frontend.before_app_request
124 def inject_button():
125 if not 'header_items' in g:
126 g.header_items = []
127 g.header_items.append({
128 'name': 'search',
129 'url': url_for('dangerous.search'),
130 'parent': frontend.name,
131 'priority': 15,
132 })
Imprint / Impressum