{% skip_file if flag?(:api_only) %} module Invidious::Routes::Channels def self.home(env) self.videos(env) end def self.videos(env) data = self.fetch_basic_information(env) if !data.is_a?(Tuple) return data end locale, user, subscriptions, continuation, ucid, channel = data page = env.params.query["page"]?.try &.to_i? page ||= 1 sort_by = env.params.query["sort_by"]?.try &.downcase if channel.auto_generated sort_options = {"last", "oldest", "newest"} sort_by ||= "last" items, continuation = fetch_channel_playlists(channel.ucid, channel.author, continuation, sort_by) items.uniq! do |item| if item.responds_to?(:title) item.title elsif item.responds_to?(:author) item.author end end items = items.select(SearchPlaylist).map(&.as(SearchPlaylist)) items.each(&.author = "") else sort_options = {"newest", "oldest", "popular"} sort_by ||= "newest" count, items = get_60_videos(channel.ucid, channel.author, page, channel.auto_generated, sort_by) end templated "channel" end def self.playlists(env) data = self.fetch_basic_information(env) if !data.is_a?(Tuple) return data end locale, user, subscriptions, continuation, ucid, channel = data sort_options = {"last", "oldest", "newest"} sort_by = env.params.query["sort_by"]?.try &.downcase sort_by ||= "last" if channel.auto_generated return env.redirect "/channel/#{channel.ucid}" end items, continuation = fetch_channel_playlists(channel.ucid, channel.author, continuation, sort_by) items = items.select(SearchPlaylist).map(&.as(SearchPlaylist)) items.each(&.author = "") templated "playlists" end def self.community(env) data = self.fetch_basic_information(env) if !data.is_a?(Tuple) return data end locale, user, subscriptions, continuation, ucid, channel = data thin_mode = env.params.query["thin_mode"]? || env.get("preferences").as(Preferences).thin_mode thin_mode = thin_mode == "true" continuation = env.params.query["continuation"]? # sort_by = env.params.query["sort_by"]?.try &.downcase if !channel.tabs.includes? "community" return env.redirect "/channel/#{channel.ucid}" end begin items = JSON.parse(fetch_channel_community(ucid, continuation, locale, "json", thin_mode)) rescue ex : InfoException env.response.status_code = 500 error_message = ex.message rescue ex : NotFoundException env.response.status_code = 404 error_message = ex.message rescue ex return error_template(500, ex) end templated "community" end def self.about(env) data = self.fetch_basic_information(env) if !data.is_a?(Tuple) return data end locale, user, subscriptions, continuation, ucid, channel = data env.redirect "/channel/#{ucid}" end # Redirects brand url channels to a normal /channel/:ucid route def self.brand_redirect(env) locale = env.get("preferences").as(Preferences).locale # /attribution_link endpoint needs both the `a` and `u` parameter # and in order to avoid detection from YouTube we should only send the required ones # without any of the additional url parameters that only Invidious uses. yt_url_params = URI::Params.encode(env.params.query.to_h.select(["a", "u", "user"])) # Retrieves URL params that only Invidious uses invidious_url_params = URI::Params.encode(env.params.query.to_h.select!(["a", "u", "user"])) begin resolved_url = YoutubeAPI.resolve_url("https://youtube.com#{env.request.path}#{yt_url_params.size > 0 ? "?#{yt_url_params}" : ""}") ucid = resolved_url["endpoint"]["browseEndpoint"]["browseId"] rescue ex : InfoException | KeyError return error_template(404, translate(locale, "This channel does not exist.")) end 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 env.redirect url end # Handles redirects for the /profile endpoint def self.profile(env) # The /profile endpoint is special. If passed into the resolve_url # endpoint YouTube would return a sign in page instead of an /channel/:ucid # thus we'll add an edge case and handle it here. uri_params = env.params.query.size > 0 ? "?#{env.params.query}" : "" user = env.params.query["user"]? if !user return error_template(404, "This channel does not exist.") else env.redirect "/user/#{user}#{uri_params}" end end def self.live(env) locale = env.get("preferences").as(Preferences).locale # Appears to be a bug in routing, having several routes configured # as `/a/:a`, `/b/:a`, `/c/:a` results in 404 value = env.request.resource.split("/")[2] body = "" {"channel", "user", "c"}.each do |type| response = YT_POOL.client &.get("/#{type}/#{value}/live?disable_polymer=1") if response.status_code == 200 body = response.body end end video_id = body.match(/'VIDEO_ID': "(?[a-zA-Z0-9_-]{11})"/).try &.["id"]? if video_id params = [] of String env.params.query.each do |k, v| params << "#{k}=#{v}" end params = params.join("&") url = "/watch?v=#{video_id}" if !params.empty? url += "&#{params}" end env.redirect url else env.redirect "/channel/#{value}" end end private def self.fetch_basic_information(env) locale = env.get("preferences").as(Preferences).locale user = env.get? "user" if user user = user.as(User) subscriptions = user.subscriptions end subscriptions ||= [] of String ucid = env.params.url["ucid"] continuation = env.params.query["continuation"]? begin channel = get_about_info(ucid, locale) rescue ex : ChannelRedirect return env.redirect env.request.resource.gsub(ucid, ex.channel_id) rescue ex : NotFoundException return error_template(404, ex) rescue ex return error_template(500, ex) end return {locale, user, subscriptions, continuation, ucid, channel} end end