invidious-experimenting/src/invidious.cr

362 lines
9.0 KiB
Crystal
Raw Normal View History

# "Invidious" (which is what YouTube should be)
2018-01-28 23:02:40 +05:30
# 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"
require "option_parser"
require "pg"
2018-01-17 01:32:35 +05:30
require "xml"
2018-03-10 00:12:23 +05:30
require "yaml"
2018-01-21 05:49:12 +05:30
require "./helpers"
2017-11-30 03:03:46 +05:30
2018-03-10 00:12:23 +05:30
CONFIG = Config.from_yaml(File.read("config/config.yml"))
pool_size = CONFIG.pool_size
threads = CONFIG.threads
2018-03-10 00:52:04 +05:30
redirect = CONFIG.redirect
Kemal.config.extra_options do |parser|
parser.banner = "Usage: invidious [arguments]"
2018-03-05 09:55:03 +05:30
parser.on("-z SIZE", "--youtube-pool=SIZE", "Number of clients in youtube pool (default: #{pool_size})") do |number|
begin
2018-03-05 09:55:03 +05:30
pool_size = number.to_i
rescue ex
puts "SIZE must be integer"
exit
end
end
2018-03-05 09:55:03 +05:30
parser.on("-t THREADS", "--youtube-threads=THREADS", "Number of threads for crawling (default: #{threads})") do |number|
begin
2018-03-05 09:55:03 +05:30
threads = number.to_i
rescue ex
puts "THREADS must be integer"
exit
end
end
2018-03-10 00:52:04 +05:30
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 22:13:15 +05:30
end
2018-02-12 04:18:27 +05:30
Kemal::CLI.new
2018-03-10 00:12:23 +05:30
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
YT_URL = URI.parse("https://www.youtube.com")
REDDIT_URL = URI.parse("https://api.reddit.com")
2018-03-05 09:55:03 +05:30
youtube_pool = Deque.new(pool_size) do
make_client(YT_URL)
2018-03-04 02:36:14 +05:30
end
2018-01-17 09:12:48 +05:30
2018-03-04 02:36:14 +05:30
# Refresh youtube_pool by crawling YT
2018-03-05 09:55:03 +05:30
threads.times do
2018-01-28 07:39:27 +05:30
spawn do
ids = Deque(String).new
random = Random.new
2018-01-21 22:34:58 +05:30
2018-03-05 09:55:03 +05:30
client = get_client(youtube_pool)
search(random.base64(3), client) do |id|
2018-01-28 07:39:27 +05:30
ids << id
2018-01-22 05:19:27 +05:30
end
2018-03-05 09:55:03 +05:30
youtube_pool << client
2018-02-09 07:49:44 +05:30
2018-01-28 07:39:27 +05:30
loop do
2018-03-05 09:55:03 +05:30
client = get_client(youtube_pool)
2018-02-09 07:49:44 +05:30
2018-01-28 07:39:27 +05:30
if ids.empty?
2018-03-05 09:55:03 +05:30
search(random.base64(3), client) do |id|
2018-01-28 07:39:27 +05:30
ids << id
end
end
2018-01-21 22:34:58 +05:30
2018-01-28 07:39:27 +05:30
begin
id = ids[0]
2018-03-05 09:55:03 +05:30
video = get_video(id, client, PG_DB)
2018-01-28 07:39:27 +05:30
rescue ex
2018-03-05 09:55:03 +05:30
STDOUT << id << " : " << ex.message << "\n"
youtube_pool << make_client(YT_URL)
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-03-05 09:55:03 +05:30
youtube_pool << client
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-02-08 09:34:47 +05:30
top_videos = [] of Video
2017-11-23 13:18:55 +05:30
2018-02-08 09:34:47 +05:30
spawn do
loop do
2018-02-09 07:49:44 +05:30
top = rank_videos(PG_DB, 40)
2018-02-06 05:26:40 +05:30
if top.size > 0
2018-03-04 20:24:19 +05:30
args = arg_array(top)
else
next
end
2018-02-06 05:26:40 +05:30
2018-02-09 07:49:44 +05:30
videos = [] of Video
2018-02-08 09:34:47 +05:30
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 07:49:44 +05:30
videos << video
2018-02-08 09:34:47 +05:30
end
2018-02-06 05:26:40 +05:30
end
2018-02-08 09:34:47 +05:30
2018-02-09 07:49:44 +05:30
top_videos = videos
2018-03-06 06:04:26 +05:30
Fiber.yield
2018-02-08 09:34:47 +05:30
end
end
get "/" do |env|
templated "index"
end
get "/watch" do |env|
2018-02-15 23:35:39 +05:30
if env.params.query["v"]?
id = env.params.query["v"]
else
env.redirect "/"
next
end
2018-01-16 08:00:57 +05:30
2018-02-27 06:29:02 +05:30
listen = false
2018-02-12 04:31:32 +05:30
if env.params.query["listen"]? && env.params.query["listen"] == "true"
listen = true
2018-02-13 22:13:15 +05:30
env.params.query.delete_all("listen")
2018-02-12 04:31:32 +05:30
end
2018-03-04 02:36:14 +05:30
yt_client = get_client(youtube_pool)
begin
2018-03-04 02:36:14 +05:30
video = get_video(id, yt_client, PG_DB)
rescue ex
error_message = ex.message
next templated "error"
2018-03-04 05:15:54 +05:30
ensure
youtube_pool << yt_client
end
fmt_stream = [] of HTTP::Params
video.info["url_encoded_fmt_stream_map"].split(",") do |string|
fmt_stream << HTTP::Params.parse(string)
end
2018-01-21 22:37:32 +05:30
signature = false
if fmt_stream[0]? && fmt_stream[0]["s"]?
signature = true
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
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
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"])
end
end
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
player_response = JSON.parse(video.info["player_response"])
2018-01-21 22:37:32 +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
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
2018-03-05 09:55:03 +05:30
reddit_client = make_client(REDDIT_URL)
2018-03-04 22:30:35 +05:30
headers = HTTP::Headers{"User-Agent" => "web:invidio.us:v0.1.0 (by /u/omarroth)"}
2018-03-04 02:36:14 +05:30
begin
reddit_comments, reddit_thread = get_reddit_comments(id, reddit_client, headers)
2018-03-07 09:30:35 +05:30
reddit_html = template_comments(reddit_comments)
reddit_html = add_alt_links(reddit_html)
2018-03-04 02:36:14 +05:30
rescue ex
2018-03-09 22:17:25 +05:30
STDOUT << id << " : " << ex.message << "\n"
2018-03-04 02:36:14 +05:30
reddit_thread = nil
2018-03-07 09:30:35 +05:30
reddit_html = ""
2018-03-04 02:36:14 +05:30
end
2018-03-07 09:30:35 +05:30
video.description = fill_links(video.description, "https", "www.youtube.com")
video.description = add_alt_links(video.description)
2018-03-08 04:18:26 +05:30
thumbnail = player_response["videoDetails"]["thumbnail"]["thumbnails"][-1]["url"]?
2017-11-23 13:18:55 +05:30
templated "watch"
end
2017-12-31 02:51:43 +05:30
get "/search" do |env|
2018-02-15 23:35:39 +05:30
if env.params.query["q"]?
query = env.params.query["q"]
else
env.redirect "/"
next
end
2018-02-27 06:29:02 +05:30
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-03-05 09:55:03 +05:30
client = get_client(youtube_pool)
2018-01-08 04:48:24 +05:30
2018-03-05 09:55:03 +05:30
html = client.get("/results?q=#{URI.escape(query)}&page=#{page}&sp=EgIQAVAU").body
2018-01-15 08:46:09 +05:30
html = XML.parse_html(html)
2018-03-05 09:55:03 +05:30
youtube_pool << client
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"] = "https://dummyimage.com/246x138"
2018-01-16 09:41:51 +05:30
end
end
2018-02-27 08:29:18 +05:30
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 09:41:51 +05:30
videos << video
end
end
2017-12-31 02:51:43 +05:30
templated "search"
end
get "/redirect" do |env|
if env.params.query["q"]?
env.redirect env.params.query["q"]
else
env.redirect "/"
end
end
2018-02-10 20:45:23 +05:30
error 404 do |env|
error_message = "404 Page not found"
templated "error"
2017-12-31 02:51:43 +05:30
end
error 500 do |env|
2018-02-10 20:45:23 +05:30
error_message = "500 Server error"
templated "error"
2017-12-31 02:51:43 +05:30
end
2018-03-10 00:52:04 +05:30
# 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|
context.response.headers.add "Strict-Transport-Security", "max-age=31536000; includeSubDomains; preload"
2018-03-10 01:05:31 +05:30
redirect_url = "https://#{context.request.host}#{context.request.path}?#{context.request.query}"
context.response.headers.add "Location", redirect_url
2018-03-10 01:41:30 +05:30
context.response.status_code = 301
2018-03-10 00:52:04 +05:30
end
server.listen
end
end
2018-03-09 22:58:57 +05:30
static_headers do |response, filepath, filestat|
response.headers.add("Cache-Control", "max-age=86400")
end
2017-11-23 13:18:55 +05:30
public_folder "assets"
Kemal.run