Search/Trending: Fix duplicated results (#3773)

This commit is contained in:
Samantaz Fox 2023-04-30 19:11:21 +02:00
commit eefc8bbbdd
No known key found for this signature in database
GPG Key ID: F42821059186176E
4 changed files with 14 additions and 36 deletions

View File

@ -10,7 +10,7 @@ module Invidious::Search
initial_data = YoutubeAPI.search(query.text, search_params, client_config: client_config)
items, _ = extract_items(initial_data)
return items
return items.reject!(Category)
end
# Search a youtube channel
@ -32,7 +32,7 @@ module Invidious::Search
response_json = YoutubeAPI.browse(continuation)
items, _ = extract_items(response_json, "", ucid)
return items
return items.reject!(Category)
end
# Search inside of user subscriptions

View File

@ -113,7 +113,7 @@ module Invidious::Search
case @type
when .regular?, .playlist?
items = unnest_items(Processors.regular(self))
items = Processors.regular(self)
#
when .channel?
items = Processors.channel(self)
@ -136,26 +136,5 @@ module Invidious::Search
return params
end
# TODO: clean code
private def unnest_items(all_items) : Array(SearchItem)
items = [] of SearchItem
# Light processing to flatten search results out of Categories.
# They should ideally be supported in the future.
all_items.each do |i|
if i.is_a? Category
i.contents.each do |nest_i|
if !nest_i.is_a? Video
items << nest_i
end
end
else
items << i
end
end
return items
end
end
end

View File

@ -17,7 +17,9 @@ def fetch_trending(trending_type, region, locale)
client_config = YoutubeAPI::ClientConfig.new(region: region)
initial_data = YoutubeAPI.browse("FEtrending", params: params, client_config: client_config)
trending = extract_videos(initial_data)
return {trending, plid}
items, _ = extract_items(initial_data)
# Return items, but ignore categories (e.g featured content)
return items.reject!(Category), plid
end

View File

@ -68,19 +68,16 @@ rescue ex
return false
end
def extract_videos(initial_data : Hash(String, JSON::Any), author_fallback : String? = nil, author_id_fallback : String? = nil) : Array(SearchVideo)
extracted, _ = extract_items(initial_data, author_fallback, author_id_fallback)
# This function extracts the SearchItems from a Category.
# Categories are commonly returned in search results and trending pages.
def extract_category(category : Category) : Array(SearchVideo)
items = [] of SearchItem
target = [] of (SearchItem | Continuation)
extracted.each do |i|
if i.is_a?(Category)
i.contents.each { |cate_i| target << cate_i if !cate_i.is_a? Video }
else
target << i
end
category.contents.each do |item|
target << cate_i if item.is_a?(SearchItem)
end
return target.select(SearchVideo)
return items
end
def extract_selected_tab(tabs)