invidious/src/invidious.cr

342 行
8.3 KiB
Crystal
Raw 通常表示 履歴

2018-01-29 02:32:40 +09:00
# "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 16:48:55 +09:00
require "kemal"
require "option_parser"
require "pg"
2018-01-17 05:02:35 +09:00
require "xml"
2018-01-21 09:19:12 +09:00
require "./helpers"
2017-11-30 06:33:46 +09:00
yt_pool_size = 10
yt_threads = 5
yt_wait = 1.0
Kemal.config.extra_options do |parser|
parser.banner = "Usage: invidious [arguments]"
2018-03-05 02:39:56 +09:00
parser.on("-z SIZE", "--youtube-pool=SIZE", "Number of clients in youtube pool (default: #{yt_pool_size})") do |number|
begin
yt_pool_size = number.to_i
rescue ex
puts "SIZE must be integer"
exit
end
end
2018-03-05 02:17:46 +09:00
parser.on("-t THREADS", "--youtube-threads=THREADS", "Number of threads for crawling (default: #{yt_threads})") do |number|
begin
yt_threads = number.to_i
rescue ex
puts "THREADS must be integer"
exit
end
end
2018-03-05 02:17:46 +09:00
parser.on("-w SECONDS", "--youtube-wait=SECONDS", "Time to wait between youtube server requests (default: #{yt_wait})") do |number|
begin
yt_wait = number.to_f64
rescue ex
2018-03-04 09:23:39 +09:00
puts "SECONDS must be integer or float"
exit
end
end
2018-02-14 01:43:15 +09:00
end
2018-02-12 07:48:27 +09:00
Kemal::CLI.new
PG_DB = DB.open "postgres://kemal:kemal@localhost:5432/invidious"
YT_URL = URI.parse("https://www.youtube.com")
REDDIT_URL = URI.parse("https://api.reddit.com")
CONTEXT = OpenSSL::SSL::Context::Client.new
2018-01-17 12:42:48 +09:00
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-03-05 02:17:46 +09:00
youtube_pool = Deque.new(yt_pool_size) do
2018-03-04 06:06:14 +09:00
make_client(YT_URL, CONTEXT)
end
2018-01-17 12:42:48 +09:00
2018-03-04 06:06:14 +09:00
# Refresh youtube_pool by crawling YT
yt_threads.times do
2018-01-28 11:09:27 +09:00
spawn do
io = STDOUT
ids = Deque(String).new
random = Random.new
2018-03-04 08:45:54 +09:00
yt_client = get_client(youtube_pool)
2018-01-22 02:04:58 +09:00
2018-03-04 08:45:54 +09:00
search(random.base64(3), yt_client) do |id|
2018-01-28 11:09:27 +09:00
ids << id
2018-01-22 08:49:27 +09:00
end
2018-03-04 08:45:54 +09:00
youtube_pool << yt_client
2018-02-09 11:19:44 +09:00
2018-01-28 11:09:27 +09:00
loop do
2018-03-04 06:06:14 +09:00
yt_client = get_client(youtube_pool)
2018-02-09 11:19:44 +09:00
2018-01-28 11:09:27 +09:00
if ids.empty?
2018-03-04 08:45:54 +09:00
search(random.base64(3), yt_client) do |id|
2018-01-28 11:09:27 +09:00
ids << id
end
end
2018-01-22 02:04:58 +09:00
2018-01-28 11:09:27 +09:00
if rand(300) < 1
2018-03-04 06:06:14 +09:00
youtube_pool << make_client(YT_URL, CONTEXT)
yt_client = get_client(youtube_pool)
2018-01-28 11:09:27 +09:00
end
2018-01-17 12:42:48 +09:00
2018-01-28 11:09:27 +09:00
begin
id = ids[0]
2018-03-04 08:45:54 +09:00
video = get_video(id, yt_client, PG_DB)
2018-01-28 11:09:27 +09:00
rescue ex
2018-02-27 09:59:02 +09:00
io << id << " : " << ex.message << "\n"
2018-03-04 06:06:14 +09:00
youtube_pool << make_client(YT_URL, CONTEXT)
2018-01-28 11:09:27 +09:00
next
ensure
ids.delete(id)
end
2018-01-21 09:19:55 +09:00
2018-01-28 11:09:27 +09: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 12:46:29 +09:00
end
2018-01-21 09:19:55 +09:00
2018-01-28 11:09:27 +09: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-22 08:49:27 +09:00
ids << rv["id"]
2018-01-28 11:09:27 +09:00
if ids.size == 150
2018-01-22 08:49:27 +09:00
ids.shift
2018-01-22 02:07:32 +09:00
end
end
2018-01-22 02:04:58 +09:00
end
2018-01-21 09:19:55 +09:00
2018-03-04 08:45:54 +09:00
youtube_pool << yt_client
2018-03-04 06:06:14 +09:00
sleep yt_wait.seconds
2018-01-28 11:09:27 +09:00
end
2018-01-17 12:42:48 +09:00
end
2018-01-08 08:18:24 +09:00
end
2018-02-08 13:04:47 +09:00
top_videos = [] of Video
2017-11-23 16:48:55 +09:00
2018-02-08 13:04:47 +09:00
spawn do
loop do
2018-02-09 11:19:44 +09:00
top = rank_videos(PG_DB, 40)
yt_client = get_client(youtube_pool)
2018-02-06 08:56:40 +09:00
if top.size > 0
2018-03-04 23:54:19 +09:00
args = arg_array(top)
else
next
end
2018-02-06 08:56:40 +09:00
2018-02-09 11:19:44 +09:00
videos = [] of Video
2018-02-08 13:04:47 +09: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 11:19:44 +09:00
videos << video
2018-02-08 13:04:47 +09:00
end
2018-02-06 08:56:40 +09:00
end
2018-02-08 13:04:47 +09:00
2018-02-09 11:19:44 +09:00
top_videos = videos
2018-02-08 13:04:47 +09:00
youtube_pool << yt_client
2018-02-08 13:04:47 +09:00
end
end
macro templated(filename)
render "src/views/#{{{filename}}}.ecr", "src/views/layout.ecr"
2018-02-06 08:56:40 +09:00
end
2018-02-08 13:04:47 +09:00
get "/" do |env|
templated "index"
end
get "/watch" do |env|
2018-02-16 03:05:39 +09:00
if env.params.query["v"]?
id = env.params.query["v"]
else
env.redirect "/"
next
end
2018-01-16 11:30:57 +09:00
2018-02-27 09:59:02 +09:00
listen = false
2018-02-12 08:01:32 +09:00
if env.params.query["listen"]? && env.params.query["listen"] == "true"
listen = true
2018-02-14 01:43:15 +09:00
env.params.query.delete_all("listen")
2018-02-12 08:01:32 +09:00
end
2018-03-04 06:06:14 +09:00
yt_client = get_client(youtube_pool)
begin
2018-03-04 06:06:14 +09:00
video = get_video(id, yt_client, PG_DB)
rescue ex
error_message = ex.message
next templated "error"
2018-03-04 08:45:54 +09:00
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-22 02:07:32 +09:00
signature = false
if fmt_stream[0]? && fmt_stream[0]["s"]?
signature = true
end
# We want lowest quality first
fmt_stream.reverse!
2018-01-22 02:07:32 +09:00
2018-01-04 11:06:16 +09:00
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 11:06:16 +09:00
end
2018-01-28 11:09:27 +09: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"])
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-22 02:07:32 +09:00
player_response = JSON.parse(video.info["player_response"])
2018-01-22 02:07:32 +09:00
rating = video.info["avg_rating"].to_f64
2018-01-28 11:09:27 +09:00
engagement = ((video.dislikes.to_f + video.likes.to_f)/video.views * 100)
2018-02-05 10:42:13 +09:00
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 10:42:13 +09:00
else
calculated_rating = 0.0
end
reddit_client = HTTP::Client.new(REDDIT_URL, CONTEXT)
2018-03-05 02:00:35 +09:00
headers = HTTP::Headers{"User-Agent" => "web:invidio.us:v0.1.0 (by /u/omarroth)"}
2018-03-04 06:06:14 +09:00
begin
reddit_comments, reddit_thread = get_reddit_comments(id, reddit_client, headers)
2018-03-04 06:06:14 +09:00
rescue ex
reddit_comments = JSON.parse("[]")
reddit_thread = nil
end
2017-11-23 16:48:55 +09:00
templated "watch"
end
2017-12-31 06:21:43 +09:00
get "/search" do |env|
2018-02-16 03:05:39 +09:00
if env.params.query["q"]?
query = env.params.query["q"]
else
env.redirect "/"
next
end
2018-02-27 09:59:02 +09:00
2018-01-15 12:16:09 +09:00
page = env.params.query["page"]? && env.params.query["page"].to_i? ? env.params.query["page"].to_i : 1
2018-01-08 02:42:24 +09:00
yt_client = get_client(youtube_pool)
2018-01-08 08:18:24 +09:00
html = yt_client.get("https://www.youtube.com/results?q=#{URI.escape(query)}&page=#{page}&sp=EgIQAVAU").body
2018-01-15 12:16:09 +09:00
html = XML.parse_html(html)
2018-01-15 12:16:09 +09:00
videos = Array(Hash(String, String)).new
2017-12-31 06:21:43 +09:00
2018-01-16 13:11:51 +09: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-31 06:21:43 +09:00
2018-01-16 13:11:51 +09:00
link = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/@href))
2018-01-15 12:16:09 +09:00
if link
video["link"] = link.content
2018-01-16 13:11:51 +09:00
else
video["link"] = "#"
2018-01-15 12:16:09 +09:00
end
2017-12-31 06:21:43 +09:00
2018-01-16 13:11:51 +09:00
title = root.xpath_node(%q(div[@class="yt-lockup-content"]/h3/a))
2018-01-15 12:16:09 +09:00
if title
video["title"] = title.content
2018-01-16 13:11:51 +09:00
else
video["title"] = "Something went wrong"
2018-01-15 12:16:09 +09:00
end
2018-01-16 13:11:51 +09: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
video["thumbnail"] = "http://via.placeholder.com/246x138"
end
end
2018-02-27 11:59:18 +09: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 13:11:51 +09:00
videos << video
end
end
youtube_pool << yt_client
2017-12-31 06:21:43 +09:00
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-11 00:15:23 +09:00
error 404 do |env|
error_message = "404 Page not found"
templated "error"
2017-12-31 06:21:43 +09:00
end
error 500 do |env|
2018-02-11 00:15:23 +09:00
error_message = "500 Server error"
templated "error"
2017-12-31 06:21:43 +09:00
end
2017-11-23 16:48:55 +09:00
public_folder "assets"
Kemal.run