invidious/src/invidious.cr

253 行
6.1 KiB
Crystal
Raw 通常表示 履歴

require "http/client"
require "json"
2017-11-23 16:48:55 +09:00
require "kemal"
require "pg"
2017-11-30 12:49:26 +09:00
require "time"
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
PG_DB = DB.open "postgres://kemal:kemal@localhost:5432/invidious"
2018-01-17 12:42:48 +09:00
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
)
POOL = Deque.new(30) do
2018-01-21 09:19:55 +09:00
client = HTTP::Client.new(URL, CONTEXT)
client.connect_timeout = Time::Span.new(0, 0, 0, 5)
client
2018-01-17 12:42:48 +09:00
end
2018-01-22 02:04:58 +09:00
# Refresh connections by crawling YT
2018-01-17 12:42:48 +09:00
spawn do
2018-01-22 02:04:58 +09:00
# Start video
id = Deque.new(10, "_wbqqI0IgY8")
client = get_client
random = Random.new
html = client.get("https://www.youtube.com/results?q=#{random.base64(3)}&sp=EgIQAVAU").body
html = XML.parse_html(html)
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
link = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/@href))
if link
id << link.content.split("=")[1]
id.shift
end
end
end
POOL << client
2018-01-21 09:19:55 +09:00
loop do
2018-01-22 02:04:58 +09:00
if rand(600) < 1
2018-01-17 12:42:48 +09:00
client = get_client
2018-01-21 09:19:55 +09:00
client = HTTP::Client.new(URL, CONTEXT)
client.connect_timeout = Time::Span.new(0, 0, 0, 5)
2018-01-22 02:04:58 +09:00
POOL << client
2018-01-21 09:19:55 +09:00
end
2018-01-22 02:04:58 +09:00
2018-01-17 12:42:48 +09:00
time = Time.now
begin
2018-01-22 02:04:58 +09:00
i = id[rand(id.size)]
video = get_video(i, false)
id.delete(i)
2018-01-21 09:19:55 +09:00
rescue ex
puts ex
next
end
2018-01-19 12:46:29 +09:00
rvs = [] of Hash(String, String)
2018-01-21 09:19:55 +09:00
if video.info.has_key?("rvs")
2018-01-19 12:46:29 +09:00
video.info["rvs"].split(",").each do |rv|
rvs << HTTP::Params.parse(rv).to_h
end
2018-01-21 09:19:55 +09:00
end
2018-01-19 12:46:29 +09:00
rvs.each do |rv|
2018-01-21 09:19:55 +09:00
if rv.has_key?("id")
2018-01-22 02:04:58 +09:00
if !PG_DB.query_one?("SELECT EXISTS (SELECT true FROM videos WHERE id = $1)", rv["id"], as: Bool)
2018-01-19 12:46:29 +09:00
id << rv["id"]
2018-01-22 02:04:58 +09:00
if id.size == 50
2018-01-21 09:19:55 +09:00
id.shift
2018-01-19 12:46:29 +09:00
end
2018-01-17 12:42:48 +09:00
end
2018-01-22 02:04:58 +09:00
end
end
2018-01-21 09:19:55 +09:00
2018-01-22 02:04:58 +09:00
puts "#{Time.now} 200 GET www.youtube.com/watch?v=#{video.id} #{elapsed_text(Time.now - time)}"
2018-01-17 12:42:48 +09:00
end
2018-01-08 08:18:24 +09:00
end
2017-11-23 16:48:55 +09:00
macro templated(filename)
2017-11-30 06:33:46 +09:00
render "src/views/#{{{filename}}}.ecr", "src/views/layout.ecr"
2017-11-23 16:48:55 +09:00
end
class Video
module HTTPParamConverter
def self.from_rs(rs)
HTTP::Params.parse(rs.read(String))
end
end
module XMLConverter
def self.from_rs(rs)
2018-01-15 12:16:09 +09:00
XML.parse_html(rs.read(String))
end
2017-11-30 12:49:26 +09:00
end
def initialize(id, info, html, updated)
@id = id
@info = info
@html = html
@updated = updated
2017-11-30 12:49:26 +09:00
end
def to_a
return [@id, @info, @html, @updated]
end
DB.mapping({
id: String,
info: {
type: HTTP::Params,
default: HTTP::Params.parse(""),
converter: Video::HTTPParamConverter,
},
html: {
type: XML::Node,
2018-01-15 12:16:09 +09:00
default: XML.parse_html(""),
converter: Video::XMLConverter,
},
updated: Time,
})
2017-11-30 12:49:26 +09:00
end
get "/" do |env|
templated "index"
end
get "/watch" do |env|
id = env.params.query["v"]
2018-01-15 12:16:09 +09:00
listen = env.params.query["listen"]? || "false"
2018-01-16 11:30:57 +09:00
env.params.query.delete_all("listen")
begin
video = get_video(id)
rescue ex
error_message = ex.message
next templated "error"
end
fmt_stream = [] of HTTP::Params
video.info["url_encoded_fmt_stream_map"].split(",") do |string|
fmt_stream << HTTP::Params.parse(string)
end
fmt_stream.reverse! # We want lowest quality first
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
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
player_response = JSON.parse(video.info["player_response"])
likes = video.html.xpath_node(%q(//button[@title="I like this"]/span))
2018-01-15 12:16:09 +09:00
likes = likes ? likes.content.delete(",").to_i : 1
dislikes = video.html.xpath_node(%q(//button[@title="I dislike this"]/span))
2018-01-15 12:16:09 +09:00
dislikes = dislikes ? dislikes.content.delete(",").to_i : 1
description = video.html.xpath_node(%q(//p[@id="eow-description"]))
2018-01-15 12:16:09 +09:00
description = description ? description.to_xml : "Could not load description"
views = video.info["view_count"].to_i64
rating = video.info["avg_rating"].to_f64
2018-01-15 12:16:09 +09:00
engagement = ((dislikes.to_f + likes.to_f)/views * 100)
calculated_rating = (likes.to_f/(likes.to_f + dislikes.to_f) * 4 + 1)
2017-11-23 16:48:55 +09:00
templated "watch"
end
2017-12-31 06:21:43 +09:00
get "/search" do |env|
2018-01-08 02:42:24 +09:00
query = env.params.query["q"]
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
2018-01-15 12:16:09 +09:00
client = get_client
2018-01-08 08:18:24 +09:00
2018-01-16 13:11:51 +09:00
html = 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
videos << video
end
end
POOL << client
2017-12-31 06:21:43 +09:00
templated "search"
end
error 404 do |env|
templated "index"
end
error 500 do |env|
templated "index"
end
2017-11-23 16:48:55 +09:00
public_folder "assets"
Kemal.run