2018-08-05 04:07:38 +00:00
|
|
|
class SearchVideo
|
|
|
|
add_mapping({
|
|
|
|
title: String,
|
|
|
|
id: String,
|
|
|
|
author: String,
|
|
|
|
ucid: String,
|
|
|
|
published: Time,
|
2018-08-10 14:44:19 +00:00
|
|
|
views: Int64,
|
2018-08-05 04:07:38 +00:00
|
|
|
description: String,
|
|
|
|
description_html: String,
|
|
|
|
length_seconds: Int32,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2018-08-04 22:12:58 +00:00
|
|
|
def search(query, page = 1, search_params = build_search_params(content_type: "video"))
|
2018-08-04 20:30:44 +00:00
|
|
|
client = make_client(YT_URL)
|
2018-08-27 20:23:25 +00:00
|
|
|
if query.empty?
|
|
|
|
return {0, [] of SearchVideo}
|
|
|
|
end
|
|
|
|
|
2018-08-05 23:07:52 +00:00
|
|
|
html = client.get("/results?q=#{URI.escape(query)}&page=#{page}&sp=#{search_params}&disable_polymer=1").body
|
2018-08-05 04:07:38 +00:00
|
|
|
if html.empty?
|
2018-08-27 20:23:25 +00:00
|
|
|
return {0, [] of SearchVideo}
|
2018-08-05 04:07:38 +00:00
|
|
|
end
|
|
|
|
|
2018-08-04 20:30:44 +00:00
|
|
|
html = XML.parse_html(html)
|
2018-08-10 14:44:19 +00:00
|
|
|
nodeset = html.xpath_nodes(%q(//ol[@class="item-section"]/li))
|
|
|
|
videos = extract_videos(nodeset)
|
2018-08-04 20:30:44 +00:00
|
|
|
|
2018-08-25 22:18:43 +00:00
|
|
|
return {nodeset.size, videos}
|
2018-08-04 20:30:44 +00:00
|
|
|
end
|
2018-08-04 22:12:58 +00:00
|
|
|
|
2018-08-27 20:23:25 +00:00
|
|
|
def build_search_params(sort : String = "relevance", date : String = "", content_type : String = "",
|
|
|
|
duration : String = "", features : Array(String) = [] of String)
|
2018-08-04 22:12:58 +00:00
|
|
|
head = "\x08"
|
2018-08-27 20:23:25 +00:00
|
|
|
head += case sort
|
2018-08-04 22:12:58 +00:00
|
|
|
when "relevance"
|
|
|
|
"\x00"
|
|
|
|
when "rating"
|
|
|
|
"\x01"
|
2018-08-30 22:42:30 +00:00
|
|
|
when "upload_date", "date"
|
2018-08-04 22:12:58 +00:00
|
|
|
"\x02"
|
2018-08-30 22:42:30 +00:00
|
|
|
when "view_count", "views"
|
2018-08-04 22:12:58 +00:00
|
|
|
"\x03"
|
|
|
|
else
|
2018-08-27 20:23:25 +00:00
|
|
|
raise "No sort #{sort}"
|
2018-08-04 22:12:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
body = ""
|
|
|
|
body += case date
|
|
|
|
when "hour"
|
|
|
|
"\x08\x01"
|
|
|
|
when "today"
|
|
|
|
"\x08\x02"
|
|
|
|
when "week"
|
|
|
|
"\x08\x03"
|
|
|
|
when "month"
|
|
|
|
"\x08\x04"
|
|
|
|
when "year"
|
|
|
|
"\x08\x05"
|
|
|
|
else
|
|
|
|
""
|
|
|
|
end
|
|
|
|
|
|
|
|
body += case content_type
|
|
|
|
when "video"
|
|
|
|
"\x10\x01"
|
|
|
|
when "channel"
|
|
|
|
"\x10\x02"
|
|
|
|
when "playlist"
|
|
|
|
"\x10\x03"
|
|
|
|
when "movie"
|
|
|
|
"\x10\x04"
|
|
|
|
when "show"
|
|
|
|
"\x10\x05"
|
|
|
|
else
|
|
|
|
""
|
|
|
|
end
|
|
|
|
|
|
|
|
body += case duration
|
|
|
|
when "short"
|
|
|
|
"\x18\x01"
|
|
|
|
when "long"
|
|
|
|
"\x18\x02"
|
|
|
|
else
|
|
|
|
""
|
|
|
|
end
|
|
|
|
|
|
|
|
features.each do |feature|
|
|
|
|
body += case feature
|
|
|
|
when "hd"
|
|
|
|
"\x20\x01"
|
|
|
|
when "subtitles"
|
|
|
|
"\x28\x01"
|
2018-08-30 22:42:30 +00:00
|
|
|
when "creative_commons", "cc"
|
2018-08-04 22:12:58 +00:00
|
|
|
"\x30\x01"
|
|
|
|
when "3d"
|
|
|
|
"\x38\x01"
|
|
|
|
when "live"
|
|
|
|
"\x40\x01"
|
|
|
|
when "purchased"
|
|
|
|
"\x48\x01"
|
|
|
|
when "4k"
|
|
|
|
"\x70\x01"
|
|
|
|
when "360"
|
|
|
|
"\x78\x01"
|
|
|
|
when "location"
|
|
|
|
"\xb8\x01\x01"
|
|
|
|
when "hdr"
|
|
|
|
"\xc8\x01\x01"
|
|
|
|
else
|
|
|
|
raise "Unknown feature #{feature}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if body.size > 0
|
|
|
|
token = head + "\x12" + body.size.to_u8.unsafe_chr + body
|
|
|
|
else
|
|
|
|
token = head
|
|
|
|
end
|
|
|
|
|
|
|
|
token = Base64.urlsafe_encode(token)
|
|
|
|
token = URI.escape(token)
|
|
|
|
|
|
|
|
return token
|
|
|
|
end
|