mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Move continuation_token out of Category struct
This commit is contained in:
parent
cc02fed4e6
commit
0e96eda28f
6 changed files with 20 additions and 26 deletions
|
@ -380,7 +380,7 @@ def fetch_channel_playlists(ucid, author, continuation, sort_by)
|
|||
return items, continuation
|
||||
end
|
||||
|
||||
def fetch_channel_featured_channels(ucid, tab_data, view=nil, shelf_id=nil, continuation = nil, query_title = nil)
|
||||
def fetch_channel_featured_channels(ucid, tab_data, view = nil, shelf_id = nil, continuation = nil, query_title = nil) : {Array(Category), (String|Nil)}
|
||||
auxiliary_data = {} of String => String
|
||||
|
||||
if continuation.is_a?(String)
|
||||
|
@ -392,10 +392,9 @@ def fetch_channel_featured_channels(ucid, tab_data, view=nil, shelf_id=nil, cont
|
|||
title: query_title.not_nil!, # If continuation contents is requested then the query_title has to be passed along.
|
||||
contents: items,
|
||||
browse_endpoint_data: nil,
|
||||
continuation_token: continuation_token,
|
||||
badges: nil,
|
||||
auxiliary_data: auxiliary_data,
|
||||
})]
|
||||
})], continuation_token
|
||||
else
|
||||
if view && shelf_id
|
||||
auxiliary_data["view"] = view
|
||||
|
@ -414,7 +413,7 @@ def fetch_channel_featured_channels(ucid, tab_data, view=nil, shelf_id=nil, cont
|
|||
|
||||
# There's no submenu data if the channel doesn't feature any channels.
|
||||
if !submenu
|
||||
return [] of Category
|
||||
return {[] of Category, continuation_token}
|
||||
end
|
||||
|
||||
submenu_data = submenu["channelSubMenuRenderer"]["contentTypeSubMenuItems"]
|
||||
|
@ -436,8 +435,7 @@ def fetch_channel_featured_channels(ucid, tab_data, view=nil, shelf_id=nil, cont
|
|||
category_array << Category.new({
|
||||
title: category.title.empty? ? fallback_title : category.title,
|
||||
contents: category.contents,
|
||||
browse_endpoint_data: category.browse_endpoint_data,
|
||||
continuation_token: continuation_token,
|
||||
browse_endpoint_data: nil,
|
||||
badges: nil,
|
||||
auxiliary_data: category.auxiliary_data,
|
||||
})
|
||||
|
@ -445,17 +443,16 @@ def fetch_channel_featured_channels(ucid, tab_data, view=nil, shelf_id=nil, cont
|
|||
|
||||
# If we don't have any categories we'll create one.
|
||||
if category_array.empty?
|
||||
return [Category.new({
|
||||
category_array << Category.new({
|
||||
title: fallback_title,
|
||||
contents: items,
|
||||
browse_endpoint_data: nil,
|
||||
continuation_token: continuation_token,
|
||||
badges: nil,
|
||||
auxiliary_data: auxiliary_data,
|
||||
})]
|
||||
})
|
||||
end
|
||||
|
||||
return category_array
|
||||
return category_array, continuation_token
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -463,7 +460,7 @@ def produce_featured_channel_browse_param(view : Int64, shelf_id : Int64)
|
|||
object = {
|
||||
"2:string" => "channels",
|
||||
"4:varint" => view,
|
||||
"14:varint" => shelf_id
|
||||
"14:varint" => shelf_id,
|
||||
}
|
||||
|
||||
browse_params = object.try { |i| Protodec::Any.cast_json(object) }
|
||||
|
|
|
@ -281,7 +281,6 @@ private class CategoryParser < ItemParser
|
|||
title: title,
|
||||
contents: contents,
|
||||
browse_endpoint_data: browse_endpoint_data,
|
||||
continuation_token: nil,
|
||||
badges: badges,
|
||||
auxiliary_data: auxiliary_data,
|
||||
})
|
||||
|
|
|
@ -267,7 +267,6 @@ def fetch_continuation_token(items : Array(JSON::Any))
|
|||
# Fetches the continuation token from an array of items
|
||||
return items.last["continuationItemRenderer"]?
|
||||
.try &.["continuationEndpoint"]["continuationCommand"]["token"].as_s
|
||||
|
||||
end
|
||||
|
||||
def fetch_continuation_token(initial_data : Hash(String, JSON::Any))
|
||||
|
|
|
@ -234,7 +234,6 @@ class Category
|
|||
property title : String
|
||||
property contents : Array(SearchItem) | SearchItem
|
||||
property browse_endpoint_data : String?
|
||||
property continuation_token : String?
|
||||
property badges : Array(Tuple(String, String))?
|
||||
|
||||
# Data unique to only specific types of categories.
|
||||
|
|
|
@ -119,7 +119,7 @@ class Invidious::Routes::Channels < Invidious::Routes::BaseRoute
|
|||
# Previous continuation
|
||||
previous_continuation = env.params.query["previous"]?
|
||||
|
||||
featured_channel_categories = fetch_channel_featured_channels(ucid, channel.tabs["channels"], nil, nil, continuation, current_category_title).not_nil!
|
||||
featured_channel_categories, continuation_token = fetch_channel_featured_channels(ucid, channel.tabs["channels"], nil, nil, continuation, current_category_title).not_nil!
|
||||
elsif view && shelf_id
|
||||
offset = env.params.query["offset"]?
|
||||
if offset
|
||||
|
@ -128,12 +128,12 @@ class Invidious::Routes::Channels < Invidious::Routes::BaseRoute
|
|||
offset = 0
|
||||
end
|
||||
|
||||
featured_channel_categories = fetch_channel_featured_channels(ucid, channel.tabs["channels"], view, shelf_id, continuation, current_category_title).not_nil!
|
||||
featured_channel_categories, continuation_token = fetch_channel_featured_channels(ucid, channel.tabs["channels"], view, shelf_id, continuation, current_category_title).not_nil!
|
||||
else
|
||||
previous_continuation = nil
|
||||
offset = 0
|
||||
|
||||
featured_channel_categories = fetch_channel_featured_channels(ucid, channel.tabs["channels"], nil, nil, current_category_title).not_nil!
|
||||
featured_channel_categories, continuation_token = fetch_channel_featured_channels(ucid, channel.tabs["channels"], nil, nil, current_category_title).not_nil!
|
||||
end
|
||||
|
||||
templated "channel/featured_channels", buffer_footer: true
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
</div>
|
||||
<div class="pure-u-1 pure-u-lg-3-5"></div>
|
||||
<div class="pure-u-1 pure-u-lg-1-5" style="text-align:right">
|
||||
<% if (next_cont_token = featured_channel_categories[0].continuation_token) %>
|
||||
<% if (next_cont_token = continuation_token) %>
|
||||
<% previous = ""%>
|
||||
<% if continuation %>
|
||||
<% previous = "&previous=#{HTML.escape(continuation)}"%>
|
||||
|
|
Loading…
Reference in a new issue