mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix channel RSS feed
This commit is contained in:
parent
1ceb827a82
commit
92223dbee5
1 changed files with 33 additions and 3 deletions
|
@ -1929,9 +1929,39 @@ get "/feed/channel/:ucid" do |env|
|
||||||
halt env, status_code: 500, response: error_message
|
halt env, status_code: 500, response: error_message
|
||||||
end
|
end
|
||||||
|
|
||||||
page = 1
|
client = make_client(YT_URL)
|
||||||
videos, count = get_60_videos(ucid, page, auto_generated)
|
rss = client.get("/feeds/videos.xml?channel_id=#{ucid}").body
|
||||||
videos.select! { |video| !video.paid }
|
rss = XML.parse_html(rss)
|
||||||
|
|
||||||
|
videos = [] of SearchVideo
|
||||||
|
|
||||||
|
rss.xpath_nodes("//feed/entry").each do |entry|
|
||||||
|
video_id = entry.xpath_node("videoid").not_nil!.content
|
||||||
|
title = entry.xpath_node("title").not_nil!.content
|
||||||
|
|
||||||
|
published = Time.parse(entry.xpath_node("published").not_nil!.content, "%FT%X%z", Time::Location.local)
|
||||||
|
updated = Time.parse(entry.xpath_node("updated").not_nil!.content, "%FT%X%z", Time::Location.local)
|
||||||
|
|
||||||
|
author = entry.xpath_node("author/name").not_nil!.content
|
||||||
|
ucid = entry.xpath_node("channelid").not_nil!.content
|
||||||
|
description = entry.xpath_node("group/description").not_nil!.content
|
||||||
|
views = entry.xpath_node("group/community/statistics").not_nil!.["views"].to_i64
|
||||||
|
|
||||||
|
videos << SearchVideo.new(
|
||||||
|
title: title,
|
||||||
|
id: video_id,
|
||||||
|
author: author,
|
||||||
|
ucid: ucid,
|
||||||
|
published: published,
|
||||||
|
views: views,
|
||||||
|
description: description,
|
||||||
|
description_html: "",
|
||||||
|
length_seconds: 0,
|
||||||
|
live_now: false,
|
||||||
|
paid: false,
|
||||||
|
premium: false
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
|
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
|
||||||
path = env.request.path
|
path = env.request.path
|
||||||
|
|
Loading…
Reference in a new issue