mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-03-16.git
synced 2024-08-15 00:53:18 +00:00
Move continuation_token out of Category struct
(cherry picked from commit 0e96eda28f
)
This commit is contained in:
parent
57c63f3598
commit
0b7a108a59
2 changed files with 9 additions and 3 deletions
|
@ -217,6 +217,7 @@ private class CategoryParser < ItemParser
|
||||||
title = ""
|
title = ""
|
||||||
end
|
end
|
||||||
|
|
||||||
|
auxiliary_data = {} of String => String
|
||||||
browse_endpoint = item_contents["endpoint"]?.try &.["browseEndpoint"] || nil
|
browse_endpoint = item_contents["endpoint"]?.try &.["browseEndpoint"] || nil
|
||||||
browse_endpoint_data = ""
|
browse_endpoint_data = ""
|
||||||
category_type = 0 # 0: Video, 1: Channels, 2: Playlist/feed, 3: trending
|
category_type = 0 # 0: Video, 1: Channels, 2: Playlist/feed, 3: trending
|
||||||
|
@ -233,7 +234,14 @@ private class CategoryParser < ItemParser
|
||||||
# instead it uses the browseId parameter. So if there isn't a params value we can assume the
|
# instead it uses the browseId parameter. So if there isn't a params value we can assume the
|
||||||
# category is a playlist/feed
|
# category is a playlist/feed
|
||||||
if browse_endpoint["params"]?
|
if browse_endpoint["params"]?
|
||||||
browse_endpoint_data = browse_endpoint["params"].as_s
|
# However, even though the channel category type returns the browse endpoint param
|
||||||
|
# we're not going to be using it in order to preserve compatablity with Youtube.
|
||||||
|
# and for an URL that looks cleaner
|
||||||
|
url = item_contents["endpoint"]["commandMetadata"]["webCommandMetadata"]["url"]
|
||||||
|
url = URI.parse(url.as_s)
|
||||||
|
auxiliary_data["view"] = url.query_params["view"]
|
||||||
|
auxiliary_data["shelf_id"] = url.query_params["shelf_id"]
|
||||||
|
|
||||||
category_type = 1
|
category_type = 1
|
||||||
else
|
else
|
||||||
browse_endpoint_data = browse_endpoint["browseId"].as_s
|
browse_endpoint_data = browse_endpoint["browseId"].as_s
|
||||||
|
@ -271,7 +279,6 @@ private class CategoryParser < ItemParser
|
||||||
title: title,
|
title: title,
|
||||||
contents: contents,
|
contents: contents,
|
||||||
browse_endpoint_data: browse_endpoint_data,
|
browse_endpoint_data: browse_endpoint_data,
|
||||||
continuation_token: nil,
|
|
||||||
badges: badges,
|
badges: badges,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
|
@ -232,7 +232,6 @@ class Category
|
||||||
property title : String
|
property title : String
|
||||||
property contents : Array(SearchItem) | SearchItem
|
property contents : Array(SearchItem) | SearchItem
|
||||||
property browse_endpoint_data : String?
|
property browse_endpoint_data : String?
|
||||||
property continuation_token : String?
|
|
||||||
property badges : Array(Tuple(String, String))?
|
property badges : Array(Tuple(String, String))?
|
||||||
|
|
||||||
def to_json(locale, json : JSON::Builder)
|
def to_json(locale, json : JSON::Builder)
|
||||||
|
|
Loading…
Reference in a new issue