invidious/src/invidious.cr

2542 行
77 KiB
Crystal
Raw 通常表示 履歴

# "Invidious" (which is what YouTube should be)
2018-01-29 02:32:40 +09: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/>.
2018-07-19 04:26:02 +09:00
require "crypto/bcrypt/password"
2018-03-17 09:36:49 +09:00
require "detect_language"
2017-11-23 16:48:55 +09:00
require "kemal"
2018-07-19 04:26:02 +09:00
require "openssl/hmac"
require "option_parser"
require "pg"
2018-01-17 05:02:35 +09:00
require "xml"
2018-03-10 03:42:23 +09:00
require "yaml"
2018-07-06 21:59:56 +09:00
require "./invidious/*"
2017-11-30 06:33:46 +09:00
2018-07-19 04:26:02 +09:00
CONFIG = Config.from_yaml(File.read("config/config.yml"))
2018-07-22 12:35:28 +09:00
HMAC_KEY = CONFIG.hmac_key || Random::Secure.random_bytes(32)
2018-03-10 03:42:23 +09:00
2018-05-02 08:51:16 +09:00
crawl_threads = CONFIG.crawl_threads
channel_threads = CONFIG.channel_threads
2018-04-29 00:50:02 +09:00
video_threads = CONFIG.video_threads
Kemal.config.extra_options do |parser|
parser.banner = "Usage: invidious [arguments]"
2018-05-02 08:51:16 +09:00
parser.on("-t THREADS", "--crawl-threads=THREADS", "Number of threads for crawling (default: #{crawl_threads})") do |number|
begin
2018-05-02 08:51:16 +09:00
crawl_threads = number.to_i
rescue ex
puts "THREADS must be integer"
exit
end
end
parser.on("-c THREADS", "--channel-threads=THREADS", "Number of threads for refreshing channels (default: #{channel_threads})") do |number|
begin
channel_threads = number.to_i
rescue ex
puts "THREADS must be integer"
exit
end
end
2018-04-29 00:50:02 +09:00
parser.on("-v THREADS", "--video-threads=THREADS", "Number of threads for refreshing videos (default: #{video_threads})") do |number|
begin
video_threads = number.to_i
rescue ex
puts "THREADS must be integer"
exit
2018-04-29 23:40:33 +09:00
end
2018-04-29 00:50:02 +09:00
end
2018-02-14 01:43:15 +09:00
end
2018-02-12 07:48:27 +09:00
Kemal::CLI.new
2018-03-10 03:42:23 +09: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
YT_URL = URI.parse("https://www.youtube.com")
REDDIT_URL = URI.parse("https://api.reddit.com")
2018-03-17 01:40:29 +09:00
LOGIN_URL = URI.parse("https://accounts.google.com")
2018-03-05 13:25:03 +09:00
2018-05-02 08:51:16 +09:00
crawl_threads.times do
2018-01-28 11:09:27 +09:00
spawn do
ids = Deque(String).new
random = Random.new
2018-01-22 02:04:58 +09:00
2018-04-28 23:22:06 +09:00
client = make_client(YT_URL)
2018-03-05 13:25:03 +09:00
search(random.base64(3), client) do |id|
2018-01-28 11:09:27 +09:00
ids << id
2018-01-22 08:49:27 +09:00
end
2018-02-09 11:19:44 +09:00
2018-01-28 11:09:27 +09:00
loop do
2018-07-26 22:41:23 +09:00
client = make_client(YT_URL)
2018-01-28 11:09:27 +09:00
if ids.empty?
2018-03-05 13:25:03 +09:00
search(random.base64(3), 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
begin
id = ids[0]
2018-03-05 13:25:03 +09:00
video = get_video(id, client, PG_DB)
2018-01-28 11:09:27 +09:00
rescue ex
2018-03-05 13:25:03 +09:00
STDOUT << id << " : " << ex.message << "\n"
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-04-28 23:26:03 +09:00
Fiber.yield
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-03-26 12:18:29 +09:00
channel_threads.times do |i|
spawn do
loop do
query = "SELECT id FROM channels ORDER BY updated \
LIMIT (SELECT count(*)/$2 FROM channels) \
OFFSET (SELECT count(*)*$1/$2 FROM channels)"
PG_DB.query(query, i, channel_threads) do |rs|
2018-03-26 12:18:29 +09:00
rs.each do
2018-04-28 23:22:06 +09:00
client = make_client(YT_URL)
2018-04-12 07:37:06 +09:00
begin
id = rs.read(String)
2018-07-27 06:23:55 +09:00
channel = fetch_channel(id, client, PG_DB, false)
2018-07-27 07:17:16 +09:00
PG_DB.exec("UPDATE channels SET updated = $1 WHERE id = $2", Time.now, id)
2018-04-12 07:37:06 +09:00
rescue ex
STDOUT << id << " : " << ex.message << "\n"
next
end
2018-03-26 12:18:29 +09:00
end
end
2018-07-23 01:09:43 +09:00
2018-04-28 23:26:03 +09:00
Fiber.yield
2018-03-26 12:18:29 +09:00
end
end
end
2018-04-29 00:50:02 +09:00
video_threads.times do |i|
spawn do
loop do
query = "SELECT id FROM videos ORDER BY updated \
LIMIT (SELECT count(*)/$2 FROM videos) \
OFFSET (SELECT count(*)*$1/$2 FROM videos)"
PG_DB.query(query, i, video_threads) do |rs|
rs.each do
client = make_client(YT_URL)
begin
id = rs.read(String)
video = get_video(id, client, PG_DB)
rescue ex
STDOUT << id << " : " << ex.message << "\n"
client = make_client(YT_URL)
next
end
end
end
2018-07-23 01:09:43 +09:00
2018-04-29 00:50:02 +09:00
Fiber.yield
end
end
end
2018-02-08 13:04:47 +09:00
top_videos = [] of Video
spawn do
2018-03-17 09:36:49 +09:00
if CONFIG.dl_api_key
DetectLanguage.configure do |config|
config.api_key = CONFIG.dl_api_key.not_nil!
end
filter = true
2018-03-17 09:36:49 +09:00
end
2018-04-28 23:27:05 +09:00
filter ||= false
2018-02-08 13:04:47 +09:00
loop do
2018-03-20 02:35:35 +09:00
begin
2018-04-28 23:22:06 +09:00
top = rank_videos(PG_DB, 40, filter, YT_URL)
2018-03-20 02:35:35 +09:00
rescue ex
next
end
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-03-17 13:01:35 +09:00
top.each do |id|
2018-04-28 23:22:06 +09:00
client = make_client(YT_URL)
2018-03-17 13:57:31 +09:00
begin
videos << get_video(id, client, PG_DB)
rescue ex
2018-03-20 02:35:35 +09:00
next
2018-03-17 13:57:31 +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-03-06 09:34:26 +09:00
Fiber.yield
2018-02-08 13:04:47 +09:00
end
end
# Refresh decrypt function
decrypt_function = [] of {name: String, value: Int32}
spawn do
loop do
client = make_client(YT_URL)
2018-07-29 23:48:03 +09:00
begin
decrypt_function = update_decrypt_function(client)
rescue ex
end
Fiber.yield
end
end
2018-03-25 12:56:41 +09:00
before_all do |env|
2018-07-17 01:24:24 +09:00
if env.request.cookies.has_key? "SID"
headers = HTTP::Headers.new
headers["Cookie"] = env.request.headers["Cookie"]
2018-04-01 09:09:27 +09:00
sid = env.request.cookies["SID"].value
2018-07-06 08:43:26 +09:00
2018-07-19 04:26:02 +09:00
# Invidious users only have SID
if !env.request.cookies.has_key? "SSID"
user = PG_DB.query_one?("SELECT * FROM users WHERE id = $1", sid, as: User)
2018-04-14 11:32:14 +09:00
2018-07-19 04:26:02 +09:00
if user
env.set "user", user
end
else
begin
client = make_client(YT_URL)
user = get_user(sid, client, headers, PG_DB, false)
env.set "user", user
rescue ex
end
2018-07-17 02:50:41 +09:00
end
2018-04-14 11:32:14 +09:00
end
2018-03-23 02:44:36 +09:00
end
2018-02-08 13:04:47 +09:00
get "/" do |env|
user = env.get? "user"
if user
user = user.as(User)
if user.preferences.redirect_feed
env.redirect "/feed/subscriptions"
end
end
templated "index"
end
get "/watch" do |env|
2018-07-17 01:24:24 +09:00
user = env.get? "user"
if user
user = user.as(User)
preferences = user.preferences
subscriptions = user.subscriptions.as(Array(String))
2018-07-06 08:43:26 +09:00
end
subscriptions ||= [] of String
2018-02-16 03:05:39 +09:00
if env.params.query["v"]?
id = env.params.query["v"]
else
2018-04-02 00:09:08 +09:00
next env.redirect "/"
2018-02-16 03:05:39 +09:00
end
2018-01-16 11:30:57 +09:00
autoplay = env.params.query["autoplay"]?.try &.to_i
video_loop = env.params.query["video_loop"]?.try &.to_i
if preferences
autoplay ||= preferences.autoplay.to_unsafe
video_loop ||= preferences.video_loop.to_unsafe
end
autoplay ||= 0
video_loop ||= 0
autoplay = autoplay == 1
video_loop = video_loop == 1
if env.params.query["start"]?
video_start = decode_time(env.params.query["start"])
end
if env.params.query["t"]?
video_start = decode_time(env.params.query["t"])
end
2018-05-30 08:40:29 +09:00
video_start ||= 0
2018-04-06 10:46:32 +09:00
if env.params.query["end"]?
video_end = decode_time(env.params.query["end"])
end
2018-05-30 08:40:29 +09:00
video_end ||= -1
2018-04-06 10:46:32 +09:00
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
listen ||= false
2018-04-28 23:22:06 +09:00
client = make_client(YT_URL)
begin
2018-03-31 23:51:14 +09:00
video = get_video(id, client, PG_DB)
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|
2018-03-15 08:05:19 +09:00
if !string.empty?
2018-03-15 08:06:21 +09:00
fmt_stream << HTTP::Params.parse(string)
end
2018-03-15 08:05:19 +09:00
end
2018-01-22 02:07:32 +09:00
2018-05-30 08:40:36 +09:00
fmt_stream.each { |s| s.add("label", "#{s["quality"]} - #{s["type"].split(";")[0].split("/")[1]}") }
fmt_stream = fmt_stream.uniq { |s| s["label"] }
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
2018-03-14 08:37:56 +09:00
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
adaptive_fmts.each do |fmt|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"], decrypt_function)
end
fmt_stream.each do |fmt|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"], decrypt_function)
end
end
2018-03-14 08:37:56 +09:00
audio_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("audio") ? s : nil }
audio_streams.sort_by! { |s| s["bitrate"].to_i }.reverse!
2018-05-30 08:40:36 +09:00
audio_streams.each do |stream|
stream["bitrate"] = (stream["bitrate"].to_f64/1000).to_i.to_s
2018-03-14 08:37:56 +09:00
end
2018-07-23 01:09:43 +09:00
player_response = JSON.parse(video.info["player_response"])
if player_response["captions"]?
captions = player_response["captions"]["playerCaptionsTracklistRenderer"]["captionTracks"]?.try &.as_a
2018-07-23 01:09:43 +09:00
end
captions ||= [] of JSON::Any
2018-07-23 01:09:43 +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
end
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
end
2018-04-28 23:27:05 +09:00
calculated_rating ||= 0.0
2018-04-08 10:09:20 +09:00
if video.info["ad_slots"]?
ad_slots = video.info["ad_slots"].split(",")
ad_slots = ad_slots.join(", ")
end
if video.info["enabled_engage_types"]?
engage_types = video.info["enabled_engage_types"].split(",")
engage_types = engage_types.join(", ")
end
if video.info["ad_tag"]?
ad_tag = URI.parse(video.info["ad_tag"])
ad_query = HTTP::Params.parse(ad_tag.query.not_nil!)
ad_category = URI.unescape(ad_query["iu"])
ad_category = ad_category.lstrip("/4061/").split(".")[-1]
ad_query = HTTP::Params.parse(ad_query["scp"])
k2 = URI.unescape(ad_query["k2"]).split(",")
k2 = k2.join(", ")
end
2018-03-07 13:00:35 +09:00
video.description = fill_links(video.description, "https", "www.youtube.com")
video.description = add_alt_links(video.description)
2018-07-23 22:07:24 +09:00
description = video.description.gsub("<br>", " ")
description = description.gsub("<br/>", " ")
2018-07-23 23:16:33 +09:00
description = XML.parse_html(description).content[0..200].gsub('"', "&quot;").gsub("\n", " ").strip(" ")
if description.empty?
description = " "
end
2018-07-23 22:07:24 +09:00
2018-04-06 10:54:56 +09:00
thumbnail = "https://i.ytimg.com/vi/#{id}/mqdefault.jpg"
2018-03-08 07:48:26 +09:00
2017-11-23 16:48:55 +09:00
templated "watch"
end
get "/api/v1/captions/:id" do |env|
2018-07-23 01:09:43 +09:00
id = env.params.url["id"]
client = make_client(YT_URL)
begin
video = get_video(id, client, PG_DB)
rescue ex
2018-07-23 01:17:29 +09:00
halt env, status_code: 403
2018-07-23 01:09:43 +09:00
end
player_response = JSON.parse(video.info["player_response"])
if !player_response["captions"]?
env.response.content_type = "application/json"
next {
"captions" => [] of String,
}.to_json
2018-07-23 01:09:43 +09:00
end
tracks = player_response["captions"]["playerCaptionsTracklistRenderer"]["captionTracks"]?.try &.as_a
tracks ||= [] of JSON::Any
2018-07-23 01:09:43 +09:00
label = env.params.query["label"]?
if !label
env.response.content_type = "application/json"
response = JSON.build do |json|
json.object do
json.field "captions" do
json.array do
tracks.each do |caption|
json.object do
json.field "label", caption["name"]["simpleText"]
json.field "languageCode", caption["languageCode"]
end
end
end
end
end
end
next response
end
2018-07-23 01:09:43 +09:00
track = tracks.select { |tracks| tracks["name"]["simpleText"] == label }
env.response.content_type = "text/vtt"
if track.empty?
2018-07-24 05:09:11 +09:00
halt env, status_code: 403
else
2018-07-23 01:09:43 +09:00
track = track[0]
end
track_xml = client.get(track["baseUrl"].as_s).body
track_xml = XML.parse(track_xml)
webvtt = <<-END_VTT
WEBVTT
Kind: captions
Language: #{track["languageCode"]}
END_VTT
track_xml.xpath_nodes("//transcript/text").each do |node|
start_time = node["start"].to_f.seconds
2018-07-30 00:47:22 +09:00
duration = node["dur"]?.try &.to_f.seconds
duration ||= start_time
end_time = start_time + duration
2018-07-23 01:09:43 +09:00
start_time = "#{start_time.hours.to_s.rjust(2, '0')}:#{start_time.minutes.to_s.rjust(2, '0')}:#{start_time.seconds.to_s.rjust(2, '0')}.#{start_time.milliseconds.to_s.rjust(3, '0')}"
end_time = "#{end_time.hours.to_s.rjust(2, '0')}:#{end_time.minutes.to_s.rjust(2, '0')}:#{end_time.seconds.to_s.rjust(2, '0')}.#{end_time.milliseconds.to_s.rjust(3, '0')}"
text = HTML.unescape(node.content)
if md = text.match(/(?<name>.*) : (?<text>.*)/)
text = "<v #{md["name"]}>#{md["text"]}</v>"
end
webvtt = webvtt + <<-END_CUE
#{start_time} --> #{end_time}
#{text}
END_CUE
end
webvtt
end
get "/api/v1/comments/:id" do |env|
id = env.params.url["id"]
source = env.params.query["source"]?
source ||= "youtube"
format = env.params.query["format"]?
2018-07-28 23:49:58 +09:00
format ||= "json"
2018-07-22 10:56:11 +09:00
if source == "youtube"
client = make_client(YT_URL)
headers = HTTP::Headers.new
html = client.get("/watch?v=#{id}&disable_polymer=1")
headers["cookie"] = html.cookies.add_request_headers(headers)["cookie"]
headers["content-type"] = "application/x-www-form-urlencoded"
headers["x-client-data"] = "CIi2yQEIpbbJAQipncoBCNedygEIqKPKAQ=="
headers["x-spf-previous"] = "https://www.youtube.com/watch?v=#{id}"
headers["x-spf-referer"] = "https://www.youtube.com/watch?v=#{id}"
headers["x-youtube-client-name"] = "1"
headers["x-youtube-client-version"] = "2.20180719"
body = html.body
session_token = body.match(/'XSRF_TOKEN': "(?<session_token>[A-Za-z0-9\_\-\=]+)"/).not_nil!["session_token"]
ctoken = body.match(/'COMMENTS_TOKEN': "(?<ctoken>[^"]+)"/)
if !ctoken
env.response.content_type = "application/json"
next {"comments" => [] of String}.to_json
end
ctoken = ctoken["ctoken"]
itct = body.match(/itct=(?<itct>[^"]+)"/).not_nil!["itct"]
if env.params.query["continuation"]?
continuation = env.params.query["continuation"]
ctoken = continuation
else
continuation = ctoken
end
post_req = {
"session_token" => session_token,
}
post_req = HTTP::Params.encode(post_req)
response = client.post("/comment_service_ajax?action_get_comments=1&pbj=1&ctoken=#{ctoken}&continuation=#{continuation}&itct=#{itct}", headers, post_req).body
response = JSON.parse(response)
response = response["response"]["continuationContents"]
if response["commentRepliesContinuation"]?
body = response["commentRepliesContinuation"]
else
body = response["itemSectionContinuation"]
end
contents = body["contents"]?
if !contents
env.response.content_type = "application/json"
if format == "json"
next {"comments" => [] of String}.to_json
else
next {"content_html" => ""}.to_json
end
end
2018-07-22 10:56:11 +09:00
comments = JSON.build do |json|
json.object do
2018-07-23 02:15:18 +09:00
if body["header"]?
comment_count = body["header"]["commentsHeaderRenderer"]["countText"]["simpleText"].as_s.delete("Comments,").to_i
2018-07-23 02:15:18 +09:00
json.field "commentCount", comment_count
end
2018-07-22 10:56:11 +09:00
json.field "comments" do
json.array do
contents.as_a.each do |item|
json.object do
if !response["commentRepliesContinuation"]?
item = item["commentThreadRenderer"]
end
if item["replies"]?
item_replies = item["replies"]["commentRepliesRenderer"]
end
if !response["commentRepliesContinuation"]?
item_comment = item["comment"]["commentRenderer"]
else
item_comment = item["commentRenderer"]
end
content_text = item_comment["contentText"]["simpleText"]?.try &.as_s.rchop('\ufeff')
content_text ||= item_comment["contentText"]["runs"].as_a.map { |comment| comment["text"] }
.join("").rchop('\ufeff')
2018-07-22 10:56:11 +09:00
json.field "author", item_comment["authorText"]["simpleText"]
2018-07-24 05:09:11 +09:00
json.field "authorThumbnails" do
json.array do
item_comment["authorThumbnail"]["thumbnails"].as_a.each do |thumbnail|
json.object do
json.field "url", thumbnail["url"]
json.field "width", thumbnail["width"]
json.field "height", thumbnail["height"]
end
end
2018-07-22 10:56:11 +09:00
end
end
json.field "authorId", item_comment["authorEndpoint"]["browseEndpoint"]["browseId"]
json.field "authorUrl", item_comment["authorEndpoint"]["browseEndpoint"]["canonicalBaseUrl"]
json.field "content", content_text
json.field "published", item_comment["publishedTimeText"]["runs"][0]["text"]
json.field "likeCount", item_comment["likeCount"]
json.field "commentId", item_comment["commentId"]
if item_replies && !response["commentRepliesContinuation"]?
2018-07-30 00:02:41 +09:00
reply_count = item_replies["moreText"]["simpleText"].as_s.match(/View all (?<count>\d+) replies/)
.try &.["count"].to_i
2018-07-22 10:56:11 +09:00
reply_count ||= 1
continuation = item_replies["continuations"].as_a[0]["nextContinuationData"]["continuation"].as_s
json.field "replies" do
json.object do
json.field "replyCount", reply_count
json.field "continuation", continuation
end
end
end
end
end
end
end
if body["continuations"]?
continuation = body["continuations"][0]["nextContinuationData"]["continuation"]
json.field "continuation", continuation
end
end
end
env.response.content_type = "application/json"
2018-07-28 23:49:58 +09:00
if format == "json"
next comments
else
comments = JSON.parse(comments)
content_html = template_youtube_comments(comments)
{"content_html" => content_html}.to_json
end
2018-07-22 10:56:11 +09:00
elsif source == "reddit"
client = make_client(REDDIT_URL)
headers = HTTP::Headers{"User-Agent" => "web:invidio.us:v0.1.0 (by /u/omarroth)"}
begin
2018-07-22 10:56:11 +09:00
comments, reddit_thread = get_reddit_comments(id, client, headers)
2018-07-28 23:49:58 +09:00
content_html = template_reddit_comments(comments)
2018-07-22 10:56:11 +09:00
content_html = fill_links(content_html, "https", "www.reddit.com")
content_html = add_alt_links(content_html)
rescue ex
reddit_thread = nil
2018-07-22 10:56:11 +09:00
content_html = ""
end
2018-07-22 10:56:11 +09:00
if !reddit_thread
halt env, status_code: 404
end
2018-07-22 10:56:11 +09:00
env.response.content_type = "application/json"
{"title" => reddit_thread.title,
"permalink" => reddit_thread.permalink,
"content_html" => content_html}.to_json
end
end
get "/api/v1/videos/:id" do |env|
2018-07-24 05:09:11 +09:00
id = env.params.url["id"]
client = make_client(YT_URL)
begin
video = get_video(id, client, PG_DB)
rescue ex
halt env, status_code: 403
end
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
end
fmt_stream = [] of HTTP::Params
video.info["url_encoded_fmt_stream_map"].split(",") do |string|
if !string.empty?
fmt_stream << HTTP::Params.parse(string)
end
end
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
adaptive_fmts.each do |fmt|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"], decrypt_function)
end
fmt_stream.each do |fmt|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"], decrypt_function)
end
end
player_response = JSON.parse(video.info["player_response"])
if player_response["captions"]?
captions = player_response["captions"]["playerCaptionsTracklistRenderer"]["captionTracks"]?.try &.as_a
end
captions ||= [] of JSON::Any
env.response.content_type = "application/json"
video_info = JSON.build do |json|
json.object do
json.field "title", video.title
json.field "videoId", video.id
json.field "videoThumbnails" do
json.object do
qualities = [{name: "default", url: "default", width: 120, height: 90},
{name: "high", url: "hqdefault", width: 480, height: 360},
{name: "medium", url: "mqdefault", width: 320, height: 180},
]
qualities.each do |quality|
json.field quality[:name] do
json.object do
json.field "url", "https://i.ytimg.com/vi/#{id}/#{quality["url"]}.jpg"
json.field "width", quality[:width]
json.field "height", quality[:height]
end
end
end
end
end
description = video.description.gsub("<br>", "\n")
description = description.gsub("<br/>", "\n")
description = XML.parse_html(description)
json.field "description", description.content
json.field "descriptionHtml", video.description
json.field "published", video.published.epoch
json.field "keywords" do
json.array do
video.info["keywords"].split(",").each { |keyword| json.string keyword }
end
end
json.field "viewCount", video.views
json.field "likeCount", video.likes
json.field "dislikeCount", video.dislikes
json.field "isFamilyFriendly", video.is_family_friendly
json.field "allowedRegions", video.allowed_regions
json.field "genre", video.genre
2018-07-24 05:09:11 +09:00
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
json.field "lengthSeconds", video.info["length_seconds"].to_i
if video.info["allow_ratings"]?
json.field "allowRatings", video.info["allow_ratings"] == "1"
else
json.field "allowRatings", false
end
json.field "rating", video.info["avg_rating"].to_f32
if video.info["is_listed"]?
json.field "isListed", video.info["is_listed"] == "1"
end
fmt_list = video.info["fmt_list"].split(",").map { |fmt| fmt.split("/")[1] }
fmt_list = Hash.zip(fmt_list.map { |fmt| fmt[0] }, fmt_list.map { |fmt| fmt[1] })
json.field "adaptiveFormats" do
json.array do
adaptive_fmts.each_with_index do |adaptive_fmt, i|
json.object do
json.field "index", adaptive_fmt["index"]
json.field "bitrate", adaptive_fmt["bitrate"]
json.field "init", adaptive_fmt["init"]
json.field "url", adaptive_fmt["url"]
json.field "itag", adaptive_fmt["itag"]
json.field "type", adaptive_fmt["type"]
json.field "clen", adaptive_fmt["clen"]
json.field "lmt", adaptive_fmt["lmt"]
json.field "projectionType", adaptive_fmt["projection_type"]
fmt_info = itag_to_metadata(adaptive_fmt["itag"])
json.field "container", fmt_info["ext"]
json.field "encoding", fmt_info["vcodec"]? || fmt_info["acodec"]
if fmt_info["fps"]?
json.field "fps", fmt_info["fps"]
end
if fmt_info["height"]?
json.field "qualityLabel", "#{fmt_info["height"]}p"
json.field "resolution", "#{fmt_info["height"]}p"
if fmt_info["width"]?
json.field "size", "#{fmt_info["width"]}x#{fmt_info["height"]}"
end
end
end
end
end
end
json.field "formatStreams" do
json.array do
fmt_stream.each do |fmt|
json.object do
json.field "url", fmt["url"]
json.field "itag", fmt["itag"]
json.field "type", fmt["type"]
json.field "quality", fmt["quality"]
fmt_info = itag_to_metadata(fmt["itag"])
json.field "container", fmt_info["ext"]
json.field "encoding", fmt_info["vcodec"]? || fmt_info["acodec"]
if fmt_info["fps"]?
json.field "fps", fmt_info["fps"]
end
if fmt_info["height"]?
json.field "qualityLabel", "#{fmt_info["height"]}p"
json.field "resolution", "#{fmt_info["height"]}p"
if fmt_info["width"]?
json.field "size", "#{fmt_info["width"]}x#{fmt_info["height"]}"
end
end
end
end
end
end
json.field "captions" do
json.array do
captions.each do |caption|
json.object do
json.field "label", caption["name"]["simpleText"]
json.field "languageCode", caption["languageCode"]
end
end
end
end
json.field "recommendedVideos" do
json.array do
video.info["rvs"].split(",").each do |rv|
rv = HTTP::Params.parse(rv)
if rv["id"]?
json.object do
json.field "videoId", rv["id"]
json.field "title", rv["title"]
json.field "videoThumbnails" do
json.object do
qualities = [{name: "default", url: "default", width: 120, height: 90},
{name: "high", url: "hqdefault", width: 480, height: 360},
{name: "medium", url: "mqdefault", width: 320, height: 180},
]
qualities.each do |quality|
json.field quality[:name] do
json.object do
json.field "url", "https://i.ytimg.com/vi/#{rv["id"]}/#{quality["url"]}.jpg"
2018-07-24 05:09:11 +09:00
json.field "width", quality[:width]
json.field "height", quality[:height]
end
end
end
end
end
json.field "author", rv["author"]
json.field "lengthSeconds", rv["length_seconds"]
json.field "viewCountText", rv["short_view_count_text"].rchop(" views")
end
end
end
end
end
end
end
video_info
end
2018-07-27 11:42:12 +09:00
get "/api/v1/trending" do |env|
client = make_client(YT_URL)
trending = client.get("/feed/trending?disable_polymer=1").body
trending = XML.parse_html(trending)
videos = JSON.build do |json|
json.array do
trending.xpath_nodes(%q(//ul/li[@class="expanded-shelf-content-item-wrapper"])).each do |node|
length_seconds = node.xpath_node(%q(.//span[@class="video-time"])).not_nil!.content
minutes, seconds = length_seconds.split(":")
length_seconds = minutes.to_i * 60 + seconds.to_i
video = node.xpath_node(%q(.//h3/a)).not_nil!
title = video.content
id = video["href"].lchop("/watch?v=")
channel = node.xpath_node(%q(.//div[contains(@class, "yt-lockup-byline")]/a)).not_nil!
author = channel.content
author_url = channel["href"]
published, views = node.xpath_nodes(%q(.//ul[@class="yt-lockup-meta-info"]/li))
views = views.content.rchop(" views").delete(",").to_i
descriptionHtml = node.xpath_node(%q(.//div[contains(@class, "yt-lockup-description")]))
if !descriptionHtml
description = ""
descriptionHtml = ""
else
descriptionHtml = descriptionHtml.to_s
description = descriptionHtml.gsub("<br>", "\n")
description = description.gsub("<br/>", "\n")
description = XML.parse_html(description).content.strip("\n ")
end
2018-07-27 11:42:12 +09:00
2018-07-28 21:50:22 +09:00
published = published.content.split(" ")[-3..-1].join(" ")
published = decode_date(published)
2018-07-27 11:42:12 +09:00
json.object do
json.field "title", title
json.field "videoId", id
json.field "videoThumbnails" do
json.object do
qualities = [{name: "default", url: "default", width: 120, height: 90},
{name: "high", url: "hqdefault", width: 480, height: 360},
{name: "medium", url: "mqdefault", width: 320, height: 180},
]
qualities.each do |quality|
json.field quality[:name] do
json.object do
json.field "url", "https://i.ytimg.com/vi/#{id}/#{quality["url"]}.jpg"
json.field "width", quality[:width]
json.field "height", quality[:height]
end
end
end
end
end
json.field "lengthSeconds", length_seconds
json.field "views", views
json.field "author", author
json.field "authorUrl", author_url
json.field "published", published.epoch
json.field "description", description
2018-07-27 11:42:12 +09:00
json.field "descriptionHtml", descriptionHtml
end
end
end
end
env.response.content_type = "application/json"
videos
end
2018-07-27 23:49:34 +09:00
get "/api/v1/top" do |env|
videos = JSON.build do |json|
json.array do
top_videos.each do |video|
json.object do
json.field "title", video.title
json.field "videoId", video.id
json.field "videoThumbnails" do
json.object do
qualities = [{name: "default", url: "default", width: 120, height: 90},
{name: "high", url: "hqdefault", width: 480, height: 360},
{name: "medium", url: "mqdefault", width: 320, height: 180},
]
qualities.each do |quality|
json.field quality[:name] do
json.object do
json.field "url", "https://i.ytimg.com/vi/#{video.id}/#{quality["url"]}.jpg"
json.field "width", quality[:width]
json.field "height", quality[:height]
end
end
end
end
end
json.field "lengthSeconds", video.info["length_seconds"].to_i
json.field "views", video.views
json.field "author", video.author
json.field "authorUrl", "/channel/#{video.ucid}"
json.field "published", video.published.epoch
description = video.description.gsub("<br>", "\n")
description = description.gsub("<br/>", "\n")
description = XML.parse_html(description)
json.field "description", description.content
json.field "descriptionHtml", video.description
end
end
end
end
env.response.content_type = "application/json"
videos
end
get "/api/v1/channels/:ucid" do |env|
ucid = env.params.url["ucid"]
client = make_client(YT_URL)
channel = get_channel(ucid, client, PG_DB, pull_all_videos: false)
# TODO: Integrate this into `get_channel` function
# We can't get everything from RSS feed, so we get it from the channel page
channel_html = client.get("/channel/#{ucid}/about?disable_polymer=1").body
channel_html = XML.parse_html(channel_html)
banner = channel_html.xpath_node(%q(//div[@id="gh-banner"]/style)).not_nil!.content
banner = "https:" + banner.match(/background-image: url\((?<url>[^)]+)\)/).not_nil!["url"]
author_url = channel_html.xpath_node(%q(//a[@class="channel-header-profile-image-container spf-link"])).not_nil!["href"]
author_thumbnail = channel_html.xpath_node(%q(//img[@class="channel-header-profile-image"])).not_nil!["src"]
description = channel_html.xpath_node(%q(//meta[@itemprop="description"])).not_nil!["content"]
paid = channel_html.xpath_node(%q(//meta[@itemprop="paid"])).not_nil!["content"] == "True"
is_family_friendly = channel_html.xpath_node(%q(//meta[@itemprop="isFamilyFriendly"])).not_nil!["content"] == "True"
allowed_regions = channel_html.xpath_node(%q(//meta[@itemprop="regionsAllowed"])).not_nil!["content"].split(",")
sub_count, total_views, joined = channel_html.xpath_nodes(%q(//span[@class="about-stat"]))
sub_count = sub_count.content.rchop(" subscribers").delete(",").to_i64
total_views = total_views.content.rchop(" views").lchop("").delete(",").to_i64
joined = Time.parse(joined.content.lchop("Joined "), "%b %-d, %Y", Time::Location.local)
2018-07-30 00:02:41 +09:00
latest_videos = PG_DB.query_all("SELECT * FROM channel_videos WHERE ucid = $1 ORDER BY published DESC LIMIT 15",
channel.id, as: ChannelVideo)
channel_info = JSON.build do |json|
json.object do
json.field "author", channel.author
json.field "authorId", channel.id
json.field "authorUrl", author_url
json.field "authorBanners" do
json.array do
qualities = [{width: 2560, height: 424},
{width: 2120, height: 351},
{width: 1060, height: 175}]
qualities.each do |quality|
json.object do
json.field "url", banner.gsub("=w1060", "=w#{quality[:width]}")
json.field "width", quality[:width]
json.field "height", quality[:height]
end
end
json.object do
json.field "url", banner.rchop("=w1060-fcrop64=1,00005a57ffffa5a8-nd-c0xffffffff-rj-k-no")
json.field "width", 512
json.field "height", 288
end
end
end
json.field "authorThumbnails" do
json.array do
qualities = [32, 48, 76, 100, 512]
qualities.each do |quality|
json.object do
json.field "url", author_thumbnail.gsub("/s100-", "/s#{quality}-")
json.field "width", quality
json.field "height", quality
end
end
end
end
json.field "subCount", sub_count
json.field "totalViews", total_views
json.field "joined", joined.epoch
json.field "paid", paid
json.field "isFamilyFriendly", is_family_friendly
json.field "description", description
json.field "allowedRegions", allowed_regions
json.field "latestVideos" do
json.array do
latest_videos.each do |video|
json.object do
json.field "title", video.title
json.field "videoId", video.id
json.field "published", video.published.epoch
json.field "videoThumbnails" do
json.object do
qualities = [{name: "default", url: "default", width: 120, height: 90},
{name: "high", url: "hqdefault", width: 480, height: 360},
{name: "medium", url: "mqdefault", width: 320, height: 180},
]
qualities.each do |quality|
json.field quality[:name] do
json.object do
json.field "url", "https://i.ytimg.com/vi/#{video.id}/#{quality["url"]}.jpg"
json.field "width", quality[:width]
json.field "height", quality[:height]
end
end
end
end
end
end
end
end
end
end
end
env.response.content_type = "application/json"
channel_info
end
get "/api/v1/channels/:ucid/videos" do |env|
ucid = env.params.url["ucid"]
page = env.params.query["page"]?
page ||= 1
url = produce_videos_url(ucid, page)
client = make_client(YT_URL)
response = client.get(url)
json = JSON.parse(response.body)
2018-07-30 11:01:28 +09:00
if !json["content_html"]?
env.response.content_type = "application/json"
next {"error" => "No videos or nonexistent channel"}.to_json
end
content_html = json["content_html"].as_s
if content_html.empty?
2018-07-30 11:01:28 +09:00
env.response.content_type = "application/json"
next Hash(String, String).new.to_json
end
document = XML.parse_html(content_html)
videos = JSON.build do |json|
json.array do
document.xpath_nodes(%q(//li[contains(@class, "feed-item-container")])).each do |item|
2018-07-28 22:24:53 +09:00
anchor = item.xpath_node(%q(.//h3[contains(@class,"yt-lockup-title")]/a)).not_nil!
title = anchor.content.strip
video_id = anchor["href"].lchop("/watch?v=")
view_count = item.xpath_node(%q(.//div[@class="yt-lockup-meta"]/ul/li[2])).not_nil!
view_count = view_count.content.rchop(" views").delete(",").to_i
descriptionHtml = item.xpath_node(%q(.//div[contains(@class, "yt-lockup-description")]))
if !descriptionHtml
description = ""
descriptionHtml = ""
else
descriptionHtml = descriptionHtml.to_s
description = descriptionHtml.gsub("<br>", "\n")
description = description.gsub("<br/>", "\n")
description = XML.parse_html(description).content.strip("\n ")
end
published = item.xpath_node(%q(.//div[@class="yt-lockup-meta"]/ul/li[1]))
if !published
next
end
published = published.content
published = decode_date(published)
length_seconds = item.xpath_node(%q(.//span[@class="video-time"]/span)).not_nil!.content
length_seconds = length_seconds.split(":").map { |a| a.to_i }
length_seconds = [0] * (3 - length_seconds.size) + length_seconds
length_seconds = Time::Span.new(length_seconds[0], length_seconds[1], length_seconds[2])
json.object do
json.field "title", title
json.field "videoId", video_id
json.field "videoThumbnails" do
json.object do
qualities = [{name: "default", url: "default", width: 120, height: 90},
{name: "high", url: "hqdefault", width: 480, height: 360},
{name: "medium", url: "mqdefault", width: 320, height: 180},
]
qualities.each do |quality|
json.field quality[:name] do
json.object do
json.field "url", "https://i.ytimg.com/vi/#{video_id}/#{quality["url"]}.jpg"
json.field "width", quality[:width]
json.field "height", quality[:height]
end
end
end
end
end
json.field "description", description
json.field "descriptionHtml", descriptionHtml
json.field "viewCount", view_count
json.field "published", published.epoch
json.field "lengthSeconds", length_seconds.total_seconds.to_i
end
end
end
end
env.response.content_type = "application/json"
videos
end
2018-07-14 22:36:31 +09:00
get "/embed/:id" do |env|
if env.params.url["id"]?
id = env.params.url["id"]
else
next env.redirect "/"
end
if env.params.query["start"]?
video_start = decode_time(env.params.query["start"])
end
if env.params.query["t"]?
video_start = decode_time(env.params.query["t"])
end
video_start ||= 0
if env.params.query["end"]?
video_end = decode_time(env.params.query["end"])
end
video_end ||= -1
if env.params.query["listen"]? && env.params.query["listen"] == "true"
listen = true
env.params.query.delete_all("listen")
end
listen ||= false
raw = env.params.query["raw"]? && env.params.query["raw"].to_i
raw ||= 0
raw = raw == 1
quality = env.params.query["quality"]? && env.params.query["quality"]
quality ||= "hd720"
autoplay = env.params.query["autoplay"]?.try &.to_i
autoplay ||= 0
controls = env.params.query["controls"]?.try &.to_i
controls ||= 1
video_loop = env.params.query["loop"]?.try &.to_i
video_loop ||= 0
2018-07-14 22:36:31 +09:00
client = make_client(YT_URL)
begin
video = get_video(id, client, PG_DB)
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|
if !string.empty?
fmt_stream << HTTP::Params.parse(string)
end
end
fmt_stream.each { |s| s.add("label", "#{s["quality"]} - #{s["type"].split(";")[0].split("/")[1]}") }
fmt_stream = fmt_stream.uniq { |s| s["label"] }
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
end
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
adaptive_fmts.each do |fmt|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"], decrypt_function)
2018-07-14 22:36:31 +09:00
end
fmt_stream.each do |fmt|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"], decrypt_function)
2018-07-14 22:36:31 +09:00
end
end
audio_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("audio") ? s : nil }
audio_streams.sort_by! { |s| s["bitrate"].to_i }.reverse!
audio_streams.each do |stream|
stream["bitrate"] = (stream["bitrate"].to_f64/1000).to_i.to_s
end
if raw
url = fmt_stream[0]["url"]
fmt_stream.each do |fmt|
if fmt["label"].split(" - ")[0] == quality
url = fmt["url"]
end
end
next env.redirect url
end
2018-07-14 22:36:31 +09:00
thumbnail = "https://i.ytimg.com/vi/#{id}/mqdefault.jpg"
rendered "embed"
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
2018-04-02 00:09:08 +09:00
next env.redirect "/"
2018-02-16 03:05:39 +09:00
end
2018-02-27 09:59:02 +09:00
2018-03-15 08:06:21 +09:00
page = env.params.query["page"]?.try &.to_i
page ||= 1
2018-01-08 02:42:24 +09:00
2018-04-28 23:22:06 +09:00
client = make_client(YT_URL)
2018-01-08 08:18:24 +09:00
2018-03-05 13:25:03 +09:00
html = client.get("/results?q=#{URI.escape(query)}&page=#{page}&sp=EgIQAVAU").body
2018-01-15 12:16:09 +09:00
html = XML.parse_html(html)
videos = [] of ChannelVideo
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
id = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/@href))
if id
id = id.content.lchop("/watch?v=")
2018-01-15 12:16:09 +09:00
end
2018-04-28 23:27:05 +09:00
id ||= ""
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
2018-06-02 07:26:00 +09:00
title = title.content
2018-01-15 12:16:09 +09:00
end
2018-06-02 07:26:00 +09:00
title ||= ""
2018-01-15 12:16:09 +09:00
2018-02-27 11:59:18 +09:00
author = root.xpath_node(%q(div[@class="yt-lockup-content"]/div/a))
if author
2018-06-02 07:26:00 +09:00
ucid = author["href"].rpartition("/")[-1]
author = author.content
2018-02-27 11:59:18 +09:00
end
2018-06-02 07:26:00 +09:00
author ||= ""
ucid ||= ""
2018-02-27 11:59:18 +09:00
video = ChannelVideo.new(id, title, Time.now, Time.now, ucid, author)
2018-01-16 13:11:51 +09:00
videos << video
end
end
2017-12-31 06:21:43 +09:00
templated "search"
end
2018-03-17 01:40:29 +09:00
get "/login" do |env|
2018-07-19 04:26:02 +09:00
user = env.get? "user"
if user
next env.redirect "/feed/subscriptions"
end
2018-04-08 11:36:09 +09:00
referer = env.request.headers["referer"]?
referer ||= "/feed/subscriptions"
2018-07-19 04:26:02 +09:00
account_type = env.params.query["type"]?
account_type ||= "invidious"
2018-07-19 04:26:02 +09:00
if account_type == "invidious"
captcha = generate_captcha(HMAC_KEY)
end
2018-04-29 23:40:33 +09:00
tfa = env.params.query["tfa"]?
tfa ||= false
2018-04-18 05:58:00 +09:00
if referer.ends_with? "/login"
referer = "/feed/subscriptions"
end
2018-07-17 05:12:10 +09:00
if referer.size > 64
2018-04-28 23:27:05 +09:00
referer = "/feed/subscriptions"
end
2018-03-17 01:40:29 +09:00
templated "login"
end
# See https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/youtube.py#L79
post "/login" do |env|
2018-04-08 11:36:09 +09:00
referer = env.params.query["referer"]?
referer ||= "/feed/subscriptions"
2018-03-17 01:40:29 +09:00
email = env.params.body["email"]?
password = env.params.body["password"]?
2018-07-19 04:26:02 +09:00
account_type = env.params.query["type"]?
account_type ||= "google"
if account_type == "google"
tfa_code = env.params.body["tfa"]?.try &.lchop("G-")
begin
client = make_client(LOGIN_URL)
headers = HTTP::Headers.new
headers["Content-Type"] = "application/x-www-form-urlencoded;charset=utf-8"
headers["Google-Accounts-XSRF"] = "1"
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
login_page = client.get("/ServiceLogin")
headers = login_page.cookies.add_request_headers(headers)
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
login_page = XML.parse_html(login_page.body)
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
inputs = {} of String => String
login_page.xpath_nodes(%q(//input[@type="submit"])).each do |node|
name = node["id"]? || node["name"]?
name ||= ""
value = node["value"]?
value ||= ""
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
if name != "" && value != ""
inputs[name] = value
end
2018-03-17 01:40:29 +09:00
end
2018-07-19 04:26:02 +09:00
login_page.xpath_nodes(%q(//input[@type="hidden"])).each do |node|
name = node["id"]? || node["name"]?
name ||= ""
value = node["value"]?
value ||= ""
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
if name != "" && value != ""
inputs[name] = value
end
2018-03-17 01:40:29 +09:00
end
2018-07-19 04:26:02 +09:00
lookup_req = %(["#{email}",null,[],null,"US",null,null,2,false,true,[null,null,[2,1,null,1,"https://accounts.google.com/ServiceLogin?passive=1209600&continue=https%3A%2F%2Faccounts.google.com%2FManageAccount&followup=https%3A%2F%2Faccounts.google.com%2FManageAccount",null,[],4,[]],1,[null,null,[]],null,null,null,true],"#{email}"])
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
lookup_results = client.post("/_/signin/sl/lookup", headers, login_req(inputs, lookup_req))
headers = lookup_results.cookies.add_request_headers(headers)
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
lookup_results = lookup_results.body
lookup_results = lookup_results[5..-1]
lookup_results = JSON.parse(lookup_results)
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
user_hash = lookup_results[0][2]
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
challenge_req = %(["#{user_hash}",null,1,null,[1,null,null,null,["#{password}",null,true]],[null,null,[2,1,null,1,"https://accounts.google.com/ServiceLogin?passive=1209600&continue=https%3A%2F%2Faccounts.google.com%2FManageAccount&followup=https%3A%2F%2Faccounts.google.com%2FManageAccount",null,[],4,[]],1,[null,null,[]],null,null,null,true]])
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
challenge_results = client.post("/_/signin/sl/challenge", headers, login_req(inputs, challenge_req))
headers = challenge_results.cookies.add_request_headers(headers)
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
challenge_results = challenge_results.body
challenge_results = challenge_results[5..-1]
challenge_results = JSON.parse(challenge_results)
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
headers["Cookie"] = URI.unescape(headers["Cookie"])
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
if challenge_results[0][-1]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
error_message = "Incorrect password"
next templated "error"
end
2018-07-19 04:26:02 +09:00
if challenge_results[0][-1][0].as_a?
# Prefer Authenticator app and SMS over unsupported protocols
if challenge_results[0][-1][0][0][8] != 6 || challenge_results[0][-1][0][0][8] != 9
tfa = challenge_results[0][-1][0].as_a.select { |auth_type| auth_type[8] == 6 || auth_type[8] == 9 }[0]
select_challenge = "[#{challenge_results[0][-1][0].as_a.index(tfa).not_nil!}]"
tl = challenge_results[1][2]
tfa = client.post("/_/signin/selectchallenge?TL=#{tl}", headers, login_req(inputs, select_challenge)).body
tfa = tfa[5..-1]
tfa = JSON.parse(tfa)[0][-1]
else
tfa = challenge_results[0][-1][0][0]
end
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
if tfa[2] == "TWO_STEP_VERIFICATION"
if tfa[5] == "QUOTA_EXCEEDED"
error_message = "Quota exceeded, try again in a few hours"
next templated "error"
end
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
if !tfa_code
next env.redirect "/login?tfa=true&type=google"
2018-07-19 04:26:02 +09:00
end
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
tl = challenge_results[1][2]
request_type = tfa[8]
case request_type
when 6
# Authenticator app
tfa_req = %(["#{user_hash}",null,2,null,[6,null,null,null,null,["#{tfa_code}",false]]])
when 9
# Voice or text message
tfa_req = %(["#{user_hash}",null,2,null,[9,null,null,null,null,null,null,null,[null,"#{tfa_code}",false,2]]])
else
error_message = "Unable to login, make sure two-factor authentication (Authenticator or SMS) is enabled."
next templated "error"
end
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
challenge_results = client.post("/_/signin/challenge?hl=en&TL=#{tl}", headers, login_req(inputs, tfa_req))
headers = challenge_results.cookies.add_request_headers(headers)
challenge_results = challenge_results.body
challenge_results = challenge_results[5..-1]
challenge_results = JSON.parse(challenge_results)
if challenge_results[0][-1]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
error_message = "Invalid TFA code"
next templated "error"
end
end
2018-07-19 04:26:02 +09:00
end
login_res = challenge_results[0][13][2].to_s
login = client.get(login_res, headers)
headers = login.cookies.add_request_headers(headers)
login = client.get(login.headers["Location"], headers)
headers = HTTP::Headers.new
headers = login.cookies.add_request_headers(headers)
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
sid = login.cookies["SID"].value
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
client = make_client(YT_URL)
user = get_user(sid, client, headers, PG_DB)
# We are now logged in
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
host = URI.parse(env.request.headers["Host"]).host
login.cookies.each do |cookie|
if Kemal.config.ssl || CONFIG.https_only
2018-07-19 04:26:02 +09:00
cookie.secure = true
else
cookie.secure = false
2018-04-29 23:40:33 +09:00
end
2018-07-19 04:26:02 +09:00
cookie.extension = cookie.extension.not_nil!.gsub(".youtube.com", host)
cookie.extension = cookie.extension.not_nil!.gsub("Secure; ", "")
2018-04-29 23:40:33 +09:00
end
2018-07-19 04:26:02 +09:00
login.cookies.add_response_headers(env.response.headers)
env.redirect referer
rescue ex
error_message = "Login failed. This may be because two-factor authentication is not enabled on your account."
next templated "error"
2018-04-29 23:40:33 +09:00
end
2018-07-19 04:26:02 +09:00
elsif account_type == "invidious"
challenge_response = env.params.body["challenge_response"]?
token = env.params.body["token"]?
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
action = env.params.body["action"]?
action ||= "signin"
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
if !email
error_message = "User ID is a required field"
next templated "error"
end
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
if !password
error_message = "Password is a required field"
next templated "error"
end
2018-04-08 11:36:09 +09:00
2018-07-19 04:26:02 +09:00
if !challenge_response || !token
error_message = "CAPTCHA is a required field"
next templated "error"
end
2018-03-26 12:21:24 +09:00
2018-07-19 04:26:02 +09:00
challenge_response = challenge_response.lstrip('0')
if OpenSSL::HMAC.digest(:sha256, HMAC_KEY, challenge_response) == Base64.decode(token)
else
error_message = "Invalid CAPTCHA response"
next templated "error"
end
2018-04-08 11:36:09 +09:00
2018-07-19 04:26:02 +09:00
if action == "signin"
user = PG_DB.query_one?("SELECT * FROM users WHERE email = $1 AND password IS NOT NULL", email, as: User)
if !user
error_message = "Invalid username or password"
2018-07-19 04:26:02 +09:00
next templated "error"
end
if !user.password
error_message = "Please sign in using 'Sign in with Google'"
2018-07-19 04:26:02 +09:00
next templated "error"
end
if Crypto::Bcrypt::Password.new(user.password.not_nil!) == password
sid = Base64.encode(Random::Secure.random_bytes(50))
PG_DB.exec("UPDATE users SET id = $1 WHERE email = $2", sid, email)
if Kemal.config.ssl || CONFIG.https_only
2018-07-19 04:26:02 +09:00
secure = true
else
secure = false
end
2018-04-08 11:36:09 +09:00
2018-07-30 00:02:41 +09:00
env.response.cookies["SID"] = HTTP::Cookie.new(name: "SID", value: sid, expires: Time.now + 2.years,
secure: secure, http_only: true)
2018-07-19 04:26:02 +09:00
else
error_message = "Invalid username or password"
2018-07-19 04:26:02 +09:00
next templated "error"
end
elsif action == "register"
user = PG_DB.query_one?("SELECT * FROM users WHERE email = $1 AND password IS NOT NULL", email, as: User)
if user
error_message = "Please sign in"
2018-07-19 04:26:02 +09:00
next templated "error"
end
sid = Base64.encode(Random::Secure.random_bytes(50))
user = create_user(sid, email, password)
2018-03-17 01:40:29 +09:00
2018-07-19 04:26:02 +09:00
user_array = user.to_a
user_array[5] = user_array[5].to_json
args = arg_array(user_array)
PG_DB.exec("INSERT INTO users VALUES (#{args})", user_array)
2018-03-25 12:38:35 +09:00
if Kemal.config.ssl || CONFIG.https_only
2018-07-19 04:26:02 +09:00
secure = true
else
2018-07-19 04:26:02 +09:00
secure = false
end
2018-07-30 00:02:41 +09:00
env.response.cookies["SID"] = HTTP::Cookie.new(name: "SID", value: sid, expires: Time.now + 2.years,
secure: secure, http_only: true)
2018-03-23 02:44:36 +09:00
end
2018-04-08 11:36:09 +09:00
env.redirect referer
2018-03-17 01:40:29 +09:00
end
end
2018-03-25 12:38:35 +09:00
get "/signout" do |env|
2018-04-08 11:36:09 +09:00
referer = env.request.headers["referer"]?
referer ||= "/"
2018-03-23 02:44:36 +09:00
env.request.cookies.each do |cookie|
2018-07-06 09:50:22 +09:00
cookie.expires = Time.new(1990, 1, 1)
2018-03-23 02:44:36 +09:00
end
env.request.cookies.add_response_headers(env.response.headers)
2018-04-08 11:36:09 +09:00
env.redirect referer
2018-03-23 02:44:36 +09:00
end
2018-07-17 01:24:24 +09:00
get "/preferences" do |env|
user = env.get? "user"
referer = env.request.headers["referer"]?
referer ||= "/preferences"
if referer.size > 64
referer = "/preferences"
end
if user
user = user.as(User)
templated "preferences"
else
env.redirect referer
end
end
post "/preferences" do |env|
user = env.get? "user"
referer = env.params.query["referer"]?
referer ||= "/preferences"
if user
user = user.as(User)
video_loop = env.params.body["video_loop"]?.try &.as(String)
video_loop ||= "off"
video_loop = video_loop == "on"
autoplay = env.params.body["autoplay"]?.try &.as(String)
autoplay ||= "off"
autoplay = autoplay == "on"
2018-07-17 01:57:52 +09:00
speed = env.params.body["speed"]?.try &.as(String).to_f
speed ||= 1.0
2018-07-17 01:24:24 +09:00
quality = env.params.body["quality"]?.try &.as(String)
quality ||= "hd720"
volume = env.params.body["volume"]?.try &.as(String).to_i
volume ||= 100
2018-07-28 23:49:58 +09:00
comments = env.params.body["comments"]?
comments ||= "youtube"
redirect_feed = env.params.body["redirect_feed"]?.try &.as(String)
redirect_feed ||= "off"
redirect_feed = redirect_feed == "on"
2018-07-17 01:24:24 +09:00
dark_mode = env.params.body["dark_mode"]?.try &.as(String)
dark_mode ||= "off"
dark_mode = dark_mode == "on"
2018-07-27 02:09:29 +09:00
thin_mode = env.params.body["thin_mode"]?.try &.as(String)
thin_mode ||= "off"
thin_mode = thin_mode == "on"
2018-07-17 09:31:49 +09:00
max_results = env.params.body["max_results"]?.try &.as(String).to_i
max_results ||= 40
sort = env.params.body["sort"]?.try &.as(String)
sort ||= "published"
latest_only = env.params.body["latest_only"]?.try &.as(String)
latest_only ||= "off"
latest_only = latest_only == "on"
2018-07-17 01:24:24 +09:00
preferences = {
"video_loop" => video_loop,
"autoplay" => autoplay,
"speed" => speed,
"quality" => quality,
"volume" => volume,
"comments" => comments,
"redirect_feed" => redirect_feed,
"dark_mode" => dark_mode,
"thin_mode" => thin_mode,
"max_results" => max_results,
"sort" => sort,
"latest_only" => latest_only,
2018-07-17 01:24:24 +09:00
}.to_json
PG_DB.exec("UPDATE users SET preferences = $1 WHERE email = $2", preferences, user.email)
end
env.redirect referer
end
2018-03-25 12:38:35 +09:00
# Get subscriptions for authorized user
get "/feed/subscriptions" do |env|
2018-07-17 01:24:24 +09:00
user = env.get? "user"
if user
user = user.as(User)
preferences = user.preferences
2018-03-25 12:38:35 +09:00
# Refresh account
headers = HTTP::Headers.new
headers["Cookie"] = env.request.headers["Cookie"]
2018-07-19 04:26:02 +09:00
if !user.password
client = make_client(YT_URL)
user = get_user(user.id, client, headers, PG_DB)
end
max_results = preferences.max_results
2018-07-21 01:19:49 +09:00
max_results ||= env.params.query["max_results"]?.try &.to_i
2018-07-17 09:31:49 +09:00
max_results ||= 40
2018-03-25 12:38:35 +09:00
page = env.params.query["page"]?.try &.to_i
page ||= 1
if max_results < 0
limit = nil
offset = (page - 1) * 1
else
limit = max_results
offset = (page - 1) * max_results
end
if preferences.latest_only
args = arg_array(user.subscriptions)
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM channel_videos WHERE \
ucid IN (#{args}) ORDER BY ucid, published DESC", user.subscriptions, as: ChannelVideo)
videos.sort_by! { |video| video.published }.reverse!
else
args = arg_array(user.subscriptions, 3)
videos = PG_DB.query_all("SELECT * FROM channel_videos WHERE ucid IN (#{args}) \
ORDER BY published DESC LIMIT $1 OFFSET $2", [limit, offset] + user.subscriptions, as: ChannelVideo)
end
case preferences.sort
when "alphabetically"
videos.sort_by! { |video| video.title }
when "alphabetically - reverse"
videos.sort_by! { |video| video.title }.reverse!
when "channel name"
videos.sort_by! { |video| video.author }
when "channel name - reverse"
videos.sort_by! { |video| video.author }.reverse!
end
# TODO: Add option to disable picking out notifications from regular feed
2018-07-30 00:02:41 +09:00
notifications = PG_DB.query_one("SELECT notifications FROM users WHERE email = $1", user.email,
as: Array(String))
notifications = videos.select { |v| notifications.includes? v.id }
2018-05-08 12:04:58 +09:00
videos = videos - notifications
if !limit
videos = videos[0..max_results]
end
2018-04-01 09:09:27 +09:00
2018-07-30 00:02:41 +09:00
PG_DB.exec("UPDATE users SET notifications = $1, updated = $2 WHERE id = $3", [] of String, Time.now,
user.id)
user.notifications = [] of String
env.set "user", user
2018-03-25 12:38:35 +09:00
templated "subscriptions"
else
env.redirect "/"
end
end
2018-07-28 22:24:53 +09:00
get "/feed/channel/:ucid" do |env|
ucid = env.params.url["ucid"]
url = produce_videos_url(ucid)
client = make_client(YT_URL)
response = client.get(url)
channel = get_channel(ucid, client, PG_DB, pull_all_videos: false)
json = JSON.parse(response.body)
2018-07-30 11:01:28 +09:00
if !json["content_html"]?
error_message = "This channel does not exist or has no videos."
next templated "error"
end
2018-07-28 22:24:53 +09:00
content_html = json["content_html"].as_s
if content_html.empty?
halt env, status_code: 403
end
document = XML.parse_html(content_html)
if Kemal.config.ssl || CONFIG.https_only
scheme = "https://"
else
scheme = "http://"
end
host = env.request.headers["Host"]
path = env.request.path
feed = XML.build(indent: " ", encoding: "UTF-8") do |xml|
xml.element("feed", "xmlns:yt": "http://www.youtube.com/xml/schemas/2015",
"xmlns:media": "http://search.yahoo.com/mrss/", xmlns: "http://www.w3.org/2005/Atom") do
xml.element("link", rel: "self", href: "#{scheme}#{host}#{path}")
xml.element("id") { xml.text "yt:channel:#{ucid}" }
xml.element("yt:channelId") { xml.text ucid }
xml.element("title") { xml.text channel.author }
xml.element("link", rel: "alternate", href: "#{scheme}#{host}/channel/#{ucid}")
xml.element("author") do
xml.element("name") { xml.text channel.author }
xml.element("uri") { xml.text "#{scheme}#{host}/channel/#{ucid}" }
end
document.xpath_nodes(%q(//li[contains(@class, "feed-item-container")])).each do |item|
anchor = item.xpath_node(%q(.//h3[contains(@class,"yt-lockup-title")]/a)).not_nil!
title = anchor.content.strip
video_id = anchor["href"].lchop("/watch?v=")
view_count = item.xpath_node(%q(.//div[@class="yt-lockup-meta"]/ul/li[2])).not_nil!
view_count = view_count.content.rchop(" views").delete(",").to_i
descriptionHtml = item.xpath_node(%q(.//div[contains(@class, "yt-lockup-description")]))
if !descriptionHtml
description = ""
descriptionHtml = ""
else
descriptionHtml = descriptionHtml.to_s
description = descriptionHtml.gsub("<br>", "\n")
description = description.gsub("<br/>", "\n")
description = XML.parse_html(description).content.strip("\n ")
end
2018-07-28 22:24:53 +09:00
published = item.xpath_node(%q(.//div[@class="yt-lockup-meta"]/ul/li[1]))
if !published
next
end
published = published.content
published = decode_date(published)
xml.element("entry") do
xml.element("id") { xml.text "yt:video:#{video_id}" }
xml.element("yt:videoId") { xml.text video_id }
xml.element("yt:channelId") { xml.text ucid }
xml.element("title") { xml.text title }
xml.element("link", rel: "alternate", href: "#{scheme}#{host}/watch?v=#{video_id}")
xml.element("author") do
xml.element("name") { xml.text channel.author }
xml.element("uri") { xml.text "#{scheme}#{host}/channel/#{ucid}" }
end
xml.element("published") { xml.text published.to_s("%Y-%m-%dT%H:%M:%S%:z") }
xml.element("media:group") do
xml.element("media:title") { xml.text title }
2018-07-30 00:02:41 +09:00
xml.element("media:thumbnail", url: "https://i.ytimg.com/vi/#{video_id}/hqdefault.jpg",
width: "480", height: "360")
2018-07-28 22:24:53 +09:00
xml.element("media:description") { xml.text description }
end
xml.element("media:community") do
xml.element("media:statistics", views: view_count)
end
end
end
end
end
env.response.content_type = "text/xml"
feed
end
2018-07-21 01:19:49 +09:00
get "/feed/private" do |env|
token = env.params.query["token"]?
if !token
halt env, status_code: 401
end
user = PG_DB.query_one?("SELECT * FROM users WHERE token = $1", token, as: User)
if !user
halt env, status_code: 401
end
max_results = env.params.query["max_results"]?.try &.to_i
max_results ||= 40
page = env.params.query["page"]?.try &.to_i
page ||= 1
if max_results < 0
limit = nil
offset = (page - 1) * 1
else
limit = max_results
offset = (page - 1) * max_results
end
latest_only = env.params.query["latest_only"]?.try &.to_i
latest_only ||= 0
latest_only = latest_only == 1
if latest_only
args = arg_array(user.subscriptions)
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM channel_videos WHERE \
ucid IN (#{args}) ORDER BY ucid, published DESC", user.subscriptions, as: ChannelVideo)
videos.sort_by! { |video| video.published }.reverse!
else
args = arg_array(user.subscriptions, 3)
videos = PG_DB.query_all("SELECT * FROM channel_videos WHERE ucid IN (#{args}) \
ORDER BY published DESC LIMIT $1 OFFSET $2", [limit, offset] + user.subscriptions, as: ChannelVideo)
end
sort = env.params.query["sort"]?
sort ||= "published"
case sort
when "alphabetically"
videos.sort_by! { |video| video.title }
2018-07-21 01:24:13 +09:00
when "reverse_alphabetically"
2018-07-21 01:19:49 +09:00
videos.sort_by! { |video| video.title }.reverse!
2018-07-21 01:24:13 +09:00
when "channel_name"
2018-07-21 01:19:49 +09:00
videos.sort_by! { |video| video.author }
2018-07-21 01:24:13 +09:00
when "reverse_channel_name"
2018-07-21 01:19:49 +09:00
videos.sort_by! { |video| video.author }.reverse!
end
if Kemal.config.ssl || CONFIG.https_only
2018-07-21 01:19:49 +09:00
scheme = "https://"
else
scheme = "http://"
end
if !limit
videos = videos[0..max_results]
end
host = env.request.headers["Host"]
path = env.request.path
query = env.request.query.not_nil!
feed = XML.build(indent: " ", encoding: "UTF-8") do |xml|
2018-07-30 00:02:41 +09:00
xml.element("feed", xmlns: "http://www.w3.org/2005/Atom", "xmlns:media": "http://search.yahoo.com/mrss/",
"xml:lang": "en-US") do
2018-07-21 01:19:49 +09:00
xml.element("link", "type": "text/html", rel: "alternate", href: "#{scheme}#{host}/feed/subscriptions")
xml.element("link", "type": "application/atom+xml", rel: "self", href: "#{scheme}#{host}#{path}?#{query}")
xml.element("title") { xml.text "Invidious Private Feed for #{user.email}" }
videos.each do |video|
xml.element("entry") do
xml.element("id") { xml.text "yt:video:#{video.id}" }
xml.element("yt:videoId") { xml.text video.id }
xml.element("yt:channelId") { xml.text video.ucid }
xml.element("title") { xml.text video.title }
xml.element("link", rel: "alternate", href: "#{scheme}#{host}/watch?v=#{video.id}")
xml.element("author") do
xml.element("name") { xml.text video.author }
xml.element("uri") { xml.text "#{scheme}#{host}/channel/#{video.ucid}" }
end
xml.element("published") { xml.text video.published.to_s("%Y-%m-%dT%H:%M:%S%:z") }
xml.element("updated") { xml.text video.updated.to_s("%Y-%m-%dT%H:%M:%S%:z") }
xml.element("media:group") do
xml.element("media:title") { xml.text video.title }
2018-07-30 00:02:41 +09:00
xml.element("media:thumbnail", url: "https://i.ytimg.com/vi/#{video.id}/hqdefault.jpg",
width: "480", height: "360")
2018-07-21 01:19:49 +09:00
end
end
end
end
end
env.response.content_type = "application/atom+xml"
feed
end
# Function that is useful if you have multiple channels that don't have
2018-05-30 08:40:29 +09:00
# the bell dinged. Request parameters are fairly self-explanatory,
# receive_all_updates = true and receive_post_updates = true will ding all
# channels. Calling /modify_notifications without any arguments will
# request all notifications from all channels.
# /modify_notifications?receive_all_updates=false&receive_no_updates=false
# will "unding" all subscriptions.
get "/modify_notifications" do |env|
2018-07-17 01:24:24 +09:00
user = env.get? "user"
referer = env.request.headers["referer"]?
referer ||= "/"
2018-07-17 01:24:24 +09:00
if user
user = user.as(User)
channel_req = {} of String => String
channel_req["receive_all_updates"] = env.params.query["receive_all_updates"]? || "true"
channel_req["receive_no_updates"] = env.params.query["receive_no_updates"]? || ""
channel_req["receive_post_updates"] = env.params.query["receive_post_updates"]? || "true"
channel_req.reject! { |k, v| v != "true" && v != "false" }
headers = HTTP::Headers.new
headers["Cookie"] = env.request.headers["Cookie"]
2018-04-28 23:22:06 +09:00
client = make_client(YT_URL)
subs = client.get("/subscription_manager?disable_polymer=1", headers)
headers["Cookie"] += "; " + subs.cookies.add_request_headers(headers)["Cookie"]
match = subs.body.match(/'XSRF_TOKEN': "(?<session_token>[A-Za-z0-9\_\-\=]+)"/)
if match
session_token = match["session_token"]
else
next env.redirect referer
end
channel_req["session_token"] = session_token
headers["content-type"] = "application/x-www-form-urlencoded"
subs = XML.parse_html(subs.body)
subs.xpath_nodes(%q(//a[@class="subscription-title yt-uix-sessionlink"]/@href)).each do |channel|
2018-03-31 23:51:14 +09:00
channel_id = channel.content.lstrip("/channel/").not_nil!
channel_req["channel_id"] = channel_id
2018-07-30 00:02:41 +09:00
client.post("/subscription_ajax?action_update_subscription_preferences=1", headers,
HTTP::Params.encode(channel_req)).body
end
end
env.redirect referer
end
2018-07-06 09:48:55 +09:00
get "/subscription_manager" do |env|
2018-07-17 01:24:24 +09:00
user = env.get? "user"
if !user
2018-07-06 09:48:55 +09:00
next env.redirect "/"
end
2018-07-17 01:24:24 +09:00
user = user.as(User)
2018-07-19 04:26:02 +09:00
if !user.password
# Refresh account
headers = HTTP::Headers.new
headers["Cookie"] = env.request.headers["Cookie"]
2018-07-19 04:26:02 +09:00
client = make_client(YT_URL)
user = get_user(user.id, client, headers, PG_DB)
end
2018-07-17 01:24:24 +09:00
subscriptions = user.subscriptions
2018-07-06 09:48:55 +09:00
client = make_client(YT_URL)
subscriptions = subscriptions.map do |ucid|
get_channel(ucid, client, PG_DB, false)
end
subscriptions.sort_by! { |channel| channel.author.downcase }
templated "subscription_manager"
end
2018-03-31 23:51:14 +09:00
get "/subscription_ajax" do |env|
2018-07-17 01:24:24 +09:00
user = env.get? "user"
2018-03-31 23:51:14 +09:00
referer = env.request.headers["referer"]?
referer ||= "/"
2018-07-17 01:24:24 +09:00
if user
user = user.as(User)
2018-03-31 23:51:14 +09:00
if env.params.query["action_create_subscription_to_channel"]?
action = "action_create_subscription_to_channel"
elsif env.params.query["action_remove_subscriptions"]?
action = "action_remove_subscriptions"
else
2018-04-02 00:09:08 +09:00
next env.redirect referer
2018-03-31 23:51:14 +09:00
end
channel_id = env.params.query["c"]?
channel_id ||= ""
2018-07-19 04:26:02 +09:00
if !user.password
headers = HTTP::Headers.new
headers["Cookie"] = env.request.headers["Cookie"]
2018-03-31 23:51:14 +09:00
2018-07-19 04:26:02 +09:00
client = make_client(YT_URL)
subs = client.get("/subscription_manager?disable_polymer=1", headers)
headers["Cookie"] += "; " + subs.cookies.add_request_headers(headers)["Cookie"]
match = subs.body.match(/'XSRF_TOKEN': "(?<session_token>[A-Za-z0-9\_\-\=]+)"/)
if match
session_token = match["session_token"]
else
next env.redirect "/"
end
2018-03-31 23:51:14 +09:00
2018-07-19 04:26:02 +09:00
headers["content-type"] = "application/x-www-form-urlencoded"
2018-03-31 23:51:14 +09:00
2018-07-19 04:26:02 +09:00
post_req = {
"session_token" => session_token,
}
post_req = HTTP::Params.encode(post_req)
post_url = "/subscription_ajax?#{action}=1&c=#{channel_id}"
2018-03-31 23:51:14 +09:00
2018-07-19 04:26:02 +09:00
# Update user
if client.post(post_url, headers, post_req).status_code == 200
sid = user.id
case action
when .starts_with? "action_create"
PG_DB.exec("UPDATE users SET subscriptions = array_append(subscriptions,$1) WHERE id = $2", channel_id, sid)
when .starts_with? "action_remove"
PG_DB.exec("UPDATE users SET subscriptions = array_remove(subscriptions,$1) WHERE id = $2", channel_id, sid)
end
end
else
2018-07-17 01:24:24 +09:00
sid = user.id
2018-03-31 23:51:14 +09:00
case action
when .starts_with? "action_create"
2018-07-19 04:26:02 +09:00
if !user.subscriptions.includes? channel_id
PG_DB.exec("UPDATE users SET subscriptions = array_append(subscriptions,$1) WHERE id = $2", channel_id, sid)
client = make_client(YT_URL)
get_channel(channel_id, client, PG_DB, false, false)
end
2018-03-31 23:51:14 +09:00
when .starts_with? "action_remove"
PG_DB.exec("UPDATE users SET subscriptions = array_remove(subscriptions,$1) WHERE id = $2", channel_id, sid)
end
end
end
env.redirect referer
end
2018-07-16 22:18:59 +09:00
get "/user/:user" do |env|
user = env.params.url["user"]
env.redirect "/channel/#{user}"
end
get "/channel/:ucid" do |env|
2018-07-17 01:24:24 +09:00
user = env.get? "user"
if user
user = user.as(User)
subscriptions = user.subscriptions
2018-07-16 22:18:59 +09:00
end
subscriptions ||= [] of String
ucid = env.params.url["ucid"]
page = env.params.query["page"]?.try &.to_i
page ||= 1
client = make_client(YT_URL)
if !ucid.starts_with? "UC"
rss = client.get("/feeds/videos.xml?user=#{ucid}").body
rss = XML.parse_html(rss)
ucid = rss.xpath_node("//feed/channelid").not_nil!.content
env.redirect "/channel/#{ucid}"
end
url = produce_playlist_url(ucid, (page - 1) * 100)
response = client.get(url)
json = JSON.parse(response.body)
2018-07-30 11:01:28 +09:00
if !json["content_html"]?
error_message = "This channel does not exist or has no videos."
next templated "error"
end
if json["content_html"].as_s.strip(" \n").empty?
rss = client.get("/feeds/videos.xml?channel_id=#{ucid}").body
rss = XML.parse_html(rss)
author = rss.xpath_node("//feed/author/name").not_nil!.content
videos = [] of ChannelVideo
next templated "channel"
end
2018-07-16 22:18:59 +09:00
document = XML.parse_html(json["content_html"].as_s)
author = document.xpath_node(%q(//div[@class="pl-video-owner"]/a)).not_nil!.content
videos = [] of ChannelVideo
document.xpath_nodes(%q(//a[contains(@class,"pl-video-title-link")])).each do |item|
href = URI.parse(item["href"])
id = HTTP::Params.parse(href.query.not_nil!)["v"]
title = item.content
videos << ChannelVideo.new(id, title, Time.now, Time.now, ucid, author)
end
templated "channel"
end
get "/redirect" do |env|
if env.params.query["q"]?
env.redirect env.params.query["q"]
else
env.redirect "/"
end
end
get "/api/manifest/dash/id/:id" do |env|
env.response.headers.add("Access-Control-Allow-Origin", "*")
env.response.content_type = "application/dash+xml"
local = env.params.query["local"]?.try &.== "true"
id = env.params.url["id"]
client = make_client(YT_URL)
begin
video = get_video(id, client, PG_DB)
rescue ex
halt env, status_code: 403
end
if video.info["dashmpd"]?
manifest = client.get(video.info["dashmpd"]).body
manifest = manifest.gsub(/<BaseURL>[^<]+<\/BaseURL>/) do |baseurl|
url = baseurl.lchop("<BaseURL>")
url = url.rchop("</BaseURL>")
if local
if Kemal.config.ssl || CONFIG.https_only
2018-07-16 22:18:59 +09:00
scheme = "https://"
end
scheme ||= "http://"
url = scheme + env.request.headers["Host"] + URI.parse(url).full_path
end
"<BaseURL>#{url}</BaseURL>"
end
next manifest
end
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
else
halt env, status_code: 403
end
if local
adaptive_fmts.each do |fmt|
if Kemal.config.ssl || CONFIG.https_only
2018-07-16 22:18:59 +09:00
scheme = "https://"
end
scheme ||= "http://"
fmt["url"] = scheme + env.request.headers["Host"] + URI.parse(fmt["url"]).full_path
end
end
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
adaptive_fmts.each do |fmt|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"], decrypt_function)
2018-07-16 22:18:59 +09:00
end
end
video_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("video/mp4") ? s : nil }
audio_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("audio/mp4") ? s : nil }
audio_streams.sort_by! { |s| s["bitrate"].to_i }.reverse!
audio_streams.each do |fmt|
fmt["bitrate"] = (fmt["bitrate"].to_f64/1000).to_i.to_s
end
manifest = XML.build(indent: " ", encoding: "UTF-8") do |xml|
xml.element("MPD", "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "xmlns": "urn:mpeg:DASH:schema:MPD:2011",
"xmlns:yt": "http://youtube.com/yt/2012/10/10", "xsi:schemaLocation": "urn:mpeg:DASH:schema:MPD:2011 DASH-MPD.xsd",
minBufferTime: "PT1.5S", profiles: "urn:mpeg:dash:profile:isoff-main:2011", type: "static",
mediaPresentationDuration: "PT#{video.info["length_seconds"]}S") do
xml.element("Period") do
xml.element("AdaptationSet", id: 0, mimeType: "audio/mp4", subsegmentAlignment: true) do
xml.element("Role", schemeIdUri: "urn:mpeg:DASH:role:2011", value: "main")
audio_streams.each do |fmt|
mimetype, codecs = fmt["type"].split(";")
codecs = codecs[9..-2]
fmt_type = mimetype.split("/")[0]
bandwidth = fmt["bitrate"]
itag = fmt["itag"]
url = fmt["url"]
url = url.gsub("?", "/")
url = url.gsub("&", "/")
url = url.gsub("=", "/")
xml.element("Representation", id: fmt["itag"], codecs: codecs, bandwidth: bandwidth) do
2018-07-30 00:02:41 +09:00
xml.element("AudioChannelConfiguration", schemeIdUri: "urn:mpeg:dash:23003:3:audio_channel_configuration:2011",
value: "2")
2018-07-16 22:18:59 +09:00
xml.element("BaseURL") { xml.text url }
xml.element("SegmentBase", indexRange: fmt["init"]) do
xml.element("Initialization", range: fmt["index"])
end
end
end
end
xml.element("AdaptationSet", id: 1, mimeType: "video/mp4", subsegmentAlignment: true) do
xml.element("Role", schemeIdUri: "urn:mpeg:DASH:role:2011", value: "main")
video_streams.each do |fmt|
mimetype, codecs = fmt["type"].split(";")
codecs = codecs[9..-2]
bandwidth = fmt["bitrate"]
itag = fmt["itag"]
url = fmt["url"]
url = url.gsub("?", "/")
url = url.gsub("&", "/")
url = url.gsub("=", "/")
height, width = fmt["size"].split("x")
xml.element("Representation", id: itag, codecs: codecs, width: width, startWithSAP: "1", maxPlayoutRate: "1",
height: height, bandwidth: bandwidth, frameRate: fmt["fps"]) do
xml.element("BaseURL") { xml.text url }
xml.element("SegmentBase", indexRange: fmt["init"]) do
xml.element("Initialization", range: fmt["index"])
end
end
end
end
end
end
end
manifest = manifest.gsub(%(<?xml version="1.0" encoding="UTF-8U"?>), %(<?xml version="1.0" encoding="UTF-8"?>))
manifest = manifest.gsub(%(<?xml version="1.0" encoding="UTF-8V"?>), %(<?xml version="1.0" encoding="UTF-8"?>))
manifest
end
options "/videoplayback*" do |env|
env.response.headers["Access-Control-Allow-Origin"] = "*"
env.response.headers["Access-Control-Allow-Methods"] = "GET"
env.response.headers["Access-Control-Allow-Headers"] = "Content-Type, range"
end
2018-06-07 07:55:51 +09:00
get "/videoplayback*" do |env|
path = env.request.path
if path != "/videoplayback"
path = path.lchop("/videoplayback/")
path = path.rchop("/")
2018-07-16 11:53:24 +09:00
path = path.gsub(/mime\/\w+\/\w+/) do |mimetype|
mimetype = mimetype.split("/")
mimetype[0] + "/" + mimetype[1] + "%2F" + mimetype[2]
end
2018-06-07 07:55:51 +09:00
path = path.split("/")
raw_params = {} of String => Array(String)
path.each_slice(2) do |pair|
key, value = pair
value = URI.unescape(value)
if raw_params[key]?
raw_params[key] << value
else
raw_params[key] = [value]
end
end
query_params = HTTP::Params.new(raw_params)
else
query_params = env.params.query
end
2018-04-16 10:47:37 +09:00
2018-04-17 03:08:10 +09:00
fvip = query_params["fvip"]
2018-04-16 10:47:37 +09:00
mn = query_params["mn"].split(",")[0]
2018-04-17 03:08:10 +09:00
host = "https://r#{fvip}---#{mn}.googlevideo.com"
2018-04-16 10:47:37 +09:00
url = "/videoplayback?#{query_params.to_s}"
client = make_client(URI.parse(host))
response = client.head(url)
headers = env.request.headers
headers.delete("Host")
headers.delete("Cookie")
headers.delete("User-Agent")
headers.delete("Referer")
client.get(url, headers) do |response|
if response.headers["Location"]?
url = URI.parse(response.headers["Location"])
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-04-16 10:47:37 +09:00
env.redirect url.full_path
else
env.response.status_code = response.status_code
2018-04-16 10:47:37 +09:00
response.headers.each do |key, value|
env.response.headers[key] = value
end
2018-04-17 09:31:57 +09:00
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-07-16 12:10:29 +09:00
begin
chunk_size = 4096
size = 1
while size > 0
size = IO.copy(response.body_io, env.response.output, chunk_size)
2018-04-16 10:47:37 +09:00
env.response.flush
2018-07-16 12:10:29 +09:00
Fiber.yield
2018-04-16 10:47:37 +09:00
end
2018-07-16 12:10:29 +09:00
rescue ex
break
2018-04-16 10:47:37 +09:00
end
end
end
end
2018-07-29 01:06:48 +09:00
get "/:id" do |env|
id = env.params.url["id"]
params = [] of String
env.params.query.each do |k, v|
params << "#{k}=#{v}"
end
params = params.join("&")
url = "/watch?v=#{id}"
if params
url += "&#{params}"
end
env.redirect url
end
2018-07-27 11:42:12 +09:00
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
2018-03-17 09:58:33 +09:00
# Add redirect if SSL is enabled
if Kemal.config.ssl
2018-03-10 04:22:04 +09:00
spawn do
server = HTTP::Server.new do |context|
2018-03-10 05:13:26 +09:00
redirect_url = "https://#{context.request.host}#{context.request.path}"
if context.request.query
redirect_url += "?#{context.request.query}"
end
2018-03-12 00:24:12 +09:00
context.response.headers.add("Location", redirect_url)
2018-03-10 05:11:30 +09:00
context.response.status_code = 301
2018-03-10 04:22:04 +09:00
end
server.bind_tcp "0.0.0.0", 80
2018-03-10 04:22:04 +09:00
server.listen
end
2018-03-12 00:29:40 +09:00
before_all do |env|
env.response.headers.add("Strict-Transport-Security", "max-age=31536000; includeSubDomains; preload")
end
2018-03-10 04:22:04 +09:00
end
2018-03-10 02:28:57 +09:00
static_headers do |response, filepath, filestat|
response.headers.add("Cache-Control", "max-age=86400")
end
2017-11-23 16:48:55 +09:00
public_folder "assets"
2018-04-16 12:56:58 +09:00
add_handler FilteredCompressHandler.new
2018-07-17 01:24:24 +09:00
add_context_storage_type(User)
2017-11-23 16:48:55 +09:00
Kemal.run