2018-08-04 20:30:44 +00:00
|
|
|
class InvidiousChannel
|
|
|
|
add_mapping({
|
|
|
|
id: String,
|
|
|
|
author: String,
|
|
|
|
updated: Time,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
class ChannelVideo
|
|
|
|
add_mapping({
|
2018-10-30 14:20:51 +00:00
|
|
|
id: String,
|
|
|
|
title: String,
|
|
|
|
published: Time,
|
|
|
|
updated: Time,
|
|
|
|
ucid: String,
|
|
|
|
author: String,
|
|
|
|
length_seconds: {
|
|
|
|
type: Int32,
|
|
|
|
default: 0,
|
|
|
|
},
|
2018-08-04 20:30:44 +00:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2019-01-03 01:28:01 +00:00
|
|
|
def get_batch_channels(channels, db, refresh = false, pull_all_videos = true, max_threads = 10)
|
|
|
|
active_threads = 0
|
|
|
|
active_channel = Channel(String | Nil).new
|
|
|
|
|
|
|
|
final = [] of String
|
|
|
|
channels.map do |ucid|
|
|
|
|
if active_threads >= max_threads
|
|
|
|
if response = active_channel.receive
|
|
|
|
active_threads -= 1
|
|
|
|
final << response
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
active_threads += 1
|
|
|
|
spawn do
|
|
|
|
begin
|
|
|
|
get_channel(ucid, db, refresh, pull_all_videos)
|
|
|
|
active_channel.send(ucid)
|
|
|
|
rescue ex
|
|
|
|
active_channel.send(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return final
|
|
|
|
end
|
|
|
|
|
2018-12-15 18:05:52 +00:00
|
|
|
def get_channel(id, db, refresh = true, pull_all_videos = true)
|
|
|
|
client = make_client(YT_URL)
|
|
|
|
|
2018-08-04 20:30:44 +00:00
|
|
|
if db.query_one?("SELECT EXISTS (SELECT true FROM channels WHERE id = $1)", id, as: Bool)
|
|
|
|
channel = db.query_one("SELECT * FROM channels WHERE id = $1", id, as: InvidiousChannel)
|
|
|
|
|
|
|
|
if refresh && Time.now - channel.updated > 10.minutes
|
2018-12-20 21:32:09 +00:00
|
|
|
channel = fetch_channel(id, client, db, pull_all_videos: pull_all_videos)
|
2018-08-04 20:30:44 +00:00
|
|
|
channel_array = channel.to_a
|
|
|
|
args = arg_array(channel_array)
|
|
|
|
|
|
|
|
db.exec("INSERT INTO channels VALUES (#{args}) \
|
2018-12-15 18:02:57 +00:00
|
|
|
ON CONFLICT (id) DO UPDATE SET author = $2, updated = $3", channel_array)
|
2018-08-04 20:30:44 +00:00
|
|
|
end
|
|
|
|
else
|
2018-12-20 21:32:09 +00:00
|
|
|
channel = fetch_channel(id, client, db, pull_all_videos: pull_all_videos)
|
2018-10-30 14:20:51 +00:00
|
|
|
channel_array = channel.to_a
|
|
|
|
args = arg_array(channel_array)
|
|
|
|
|
|
|
|
db.exec("INSERT INTO channels VALUES (#{args})", channel_array)
|
2018-08-04 20:30:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return channel
|
|
|
|
end
|
|
|
|
|
2018-12-20 21:32:09 +00:00
|
|
|
def fetch_channel(ucid, client, db, pull_all_videos = true, locale = nil)
|
2018-08-04 20:30:44 +00:00
|
|
|
rss = client.get("/feeds/videos.xml?channel_id=#{ucid}").body
|
|
|
|
rss = XML.parse_html(rss)
|
|
|
|
|
|
|
|
author = rss.xpath_node(%q(//feed/title))
|
|
|
|
if !author
|
2018-12-20 21:32:09 +00:00
|
|
|
raise translate(locale, "Deleted or invalid channel")
|
2018-08-04 20:30:44 +00:00
|
|
|
end
|
|
|
|
author = author.content
|
|
|
|
|
2018-09-17 02:44:24 +00:00
|
|
|
# Auto-generated channels
|
|
|
|
# https://support.google.com/youtube/answer/2579942
|
|
|
|
if author.ends_with?(" - Topic") ||
|
|
|
|
{"Popular on YouTube", "Music", "Sports", "Gaming"}.includes? author
|
|
|
|
auto_generated = true
|
|
|
|
end
|
|
|
|
|
2018-08-04 20:30:44 +00:00
|
|
|
if !pull_all_videos
|
2018-10-30 14:20:51 +00:00
|
|
|
url = produce_channel_videos_url(ucid, 1, auto_generated: auto_generated)
|
|
|
|
response = client.get(url)
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
|
|
|
|
if json["content_html"]? && !json["content_html"].as_s.empty?
|
|
|
|
document = XML.parse_html(json["content_html"].as_s)
|
|
|
|
nodeset = document.xpath_nodes(%q(//li[contains(@class, "feed-item-container")]))
|
|
|
|
|
|
|
|
if auto_generated
|
|
|
|
videos = extract_videos(nodeset)
|
|
|
|
else
|
|
|
|
videos = extract_videos(nodeset, ucid)
|
|
|
|
videos.each { |video| video.ucid = ucid }
|
|
|
|
videos.each { |video| video.author = author }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
videos ||= [] of ChannelVideo
|
|
|
|
|
2018-08-04 20:30:44 +00:00
|
|
|
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
|
|
|
|
|
2018-10-30 14:20:51 +00:00
|
|
|
length_seconds = videos.select { |video| video.id == video_id }[0]?.try &.length_seconds
|
|
|
|
length_seconds ||= 0
|
|
|
|
|
|
|
|
video = ChannelVideo.new(video_id, title, published, Time.now, ucid, author, length_seconds)
|
2018-08-04 20:30:44 +00:00
|
|
|
|
|
|
|
db.exec("UPDATE users SET notifications = notifications || $1 \
|
|
|
|
WHERE updated < $2 AND $3 = ANY(subscriptions) AND $1 <> ALL(notifications)", video.id, video.published, ucid)
|
|
|
|
|
2018-10-30 15:03:03 +00:00
|
|
|
video_array = video.to_a
|
2018-08-04 20:30:44 +00:00
|
|
|
args = arg_array(video_array)
|
2018-10-30 14:20:51 +00:00
|
|
|
|
2018-08-04 20:30:44 +00:00
|
|
|
db.exec("INSERT INTO channel_videos VALUES (#{args}) \
|
2018-10-30 15:03:03 +00:00
|
|
|
ON CONFLICT (id) DO UPDATE SET title = $2, published = $3, \
|
|
|
|
updated = $4, ucid = $5, author = $6, length_seconds = $7", video_array)
|
2018-08-04 20:30:44 +00:00
|
|
|
end
|
|
|
|
else
|
|
|
|
page = 1
|
2018-09-17 01:32:39 +00:00
|
|
|
ids = [] of String
|
2018-08-04 20:30:44 +00:00
|
|
|
|
|
|
|
loop do
|
2018-09-17 02:44:24 +00:00
|
|
|
url = produce_channel_videos_url(ucid, page, auto_generated: auto_generated)
|
|
|
|
response = client.get(url)
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
|
|
|
|
if json["content_html"]? && !json["content_html"].as_s.empty?
|
|
|
|
document = XML.parse_html(json["content_html"].as_s)
|
|
|
|
nodeset = document.xpath_nodes(%q(//li[contains(@class, "feed-item-container")]))
|
|
|
|
else
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
if auto_generated
|
|
|
|
videos = extract_videos(nodeset)
|
|
|
|
else
|
|
|
|
videos = extract_videos(nodeset, ucid)
|
2018-09-17 03:14:51 +00:00
|
|
|
videos.each { |video| video.ucid = ucid }
|
|
|
|
videos.each { |video| video.author = author }
|
2018-09-17 02:44:24 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
count = nodeset.size
|
2018-10-30 14:20:51 +00:00
|
|
|
videos = videos.map { |video| ChannelVideo.new(video.id, video.title, video.published, Time.now, video.ucid, video.author, video.length_seconds) }
|
2018-09-17 01:32:39 +00:00
|
|
|
|
|
|
|
videos.each do |video|
|
|
|
|
ids << video.id
|
2018-09-28 14:23:28 +00:00
|
|
|
|
|
|
|
# FIXME: Red videos don't provide published date, so the best we can do is ignore them
|
|
|
|
if Time.now - video.published > 1.minute
|
|
|
|
db.exec("UPDATE users SET notifications = notifications || $1 \
|
2018-09-17 03:14:51 +00:00
|
|
|
WHERE updated < $2 AND $3 = ANY(subscriptions) AND $1 <> ALL(notifications)", video.id, video.published, video.ucid)
|
2018-09-17 01:32:39 +00:00
|
|
|
|
2018-10-30 15:03:03 +00:00
|
|
|
video_array = video.to_a
|
2018-09-28 14:23:28 +00:00
|
|
|
args = arg_array(video_array)
|
2018-10-30 14:20:51 +00:00
|
|
|
|
2018-09-28 14:23:28 +00:00
|
|
|
db.exec("INSERT INTO channel_videos VALUES (#{args}) ON CONFLICT (id) DO UPDATE SET title = $2, \
|
2018-10-30 15:03:03 +00:00
|
|
|
published = $3, updated = $4, ucid = $5, author = $6, length_seconds = $7", video_array)
|
2018-09-28 14:23:28 +00:00
|
|
|
end
|
2018-08-04 20:30:44 +00:00
|
|
|
end
|
|
|
|
|
2018-09-17 02:44:24 +00:00
|
|
|
if count < 30
|
2018-08-04 20:30:44 +00:00
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
page += 1
|
|
|
|
end
|
|
|
|
|
|
|
|
# When a video is deleted from a channel, we find and remove it here
|
2018-09-17 01:32:39 +00:00
|
|
|
db.exec("DELETE FROM channel_videos * WHERE NOT id = ANY ('{#{ids.map { |id| %("#{id}") }.join(",")}}') AND ucid = $1", ucid)
|
2018-08-04 20:30:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
channel = InvidiousChannel.new(ucid, author, Time.now)
|
|
|
|
|
|
|
|
return channel
|
|
|
|
end
|
2018-09-04 13:52:30 +00:00
|
|
|
|
2018-11-14 01:04:25 +00:00
|
|
|
def produce_channel_videos_url(ucid, page = 1, auto_generated = nil, sort_by = "newest")
|
2018-09-05 02:04:40 +00:00
|
|
|
if auto_generated
|
2018-11-04 15:37:12 +00:00
|
|
|
seed = Time.unix(1525757349)
|
2018-09-04 13:52:30 +00:00
|
|
|
|
2018-09-05 02:04:40 +00:00
|
|
|
until seed >= Time.now
|
|
|
|
seed += 1.month
|
|
|
|
end
|
|
|
|
timestamp = seed - (page - 1).months
|
|
|
|
|
2018-11-04 15:37:12 +00:00
|
|
|
page = "#{timestamp.to_unix}"
|
2019-02-04 21:17:10 +00:00
|
|
|
switch = 0x36
|
2018-09-05 02:04:40 +00:00
|
|
|
else
|
|
|
|
page = "#{page}"
|
2019-02-04 21:17:10 +00:00
|
|
|
switch = 0x00
|
2018-09-05 02:04:40 +00:00
|
|
|
end
|
|
|
|
|
2019-02-04 21:17:10 +00:00
|
|
|
meta = IO::Memory.new
|
|
|
|
meta.write(Bytes[0x12, 0x06])
|
|
|
|
meta.print("videos")
|
|
|
|
|
|
|
|
meta.write(Bytes[0x30, 0x02])
|
|
|
|
meta.write(Bytes[0x38, 0x01])
|
|
|
|
meta.write(Bytes[0x60, 0x01])
|
|
|
|
meta.write(Bytes[0x6a, 0x00])
|
|
|
|
meta.write(Bytes[0xb8, 0x01, 0x00])
|
|
|
|
|
2019-02-09 16:15:14 +00:00
|
|
|
meta.write(Bytes[0x20, switch])
|
|
|
|
meta.write(Bytes[0x7a, page.size])
|
2019-02-04 21:17:10 +00:00
|
|
|
meta.print(page)
|
2018-09-04 13:52:30 +00:00
|
|
|
|
2018-11-14 01:04:25 +00:00
|
|
|
case sort_by
|
|
|
|
when "newest"
|
|
|
|
# Empty tags can be omitted
|
2019-02-04 21:17:10 +00:00
|
|
|
# meta.write(Bytes[0x18,0x00])
|
2018-11-14 01:04:25 +00:00
|
|
|
when "popular"
|
2019-02-04 21:17:10 +00:00
|
|
|
meta.write(Bytes[0x18, 0x01])
|
2018-11-14 01:04:25 +00:00
|
|
|
when "oldest"
|
2019-02-04 21:17:10 +00:00
|
|
|
meta.write(Bytes[0x18, 0x02])
|
2018-11-14 01:04:25 +00:00
|
|
|
end
|
|
|
|
|
2019-02-04 21:17:10 +00:00
|
|
|
meta.rewind
|
|
|
|
meta = Base64.urlsafe_encode(meta.to_slice)
|
2018-09-04 13:52:30 +00:00
|
|
|
meta = URI.escape(meta)
|
|
|
|
|
2019-02-04 21:17:10 +00:00
|
|
|
continuation = IO::Memory.new
|
|
|
|
continuation.write(Bytes[0x12, ucid.size])
|
|
|
|
continuation.print(ucid)
|
|
|
|
|
|
|
|
continuation.write(Bytes[0x1a, meta.size])
|
|
|
|
continuation.print(meta)
|
|
|
|
|
|
|
|
continuation.rewind
|
|
|
|
continuation = continuation.gets_to_end
|
2018-09-04 13:52:30 +00:00
|
|
|
|
2019-02-04 21:17:10 +00:00
|
|
|
wrapper = IO::Memory.new
|
|
|
|
wrapper.write(Bytes[0xe2, 0xa9, 0x85, 0xb2, 0x02, continuation.size])
|
|
|
|
wrapper.print(continuation)
|
|
|
|
wrapper.rewind
|
2018-09-04 13:52:30 +00:00
|
|
|
|
2019-02-04 21:17:10 +00:00
|
|
|
wrapper = Base64.urlsafe_encode(wrapper.to_slice)
|
|
|
|
wrapper = URI.escape(wrapper)
|
2018-09-04 13:52:30 +00:00
|
|
|
|
2019-02-04 21:17:10 +00:00
|
|
|
url = "/browse_ajax?continuation=#{wrapper}&gl=US&hl=en"
|
2018-09-04 13:52:30 +00:00
|
|
|
|
|
|
|
return url
|
|
|
|
end
|
2018-09-21 14:40:04 +00:00
|
|
|
|
2018-12-20 21:32:09 +00:00
|
|
|
def get_about_info(ucid, locale)
|
2018-09-21 14:40:04 +00:00
|
|
|
client = make_client(YT_URL)
|
|
|
|
|
2018-10-24 01:58:07 +00:00
|
|
|
about = client.get("/channel/#{ucid}/about?disable_polymer=1&gl=US&hl=en")
|
2018-10-24 02:04:15 +00:00
|
|
|
if about.status_code == 404
|
|
|
|
about = client.get("/user/#{ucid}/about?disable_polymer=1&gl=US&hl=en")
|
|
|
|
end
|
|
|
|
|
2018-09-21 14:40:04 +00:00
|
|
|
about = XML.parse_html(about.body)
|
|
|
|
|
2018-10-24 02:04:15 +00:00
|
|
|
if about.xpath_node(%q(//div[contains(@class, "channel-empty-message")]))
|
2018-12-20 21:32:09 +00:00
|
|
|
error_message = translate(locale, "This channel does not exist.")
|
2018-10-24 02:04:15 +00:00
|
|
|
|
|
|
|
raise error_message
|
2018-09-21 14:40:04 +00:00
|
|
|
end
|
|
|
|
|
2018-10-24 01:58:07 +00:00
|
|
|
if about.xpath_node(%q(//span[contains(@class,"qualified-channel-title-text")]/a)).try &.content.empty?
|
|
|
|
error_message = about.xpath_node(%q(//div[@class="yt-alert-content"])).try &.content.strip
|
2018-12-20 21:32:09 +00:00
|
|
|
error_message ||= translate(locale, "Could not get channel info.")
|
2018-10-24 01:58:07 +00:00
|
|
|
|
|
|
|
raise error_message
|
2018-09-21 14:40:04 +00:00
|
|
|
end
|
|
|
|
|
2018-10-13 02:17:37 +00:00
|
|
|
sub_count = about.xpath_node(%q(//span[contains(text(), "subscribers")]))
|
|
|
|
if sub_count
|
|
|
|
sub_count = sub_count.content.delete(", subscribers").to_i?
|
|
|
|
end
|
|
|
|
sub_count ||= 0
|
|
|
|
|
2018-10-22 02:44:20 +00:00
|
|
|
author = about.xpath_node(%q(//span[contains(@class,"qualified-channel-title-text")]/a)).not_nil!.content
|
2018-09-21 14:40:04 +00:00
|
|
|
ucid = about.xpath_node(%q(//link[@rel="canonical"])).not_nil!["href"].split("/")[-1]
|
|
|
|
|
|
|
|
# Auto-generated channels
|
|
|
|
# https://support.google.com/youtube/answer/2579942
|
|
|
|
auto_generated = false
|
|
|
|
if about.xpath_node(%q(//ul[@class="about-custom-links"]/li/a[@title="Auto-generated by YouTube"])) ||
|
|
|
|
about.xpath_node(%q(//span[@class="qualified-channel-title-badge"]/span[@title="Auto-generated by YouTube"]))
|
|
|
|
auto_generated = true
|
|
|
|
end
|
|
|
|
|
2018-10-13 02:17:37 +00:00
|
|
|
return {author, ucid, auto_generated, sub_count}
|
2018-09-21 14:40:04 +00:00
|
|
|
end
|
2018-10-14 14:06:04 +00:00
|
|
|
|
2018-11-14 01:04:25 +00:00
|
|
|
def get_60_videos(ucid, page, auto_generated, sort_by = "newest")
|
2018-10-14 14:06:04 +00:00
|
|
|
count = 0
|
|
|
|
videos = [] of SearchVideo
|
|
|
|
|
|
|
|
client = make_client(YT_URL)
|
|
|
|
|
|
|
|
2.times do |i|
|
2018-11-14 01:04:25 +00:00
|
|
|
url = produce_channel_videos_url(ucid, page * 2 + (i - 1), auto_generated: auto_generated, sort_by: sort_by)
|
2018-10-14 14:06:04 +00:00
|
|
|
response = client.get(url)
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
|
|
|
|
if json["content_html"]? && !json["content_html"].as_s.empty?
|
|
|
|
document = XML.parse_html(json["content_html"].as_s)
|
|
|
|
nodeset = document.xpath_nodes(%q(//li[contains(@class, "feed-item-container")]))
|
|
|
|
|
|
|
|
if !json["load_more_widget_html"]?.try &.as_s.empty?
|
|
|
|
count += 30
|
|
|
|
end
|
|
|
|
|
|
|
|
if auto_generated
|
|
|
|
videos += extract_videos(nodeset)
|
|
|
|
else
|
|
|
|
videos += extract_videos(nodeset, ucid)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return videos, count
|
|
|
|
end
|