invidious/src/invidious.cr

228 行
5.4 KiB
Crystal
Raw 通常表示 履歴

require "http/client"
require "json"
2017-11-23 16:48:55 +09:00
require "kemal"
require "pg"
2017-11-23 16:48:55 +09:00
require "xml"
2017-11-30 12:49:26 +09:00
require "time"
2017-11-30 06:33:46 +09:00
PG_DB = DB.open "postgres://kemal:kemal@localhost:5432/invidious"
CONTEXT = OpenSSL::SSL::Context::Client.insecure
2018-01-08 08:18:24 +09:00
POOL = [] of HTTP::Client
10.times do
POOL << HTTP::Client.new("www.youtube.com", 443, CONTEXT)
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
# See http://www.evanmiller.org/how-not-to-sort-by-average-rating.html
def ci_lower_bound(pos, n)
if n == 0
return 0
end
2017-11-23 16:48:55 +09:00
# z value here represents a confidence level of 0.95
z = 1.96
phat = 1.0*pos/n
return (phat + z*z/(2*n) - z * Math.sqrt((phat*(1 - phat) + z*z/(4*n))/n))/(1 + z*z/n)
end
2018-01-15 12:16:09 +09:00
def get_client
2018-01-08 08:18:24 +09:00
while POOL.empty?
sleep rand(0..10).milliseconds
end
2018-01-15 12:16:09 +09:00
return POOL.pop
end
def fetch_video(id)
# Grab connection from pool
client = get_client
# client = HTTP::Client.new("www.youtube.com", 443, CONTEXT)
2018-01-15 12:16:09 +09:00
info = client.get("/get_video_info?video_id=#{id}&el=detailpage&ps=default&eurl=&gl=US&hl=en").body
info = HTTP::Params.parse(info)
html = client.get("/watch?v=#{id}").body
2018-01-15 12:16:09 +09:00
html = XML.parse_html(html)
if info["reason"]?
raise info["reason"]
end
# Return connection to pool
POOL << client
2018-01-08 08:18:24 +09:00
video = Video.new(id, info, html, Time.now)
2018-01-08 08:18:24 +09:00
return video
end
2018-01-08 02:42:24 +09:00
def get_video(id, refresh = true)
if PG_DB.query_one?("SELECT EXISTS (SELECT true FROM videos WHERE id = $1)", id, as: Bool)
video = PG_DB.query_one("SELECT * FROM videos WHERE id = $1", id, as: Video)
# If record was last updated more than 5 hours ago, refresh (expire param in response lasts for 6 hours)
2018-01-08 02:42:24 +09:00
if refresh && Time.now - video.updated > Time::Span.new(0, 5, 0, 0)
video = fetch_video(id)
2018-01-08 02:42:24 +09:00
PG_DB.exec("UPDATE videos SET info = $2, html = $3, updated = $4 WHERE id = $1", video.to_a)
end
else
video = fetch_video(id)
PG_DB.exec("INSERT INTO videos VALUES ($1, $2, $3, $4)", video.to_a)
end
return video
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
speed = env.params.query["speed"]? && env.params.query["speed"].to_f? ? env.params.query["speed"].to_f : 1
env.params.query.delete_all("listen")
begin
video = get_video(id)
rescue ex
error_message = ex.message
next templated "error"
end
2018-01-15 12:16:09 +09:00
player_response = JSON.parse(video.info["player_response"])
2018-01-04 11:06:16 +09:00
fmt_stream = [] of HTTP::Params
video.info["url_encoded_fmt_stream_map"].split(",") do |string|
fmt_stream << HTTP::Params.parse(string)
end
2017-11-23 16:48:55 +09:00
fmt_stream.reverse! # We want lowest quality first
2018-01-04 11:06:16 +09:00
adaptive_fmts = [] of HTTP::Params
video.info["adaptive_fmts"].split(",") do |string|
2018-01-04 11:06:16 +09:00
adaptive_fmts << HTTP::Params.parse(string)
end
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)
2018-01-15 12:16:09 +09:00
rvs = [] of Hash(String, String)
video.info["rvs"].split(",").each do |rv|
rvs << HTTP::Params.parse(rv).to_h
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-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-15 12:16:09 +09:00
html = client.get("https://www.youtube.com/results?q=#{URI.escape(query)}&page=#{page}").body
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-15 12:16:09 +09:00
html.xpath_nodes(%q(//div[contains(@class,"yt-lockup-video")]/div)).each do |item|
video = {} of String => String
2017-12-31 06:21:43 +09:00
2018-01-15 12:16:09 +09:00
link = item.xpath_node(%q(div/div[@class="yt-lockup-content"]/h3/a/@href))
if link
video["link"] = link.content
else
link = item.xpath_node(%q(div[@class="yt-lockup-content"]/h3/a/@href))
if link
video["link"] = link.content
end
end
2017-12-31 06:21:43 +09:00
2018-01-15 12:16:09 +09:00
title = item.xpath_node(%q(div/div[@class="yt-lockup-content"]/h3/a))
if title
video["title"] = title.content
else
title = item.xpath_node(%q(div[@class="yt-lockup-content"]/h3/a))
if title
video["title"] = title.content
end
end
2018-01-15 12:16:09 +09:00
videos << video
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