2018-03-07 23:58:33 +00:00
|
|
|
# "Invidious" (which is what YouTube should be)
|
2018-01-28 17:32:40 +00:00
|
|
|
# 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 07:48:55 +00:00
|
|
|
require "kemal"
|
2018-02-03 22:13:14 +00:00
|
|
|
require "option_parser"
|
2017-11-24 04:06:43 +00:00
|
|
|
require "pg"
|
2018-01-16 20:02:35 +00:00
|
|
|
require "xml"
|
2018-03-09 18:42:23 +00:00
|
|
|
require "yaml"
|
2018-01-21 00:19:12 +00:00
|
|
|
require "./helpers"
|
2017-11-29 21:33:46 +00:00
|
|
|
|
2018-03-09 18:42:23 +00:00
|
|
|
CONFIG = Config.from_yaml(File.read("config/config.yml"))
|
|
|
|
|
|
|
|
pool_size = CONFIG.pool_size
|
|
|
|
threads = CONFIG.threads
|
2018-03-09 19:22:04 +00:00
|
|
|
redirect = CONFIG.redirect
|
2018-03-04 16:59:03 +00:00
|
|
|
|
2018-02-06 01:37:09 +00:00
|
|
|
Kemal.config.extra_options do |parser|
|
2018-02-03 22:13:14 +00:00
|
|
|
parser.banner = "Usage: invidious [arguments]"
|
2018-03-05 04:25:03 +00:00
|
|
|
parser.on("-z SIZE", "--youtube-pool=SIZE", "Number of clients in youtube pool (default: #{pool_size})") do |number|
|
2018-03-04 16:59:03 +00:00
|
|
|
begin
|
2018-03-05 04:25:03 +00:00
|
|
|
pool_size = number.to_i
|
2018-03-04 16:59:03 +00:00
|
|
|
rescue ex
|
|
|
|
puts "SIZE must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2018-03-05 04:25:03 +00:00
|
|
|
parser.on("-t THREADS", "--youtube-threads=THREADS", "Number of threads for crawling (default: #{threads})") do |number|
|
2018-02-03 22:13:14 +00:00
|
|
|
begin
|
2018-03-05 04:25:03 +00:00
|
|
|
threads = number.to_i
|
2018-02-03 22:13:14 +00:00
|
|
|
rescue ex
|
|
|
|
puts "THREADS must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2018-03-09 19:22:04 +00:00
|
|
|
parser.on("-r REDIRECT", "--redirect=BOOL", "Whether insecure requests should be forced to HTTPS, requires -s (default #{redirect})") do |boolean|
|
|
|
|
if boolean == "true"
|
|
|
|
redirect = true
|
|
|
|
elsif boolean == "false"
|
|
|
|
redirect = false
|
|
|
|
else
|
|
|
|
puts "REDIRECT must be 'true' or 'false'"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2018-02-13 16:43:15 +00:00
|
|
|
end
|
2018-02-11 22:48:27 +00:00
|
|
|
|
|
|
|
Kemal::CLI.new
|
2018-02-03 22:13:14 +00:00
|
|
|
|
2018-03-09 18:42:23 +00:00
|
|
|
PG_URL = URI.new(
|
|
|
|
scheme: "postgres",
|
|
|
|
user: CONFIG.db[:user],
|
|
|
|
password: CONFIG.db[:password],
|
|
|
|
host: CONFIG.db[:host],
|
|
|
|
port: CONFIG.db[:port],
|
|
|
|
path: CONFIG.db[:dbname],
|
|
|
|
)
|
|
|
|
|
|
|
|
PG_DB = DB.open PG_URL
|
2018-03-04 16:59:03 +00:00
|
|
|
YT_URL = URI.parse("https://www.youtube.com")
|
|
|
|
REDDIT_URL = URI.parse("https://api.reddit.com")
|
2018-03-05 04:25:03 +00:00
|
|
|
|
|
|
|
youtube_pool = Deque.new(pool_size) do
|
|
|
|
make_client(YT_URL)
|
2018-03-03 21:06:14 +00:00
|
|
|
end
|
2018-01-17 03:42:48 +00:00
|
|
|
|
2018-03-03 21:06:14 +00:00
|
|
|
# Refresh youtube_pool by crawling YT
|
2018-03-05 04:25:03 +00:00
|
|
|
threads.times do
|
2018-01-28 02:09:27 +00:00
|
|
|
spawn do
|
|
|
|
ids = Deque(String).new
|
|
|
|
random = Random.new
|
2018-01-21 17:04:58 +00:00
|
|
|
|
2018-03-05 04:25:03 +00:00
|
|
|
client = get_client(youtube_pool)
|
|
|
|
search(random.base64(3), client) do |id|
|
2018-01-28 02:09:27 +00:00
|
|
|
ids << id
|
2018-01-21 23:49:27 +00:00
|
|
|
end
|
2018-03-05 04:25:03 +00:00
|
|
|
youtube_pool << client
|
2018-02-09 02:19:44 +00:00
|
|
|
|
2018-01-28 02:09:27 +00:00
|
|
|
loop do
|
2018-03-05 04:25:03 +00:00
|
|
|
client = get_client(youtube_pool)
|
2018-02-09 02:19:44 +00:00
|
|
|
|
2018-01-28 02:09:27 +00:00
|
|
|
if ids.empty?
|
2018-03-05 04:25:03 +00:00
|
|
|
search(random.base64(3), client) do |id|
|
2018-01-28 02:09:27 +00:00
|
|
|
ids << id
|
|
|
|
end
|
|
|
|
end
|
2018-01-21 17:04:58 +00:00
|
|
|
|
2018-01-28 02:09:27 +00:00
|
|
|
begin
|
|
|
|
id = ids[0]
|
2018-03-05 04:25:03 +00:00
|
|
|
video = get_video(id, client, PG_DB)
|
2018-01-28 02:09:27 +00:00
|
|
|
rescue ex
|
2018-03-05 04:25:03 +00:00
|
|
|
STDOUT << id << " : " << ex.message << "\n"
|
|
|
|
youtube_pool << make_client(YT_URL)
|
2018-01-28 02:09:27 +00:00
|
|
|
next
|
|
|
|
ensure
|
|
|
|
ids.delete(id)
|
|
|
|
end
|
2018-01-21 00:19:55 +00:00
|
|
|
|
2018-01-28 02:09:27 +00:00
|
|
|
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 03:46:29 +00:00
|
|
|
end
|
2018-01-21 00:19:55 +00:00
|
|
|
|
2018-01-28 02:09:27 +00:00
|
|
|
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-21 23:49:27 +00:00
|
|
|
ids << rv["id"]
|
2018-01-28 02:09:27 +00:00
|
|
|
if ids.size == 150
|
2018-01-21 23:49:27 +00:00
|
|
|
ids.shift
|
2018-01-21 17:07:32 +00:00
|
|
|
end
|
|
|
|
end
|
2018-01-21 17:04:58 +00:00
|
|
|
end
|
2018-01-21 00:19:55 +00:00
|
|
|
|
2018-03-05 04:25:03 +00:00
|
|
|
youtube_pool << client
|
2018-01-28 02:09:27 +00:00
|
|
|
end
|
2018-01-17 03:42:48 +00:00
|
|
|
end
|
2018-01-07 23:18:24 +00:00
|
|
|
end
|
2018-01-07 02:39:24 +00:00
|
|
|
|
2018-02-08 04:04:47 +00:00
|
|
|
top_videos = [] of Video
|
2017-11-23 07:48:55 +00:00
|
|
|
|
2018-02-08 04:04:47 +00:00
|
|
|
spawn do
|
|
|
|
loop do
|
2018-02-09 02:19:44 +00:00
|
|
|
top = rank_videos(PG_DB, 40)
|
2018-02-05 23:56:40 +00:00
|
|
|
|
2018-02-15 17:55:44 +00:00
|
|
|
if top.size > 0
|
2018-03-04 14:54:19 +00:00
|
|
|
args = arg_array(top)
|
2018-02-15 17:55:44 +00:00
|
|
|
else
|
|
|
|
next
|
|
|
|
end
|
2018-02-05 23:56:40 +00:00
|
|
|
|
2018-02-09 02:19:44 +00:00
|
|
|
videos = [] of Video
|
|
|
|
|
2018-02-08 04:04:47 +00:00
|
|
|
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)
|
2018-02-09 02:19:44 +00:00
|
|
|
videos << video
|
2018-02-08 04:04:47 +00:00
|
|
|
end
|
2018-02-05 23:56:40 +00:00
|
|
|
end
|
2018-02-08 04:04:47 +00:00
|
|
|
|
2018-02-09 02:19:44 +00:00
|
|
|
top_videos = videos
|
2018-03-06 00:34:26 +00:00
|
|
|
Fiber.yield
|
2018-02-08 04:04:47 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
get "/" do |env|
|
2017-12-30 21:28:41 +00:00
|
|
|
templated "index"
|
|
|
|
end
|
|
|
|
|
2018-03-11 15:24:12 +00:00
|
|
|
before_all do |env|
|
|
|
|
env.response.headers.add("Strict-Transport-Security", "max-age=31536000; includeSubDomains; preload")
|
|
|
|
end
|
|
|
|
|
2017-12-30 21:28:41 +00:00
|
|
|
get "/watch" do |env|
|
2018-02-15 18:05:39 +00:00
|
|
|
if env.params.query["v"]?
|
|
|
|
id = env.params.query["v"]
|
|
|
|
else
|
|
|
|
env.redirect "/"
|
|
|
|
next
|
|
|
|
end
|
2018-01-16 02:30:57 +00:00
|
|
|
|
2018-02-27 00:59:02 +00:00
|
|
|
listen = false
|
2018-02-11 23:01:32 +00:00
|
|
|
if env.params.query["listen"]? && env.params.query["listen"] == "true"
|
|
|
|
listen = true
|
2018-02-13 16:43:15 +00:00
|
|
|
env.params.query.delete_all("listen")
|
2018-02-11 23:01:32 +00:00
|
|
|
end
|
2018-01-07 02:39:24 +00:00
|
|
|
|
2018-03-03 21:06:14 +00:00
|
|
|
yt_client = get_client(youtube_pool)
|
2018-01-07 02:39:24 +00:00
|
|
|
begin
|
2018-03-03 21:06:14 +00:00
|
|
|
video = get_video(id, yt_client, PG_DB)
|
2018-01-07 02:39:24 +00:00
|
|
|
rescue ex
|
|
|
|
error_message = ex.message
|
|
|
|
next templated "error"
|
2018-03-03 23:45:54 +00:00
|
|
|
ensure
|
|
|
|
youtube_pool << yt_client
|
2018-01-07 02:39:24 +00:00
|
|
|
end
|
2017-12-30 21:28:41 +00:00
|
|
|
|
2017-11-29 01:59:51 +00:00
|
|
|
fmt_stream = [] of HTTP::Params
|
2018-01-07 02:39:24 +00:00
|
|
|
video.info["url_encoded_fmt_stream_map"].split(",") do |string|
|
2017-11-29 01:59:51 +00:00
|
|
|
fmt_stream << HTTP::Params.parse(string)
|
|
|
|
end
|
2018-01-21 17:07:32 +00:00
|
|
|
|
2018-02-22 19:01:37 +00:00
|
|
|
signature = false
|
2018-02-12 04:06:29 +00:00
|
|
|
if fmt_stream[0]? && fmt_stream[0]["s"]?
|
2018-02-22 19:01:37 +00:00
|
|
|
signature = true
|
2018-02-03 20:41:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# We want lowest quality first
|
|
|
|
fmt_stream.reverse!
|
2018-01-21 17:07:32 +00:00
|
|
|
|
2018-01-04 02:06:16 +00:00
|
|
|
adaptive_fmts = [] of HTTP::Params
|
2018-01-20 00:31:47 +00:00
|
|
|
if video.info.has_key?("adaptive_fmts")
|
|
|
|
video.info["adaptive_fmts"].split(",") do |string|
|
|
|
|
adaptive_fmts << HTTP::Params.parse(string)
|
|
|
|
end
|
2018-01-04 02:06:16 +00:00
|
|
|
end
|
2018-01-28 02:09:27 +00:00
|
|
|
|
2018-02-22 19:01:37 +00:00
|
|
|
if signature
|
|
|
|
adaptive_fmts.each do |fmt|
|
|
|
|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"])
|
|
|
|
end
|
|
|
|
|
|
|
|
fmt_stream.each do |fmt|
|
|
|
|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"])
|
2018-02-13 01:54:11 +00:00
|
|
|
end
|
2018-02-03 20:41:59 +00:00
|
|
|
end
|
|
|
|
|
2018-01-20 00:31:47 +00:00
|
|
|
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 17:07:32 +00:00
|
|
|
|
2018-01-20 00:31:47 +00:00
|
|
|
player_response = JSON.parse(video.info["player_response"])
|
2018-01-21 17:07:32 +00:00
|
|
|
|
2018-01-07 02:39:24 +00:00
|
|
|
rating = video.info["avg_rating"].to_f64
|
|
|
|
|
2018-01-28 02:09:27 +00:00
|
|
|
engagement = ((video.dislikes.to_f + video.likes.to_f)/video.views * 100)
|
2018-02-12 04:06:29 +00:00
|
|
|
|
2018-02-05 01:42:13 +00:00
|
|
|
if video.likes > 0 || video.dislikes > 0
|
2018-02-05 23:57:53 +00:00
|
|
|
calculated_rating = (video.likes.to_f/(video.likes.to_f + video.dislikes.to_f) * 4 + 1)
|
2018-02-05 01:42:13 +00:00
|
|
|
else
|
|
|
|
calculated_rating = 0.0
|
|
|
|
end
|
2017-11-24 04:06:43 +00:00
|
|
|
|
2018-03-05 04:25:03 +00:00
|
|
|
reddit_client = make_client(REDDIT_URL)
|
2018-03-04 17:00:35 +00:00
|
|
|
headers = HTTP::Headers{"User-Agent" => "web:invidio.us:v0.1.0 (by /u/omarroth)"}
|
2018-03-03 21:06:14 +00:00
|
|
|
begin
|
2018-03-04 16:59:03 +00:00
|
|
|
reddit_comments, reddit_thread = get_reddit_comments(id, reddit_client, headers)
|
2018-03-07 04:00:35 +00:00
|
|
|
reddit_html = template_comments(reddit_comments)
|
|
|
|
|
|
|
|
reddit_html = add_alt_links(reddit_html)
|
2018-03-03 21:06:14 +00:00
|
|
|
rescue ex
|
2018-03-09 16:47:25 +00:00
|
|
|
STDOUT << id << " : " << ex.message << "\n"
|
2018-03-03 21:06:14 +00:00
|
|
|
reddit_thread = nil
|
2018-03-07 04:00:35 +00:00
|
|
|
reddit_html = ""
|
2018-03-03 21:06:14 +00:00
|
|
|
end
|
|
|
|
|
2018-03-07 04:00:35 +00:00
|
|
|
video.description = fill_links(video.description, "https", "www.youtube.com")
|
|
|
|
video.description = add_alt_links(video.description)
|
|
|
|
|
2018-03-07 22:48:26 +00:00
|
|
|
thumbnail = player_response["videoDetails"]["thumbnail"]["thumbnails"][-1]["url"]?
|
|
|
|
|
2017-11-23 07:48:55 +00:00
|
|
|
templated "watch"
|
|
|
|
end
|
|
|
|
|
2017-12-30 21:21:43 +00:00
|
|
|
get "/search" do |env|
|
2018-02-15 18:05:39 +00:00
|
|
|
if env.params.query["q"]?
|
|
|
|
query = env.params.query["q"]
|
|
|
|
else
|
|
|
|
env.redirect "/"
|
|
|
|
next
|
|
|
|
end
|
2018-02-27 00:59:02 +00:00
|
|
|
|
2018-01-15 03:16:09 +00:00
|
|
|
page = env.params.query["page"]? && env.params.query["page"].to_i? ? env.params.query["page"].to_i : 1
|
2018-01-07 17:42:24 +00:00
|
|
|
|
2018-03-05 04:25:03 +00:00
|
|
|
client = get_client(youtube_pool)
|
2018-01-07 23:18:24 +00:00
|
|
|
|
2018-03-05 04:25:03 +00:00
|
|
|
html = client.get("/results?q=#{URI.escape(query)}&page=#{page}&sp=EgIQAVAU").body
|
2018-01-15 03:16:09 +00:00
|
|
|
html = XML.parse_html(html)
|
2018-01-07 19:03:53 +00:00
|
|
|
|
2018-03-05 04:25:03 +00:00
|
|
|
youtube_pool << client
|
|
|
|
|
2018-01-15 03:16:09 +00:00
|
|
|
videos = Array(Hash(String, String)).new
|
2017-12-30 21:21:43 +00:00
|
|
|
|
2018-01-16 04:11:51 +00:00
|
|
|
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-30 21:21:43 +00:00
|
|
|
|
2018-01-16 04:11:51 +00:00
|
|
|
link = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/@href))
|
2018-01-15 03:16:09 +00:00
|
|
|
if link
|
|
|
|
video["link"] = link.content
|
2018-01-16 04:11:51 +00:00
|
|
|
else
|
|
|
|
video["link"] = "#"
|
2018-01-15 03:16:09 +00:00
|
|
|
end
|
2017-12-30 21:21:43 +00:00
|
|
|
|
2018-01-16 04:11:51 +00:00
|
|
|
title = root.xpath_node(%q(div[@class="yt-lockup-content"]/h3/a))
|
2018-01-15 03:16:09 +00:00
|
|
|
if title
|
|
|
|
video["title"] = title.content
|
2018-01-16 04:11:51 +00:00
|
|
|
else
|
|
|
|
video["title"] = "Something went wrong"
|
2018-01-15 03:16:09 +00:00
|
|
|
end
|
|
|
|
|
2018-01-16 04:11:51 +00:00
|
|
|
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
|
2018-03-07 22:48:43 +00:00
|
|
|
video["thumbnail"] = "https://dummyimage.com/246x138"
|
2018-01-16 04:11:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-27 02:59:18 +00:00
|
|
|
author = root.xpath_node(%q(div[@class="yt-lockup-content"]/div/a))
|
|
|
|
if author
|
|
|
|
video["author"] = author.content
|
|
|
|
video["author_url"] = author["href"]
|
|
|
|
else
|
|
|
|
video["author"] = ""
|
|
|
|
video["author_url"] = ""
|
|
|
|
end
|
|
|
|
|
2018-01-16 04:11:51 +00:00
|
|
|
videos << video
|
|
|
|
end
|
2018-01-07 02:39:24 +00:00
|
|
|
end
|
|
|
|
|
2017-12-30 21:21:43 +00:00
|
|
|
templated "search"
|
|
|
|
end
|
|
|
|
|
2018-03-04 00:18:03 +00:00
|
|
|
get "/redirect" do |env|
|
|
|
|
if env.params.query["q"]?
|
|
|
|
env.redirect env.params.query["q"]
|
|
|
|
else
|
|
|
|
env.redirect "/"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-10 15:15:23 +00:00
|
|
|
error 404 do |env|
|
|
|
|
error_message = "404 Page not found"
|
|
|
|
templated "error"
|
2017-12-30 21:21:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
error 500 do |env|
|
2018-02-10 15:15:23 +00:00
|
|
|
error_message = "500 Server error"
|
|
|
|
templated "error"
|
2017-12-30 21:21:43 +00:00
|
|
|
end
|
|
|
|
|
2018-03-09 19:22:04 +00:00
|
|
|
# Add redirect if SSL is enabled and redirect is enabled
|
|
|
|
if Kemal.config.ssl && redirect
|
|
|
|
spawn do
|
|
|
|
server = HTTP::Server.new("0.0.0.0", 80) do |context|
|
2018-03-09 20:13:26 +00:00
|
|
|
redirect_url = "https://#{context.request.host}#{context.request.path}"
|
|
|
|
if context.request.query
|
|
|
|
redirect_url += "?#{context.request.query}"
|
|
|
|
end
|
2018-03-11 15:24:12 +00:00
|
|
|
context.response.headers.add("Location", redirect_url)
|
2018-03-09 20:11:30 +00:00
|
|
|
context.response.status_code = 301
|
2018-03-09 19:22:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
server.listen
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-09 17:28:57 +00:00
|
|
|
static_headers do |response, filepath, filestat|
|
|
|
|
response.headers.add("Cache-Control", "max-age=86400")
|
|
|
|
end
|
|
|
|
|
2017-11-23 07:48:55 +00:00
|
|
|
public_folder "assets"
|
|
|
|
|
|
|
|
Kemal.run
|