invidious-mod/src/invidious/trending.cr

33 行
953 B
Crystal
Raw 通常表示 履歴

2019-06-29 11:17:56 +09:00
def fetch_trending(trending_type, region, locale)
2018-11-21 02:18:12 +09:00
region ||= "US"
region = region.upcase
plid = nil
2021-06-24 07:08:40 +09:00
if trending_type == "Music"
params = "4gINGgt5dG1hX2NoYXJ0cw%3D%3D"
elsif trending_type == "Gaming"
params = "4gIcGhpnYW1pbmdfY29ycHVzX21vc3RfcG9wdWxhcg%3D%3D"
elsif trending_type == "Movies"
params = "4gIKGgh0cmFpbGVycw%3D%3D"
else # Default
params = ""
2018-11-21 02:18:12 +09:00
end
client_config = YoutubeAPI::ClientConfig.new(region: region)
initial_data = YoutubeAPI.browse("FEtrending", params: params, client_config: client_config)
2020-06-16 07:33:23 +09:00
trending = extract_videos(initial_data)
2018-11-21 02:18:12 +09:00
return {trending, plid}
end
def extract_plid(url)
2020-06-16 07:33:23 +09:00
return url.try { |i| URI.parse(i).query }
.try { |i| HTTP::Params.parse(i)["bp"] }
2020-03-31 04:27:07 +09:00
.try { |i| URI.decode_www_form(i) }
.try { |i| Base64.decode(i) }
.try { |i| IO::Memory.new(i) }
.try { |i| Protodec::Any.parse(i) }
2020-06-16 07:33:23 +09:00
.try &.["44:0:embedded"]?.try &.["2:1:string"]?.try &.as_s
2018-11-21 02:18:12 +09:00
end