Update brand_redirect to use youtubei resolve_url

(cherry picked from commit 53335fe7cfdfac392365b7cac447bc7cc6478134)
This commit is contained in:
syeopite 2021-06-26 20:52:52 -07:00
parent c93a0d9aa2
commit 5f4fc06553
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82

View File

@ -101,25 +101,23 @@ class Invidious::Routes::Channels < Invidious::Routes::BaseRoute
env.redirect "/channel/#{ucid}"
end
# Redirects brand url channels to a normal /channel/:ucid route
def brand_redirect(env)
locale = LOCALES[env.get("preferences").as(Preferences).locale]?
user = env.params.url["user"]
response = YT_POOL.client &.get("/c/#{user}")
html = XML.parse_html(response.body)
ucid = html.xpath_node(%q(//link[@rel="canonical"])).try &.["href"].split("/")[-1]
if !ucid
env.response.status_code = 404
return
begin
resolved_url = YoutubeAPI.resolve_url("https://youtube.com#{env.request.path}")
rescue ex : InfoException
raise InfoException.new("This channel does not exist.")
end
url = "/channel/#{ucid}"
ucid = resolved_url["endpoint"]["browseEndpoint"]["browseId"]
location = env.request.path.lchop?("/c/#{user}/")
if location
url += "/#{location}"
selected_tab = env.request.path.split("/")[-1]
if ["home", "videos", "playlists", "community", "channels", "about"].includes? selected_tab
url = "/channel/#{ucid}/#{selected_tab}"
else
url = "/channel/#{ucid}"
end
if env.params.query.size > 0