2018-01-28 23:02:40 +05:30
|
|
|
# "Invidious" (which indexes popular video sites)
|
|
|
|
# Copyright (C) 2018 Omar Roth
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-11-23 13:18:55 +05:30
|
|
|
require "kemal"
|
2018-02-04 03:43:14 +05:30
|
|
|
require "option_parser"
|
2017-11-24 09:36:43 +05:30
|
|
|
require "pg"
|
2018-01-17 01:32:35 +05:30
|
|
|
require "xml"
|
2018-01-21 05:49:12 +05:30
|
|
|
require "./helpers"
|
2017-11-30 03:03:46 +05:30
|
|
|
|
2018-02-04 03:43:14 +05:30
|
|
|
threads = 10
|
|
|
|
|
2018-02-06 07:07:09 +05:30
|
|
|
Kemal.config.extra_options do |parser|
|
2018-02-04 03:43:14 +05:30
|
|
|
parser.banner = "Usage: invidious [arguments]"
|
2018-02-06 06:38:36 +05:30
|
|
|
parser.on("-t THREADS", "--threads=THREADS", "Number of threads for crawling (default: 10)") do |number|
|
2018-02-04 03:43:14 +05:30
|
|
|
begin
|
|
|
|
threads = number.to_i32
|
|
|
|
rescue ex
|
|
|
|
puts "THREADS must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
parser.on("-h", "--help", "Show this help") do
|
|
|
|
puts parser
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-07 08:09:24 +05:30
|
|
|
PG_DB = DB.open "postgres://kemal:kemal@localhost:5432/invidious"
|
2018-01-17 09:12:48 +05:30
|
|
|
URL = URI.parse("https://www.youtube.com")
|
|
|
|
CONTEXT = OpenSSL::SSL::Context::Client.new
|
|
|
|
CONTEXT.verify_mode = OpenSSL::SSL::VerifyMode::NONE
|
|
|
|
CONTEXT.add_options(
|
|
|
|
OpenSSL::SSL::Options::ALL |
|
|
|
|
OpenSSL::SSL::Options::NO_SSL_V2 |
|
|
|
|
OpenSSL::SSL::Options::NO_SSL_V3
|
|
|
|
)
|
2018-02-06 05:27:53 +05:30
|
|
|
pool = Deque.new((threads * 1.2 + 1).to_i) do
|
2018-02-06 06:37:49 +05:30
|
|
|
make_client(URL, CONTEXT)
|
2018-01-17 09:12:48 +05:30
|
|
|
end
|
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
# Refresh pool by crawling YT
|
2018-02-04 03:43:14 +05:30
|
|
|
threads.times do
|
2018-01-28 07:39:27 +05:30
|
|
|
spawn do
|
|
|
|
io = STDOUT
|
|
|
|
ids = Deque(String).new
|
|
|
|
random = Random.new
|
2018-02-05 07:10:06 +05:30
|
|
|
client = get_client(pool)
|
2018-01-21 22:34:58 +05:30
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
search(random.base64(3), client) do |id|
|
|
|
|
ids << id
|
2018-01-22 05:19:27 +05:30
|
|
|
end
|
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
loop do
|
|
|
|
if ids.empty?
|
|
|
|
search(random.base64(3), client) do |id|
|
|
|
|
ids << id
|
|
|
|
end
|
|
|
|
end
|
2018-01-21 22:34:58 +05:30
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
if rand(300) < 1
|
2018-02-06 06:37:49 +05:30
|
|
|
pool << make_client(URL, CONTEXT)
|
2018-01-28 07:39:27 +05:30
|
|
|
end
|
2018-01-17 09:12:48 +05:30
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
time = Time.now
|
|
|
|
|
|
|
|
begin
|
|
|
|
id = ids[0]
|
2018-02-05 07:10:06 +05:30
|
|
|
video = get_video(id, client, PG_DB)
|
2018-01-28 07:39:27 +05:30
|
|
|
rescue ex
|
|
|
|
io << id << " : " << ex << "\n"
|
2018-02-06 06:37:49 +05:30
|
|
|
pool << make_client(URL, CONTEXT)
|
2018-01-28 07:39:27 +05:30
|
|
|
next
|
|
|
|
ensure
|
|
|
|
ids.delete(id)
|
|
|
|
end
|
2018-01-21 05:49:55 +05:30
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
rvs = [] of Hash(String, String)
|
|
|
|
if video.info.has_key?("rvs")
|
|
|
|
video.info["rvs"].split(",").each do |rv|
|
|
|
|
rvs << HTTP::Params.parse(rv).to_h
|
|
|
|
end
|
2018-01-19 09:16:29 +05:30
|
|
|
end
|
2018-01-21 05:49:55 +05:30
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
rvs.each do |rv|
|
|
|
|
if rv.has_key?("id") && !PG_DB.query_one?("SELECT EXISTS (SELECT true FROM videos WHERE id = $1)", rv["id"], as: Bool)
|
|
|
|
ids.delete(id)
|
2018-01-22 05:19:27 +05:30
|
|
|
ids << rv["id"]
|
2018-01-28 07:39:27 +05:30
|
|
|
if ids.size == 150
|
2018-01-22 05:19:27 +05:30
|
|
|
ids.shift
|
2018-01-21 22:37:32 +05:30
|
|
|
end
|
|
|
|
end
|
2018-01-21 22:34:58 +05:30
|
|
|
end
|
2018-01-21 05:49:55 +05:30
|
|
|
|
2018-02-07 05:00:14 +05:30
|
|
|
# io << Time.now << " 200 GET www.youtube.com/watch?v=" << video.id << " " << elapsed_text(Time.now - time) << "\n"
|
2018-01-28 07:39:27 +05:30
|
|
|
end
|
2018-01-17 09:12:48 +05:30
|
|
|
end
|
2018-01-08 04:48:24 +05:30
|
|
|
end
|
2018-01-07 08:09:24 +05:30
|
|
|
|
2017-11-23 13:18:55 +05:30
|
|
|
macro templated(filename)
|
2018-02-06 07:07:09 +05:30
|
|
|
render "src/views/#{{{filename}}}.ecr", "src/views/layout.ecr"
|
|
|
|
end
|
2017-11-23 13:18:55 +05:30
|
|
|
|
2017-12-31 02:58:41 +05:30
|
|
|
get "/" do |env|
|
2018-02-06 05:26:40 +05:30
|
|
|
top = rank_videos(PG_DB, 120)
|
|
|
|
|
|
|
|
args = [] of String
|
|
|
|
1..(top.size - 1).times { |i| args << "($#{i + 1}), " }
|
|
|
|
args << "($#{top.size}) "
|
|
|
|
args = args.join("")
|
|
|
|
|
|
|
|
videos = [] of Video
|
|
|
|
PG_DB.query("SELECT * FROM videos d INNER JOIN (VALUES #{args}) v(id) USING (id)", top) do |rs|
|
|
|
|
rs.each do
|
|
|
|
video = rs.read(Video)
|
|
|
|
videos << video
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-31 02:58:41 +05:30
|
|
|
templated "index"
|
|
|
|
end
|
|
|
|
|
|
|
|
get "/watch" do |env|
|
2018-01-07 08:09:24 +05:30
|
|
|
id = env.params.query["v"]
|
2018-01-15 08:46:09 +05:30
|
|
|
listen = env.params.query["listen"]? || "false"
|
2018-01-16 08:00:57 +05:30
|
|
|
|
|
|
|
env.params.query.delete_all("listen")
|
2018-01-07 08:09:24 +05:30
|
|
|
|
2018-02-05 07:10:06 +05:30
|
|
|
client = get_client(pool)
|
2018-01-07 08:09:24 +05:30
|
|
|
begin
|
2018-01-28 07:39:27 +05:30
|
|
|
video = get_video(id, client, PG_DB)
|
2018-01-07 08:09:24 +05:30
|
|
|
rescue ex
|
|
|
|
error_message = ex.message
|
|
|
|
next templated "error"
|
|
|
|
end
|
2017-12-31 02:58:41 +05:30
|
|
|
|
2017-11-29 07:29:51 +05:30
|
|
|
fmt_stream = [] of HTTP::Params
|
2018-01-07 08:09:24 +05:30
|
|
|
video.info["url_encoded_fmt_stream_map"].split(",") do |string|
|
2017-11-29 07:29:51 +05:30
|
|
|
fmt_stream << HTTP::Params.parse(string)
|
|
|
|
end
|
2018-01-21 22:37:32 +05:30
|
|
|
|
2018-02-04 02:11:59 +05:30
|
|
|
if fmt_stream[0]["s"]?
|
|
|
|
fmt_stream.each do |fmt|
|
|
|
|
fmt["url"] = "#{fmt["url"]}&signature=#{decrypt_signature(fmt["s"])}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# We want lowest quality first
|
|
|
|
fmt_stream.reverse!
|
2018-01-21 22:37:32 +05:30
|
|
|
|
2018-01-04 07:36:16 +05:30
|
|
|
adaptive_fmts = [] of HTTP::Params
|
2018-01-20 06:01:47 +05:30
|
|
|
if video.info.has_key?("adaptive_fmts")
|
|
|
|
video.info["adaptive_fmts"].split(",") do |string|
|
|
|
|
adaptive_fmts << HTTP::Params.parse(string)
|
|
|
|
end
|
2018-01-04 07:36:16 +05:30
|
|
|
end
|
2018-01-28 07:39:27 +05:30
|
|
|
|
2018-02-04 02:11:59 +05:30
|
|
|
if adaptive_fmts[0]["s"]?
|
|
|
|
adaptive_fmts.each do |fmt|
|
|
|
|
fmt["url"] = "#{fmt["url"]}&signature=#{decrypt_signature(fmt["s"])}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-20 06:01:47 +05:30
|
|
|
rvs = [] of Hash(String, String)
|
|
|
|
if video.info.has_key?("rvs")
|
|
|
|
video.info["rvs"].split(",").each do |rv|
|
|
|
|
rvs << HTTP::Params.parse(rv).to_h
|
|
|
|
end
|
|
|
|
end
|
2018-01-21 22:37:32 +05:30
|
|
|
|
2018-01-20 06:01:47 +05:30
|
|
|
player_response = JSON.parse(video.info["player_response"])
|
2018-01-21 22:37:32 +05:30
|
|
|
|
2018-01-07 08:09:24 +05:30
|
|
|
description = video.html.xpath_node(%q(//p[@id="eow-description"]))
|
2018-01-15 08:46:09 +05:30
|
|
|
description = description ? description.to_xml : "Could not load description"
|
2018-01-07 08:09:24 +05:30
|
|
|
|
|
|
|
rating = video.info["avg_rating"].to_f64
|
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
engagement = ((video.dislikes.to_f + video.likes.to_f)/video.views * 100)
|
2018-02-05 07:12:13 +05:30
|
|
|
if video.likes > 0 || video.dislikes > 0
|
2018-02-06 05:27:53 +05:30
|
|
|
calculated_rating = (video.likes.to_f/(video.likes.to_f + video.dislikes.to_f) * 4 + 1)
|
2018-02-05 07:12:13 +05:30
|
|
|
else
|
|
|
|
calculated_rating = 0.0
|
|
|
|
end
|
2017-11-24 09:36:43 +05:30
|
|
|
|
2018-02-06 06:22:21 +05:30
|
|
|
pool << client
|
|
|
|
|
2017-11-23 13:18:55 +05:30
|
|
|
templated "watch"
|
|
|
|
end
|
|
|
|
|
2017-12-31 02:51:43 +05:30
|
|
|
get "/search" do |env|
|
2018-01-07 23:12:24 +05:30
|
|
|
query = env.params.query["q"]
|
2018-01-15 08:46:09 +05:30
|
|
|
page = env.params.query["page"]? && env.params.query["page"].to_i? ? env.params.query["page"].to_i : 1
|
2018-01-07 23:12:24 +05:30
|
|
|
|
2018-02-05 07:10:06 +05:30
|
|
|
client = get_client(pool)
|
2018-01-08 04:48:24 +05:30
|
|
|
|
2018-01-16 09:41:51 +05:30
|
|
|
html = client.get("https://www.youtube.com/results?q=#{URI.escape(query)}&page=#{page}&sp=EgIQAVAU").body
|
2018-01-15 08:46:09 +05:30
|
|
|
html = XML.parse_html(html)
|
2018-01-08 00:33:53 +05:30
|
|
|
|
2018-01-15 08:46:09 +05:30
|
|
|
videos = Array(Hash(String, String)).new
|
2017-12-31 02:51:43 +05:30
|
|
|
|
2018-01-16 09:41:51 +05:30
|
|
|
html.xpath_nodes(%q(//ol[@class="item-section"]/li)).each do |item|
|
|
|
|
root = item.xpath_node(%q(div[contains(@class,"yt-lockup-video")]/div))
|
|
|
|
if root
|
|
|
|
video = {} of String => String
|
2017-12-31 02:51:43 +05:30
|
|
|
|
2018-01-16 09:41:51 +05:30
|
|
|
link = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/@href))
|
2018-01-15 08:46:09 +05:30
|
|
|
if link
|
|
|
|
video["link"] = link.content
|
2018-01-16 09:41:51 +05:30
|
|
|
else
|
|
|
|
video["link"] = "#"
|
2018-01-15 08:46:09 +05:30
|
|
|
end
|
2017-12-31 02:51:43 +05:30
|
|
|
|
2018-01-16 09:41:51 +05:30
|
|
|
title = root.xpath_node(%q(div[@class="yt-lockup-content"]/h3/a))
|
2018-01-15 08:46:09 +05:30
|
|
|
if title
|
|
|
|
video["title"] = title.content
|
2018-01-16 09:41:51 +05:30
|
|
|
else
|
|
|
|
video["title"] = "Something went wrong"
|
2018-01-15 08:46:09 +05:30
|
|
|
end
|
|
|
|
|
2018-01-16 09:41:51 +05:30
|
|
|
thumbnail = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/div/span/img/@src))
|
|
|
|
if thumbnail && !thumbnail.content.ends_with?(".gif")
|
|
|
|
video["thumbnail"] = thumbnail.content
|
|
|
|
else
|
|
|
|
thumbnail = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/div/span/img/@data-thumb))
|
|
|
|
if thumbnail
|
|
|
|
video["thumbnail"] = thumbnail.content
|
|
|
|
else
|
|
|
|
video["thumbnail"] = "http://via.placeholder.com/246x138"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
videos << video
|
|
|
|
end
|
2018-01-07 08:09:24 +05:30
|
|
|
end
|
|
|
|
|
2018-02-05 07:10:06 +05:30
|
|
|
pool << client
|
2018-01-08 00:33:53 +05:30
|
|
|
|
2017-12-31 02:51:43 +05:30
|
|
|
templated "search"
|
|
|
|
end
|
|
|
|
|
2018-02-05 07:12:42 +05:30
|
|
|
get "/:path" do |env|
|
|
|
|
env.redirect "/"
|
2017-12-31 02:51:43 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
error 500 do |env|
|
2018-02-05 07:12:42 +05:30
|
|
|
"Error 500"
|
2017-12-31 02:51:43 +05:30
|
|
|
end
|
|
|
|
|
2017-11-23 13:18:55 +05:30
|
|
|
public_folder "assets"
|
|
|
|
|
|
|
|
Kemal.run
|