invidious/src/invidious.cr

3984 行
115 KiB
Crystal
Raw 通常表示 履歴

2018-09-04 23:22:10 +09:00
# "Invidious" (which is an alternative front-end to YouTube)
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-03-17 09:36:49 +09:00
require "detect_language"
2018-11-23 04:26:08 +09:00
require "digest/md5"
2019-01-24 05:15:19 +09:00
require "file_utils"
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-11-22 08:12:13 +09:00
require "sqlite3"
2018-01-17 05:02:35 +09:00
require "xml"
2018-03-10 03:42:23 +09:00
require "yaml"
require "zip"
2018-08-05 05:30:44 +09:00
require "./invidious/helpers/*"
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-10-10 07:24:29 +09:00
feed_threads = CONFIG.feed_threads
2018-04-29 00:50:02 +09:00
video_threads = CONFIG.video_threads
2019-01-24 05:15:19 +09:00
logger = Invidious::LogHandler.new
Kemal.config.extra_options do |parser|
parser.banner = "Usage: invidious [arguments]"
2018-11-27 05:28:15 +09:00
parser.on("-t THREADS", "--crawl-threads=THREADS", "Number of threads for crawling YouTube (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-10-10 07:24:29 +09:00
parser.on("-f THREADS", "--feed-threads=THREADS", "Number of threads for refreshing feeds (default: #{feed_threads})") do |number|
begin
feed_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
2019-01-24 05:15:19 +09:00
parser.on("-o OUTPUT", "--output=OUTPUT", "Redirect output (default: STDOUT)") do |output|
FileUtils.mkdir_p(File.dirname(output))
logger = Invidious::LogHandler.new(File.open(output, mode: "a"))
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],
)
2018-11-23 04:26:08 +09:00
PG_DB = DB.open PG_URL
YT_URL = URI.parse("https://www.youtube.com")
REDDIT_URL = URI.parse("https://www.reddit.com")
LOGIN_URL = URI.parse("https://accounts.google.com")
TEXTCAPTCHA_URL = URI.parse("http://textcaptcha.com/omarroth@hotmail.com.json")
2018-03-05 13:25:03 +09:00
2018-12-21 06:32:09 +09:00
LOCALES = {
"ar" => load_locale("ar"),
"de" => load_locale("de"),
"en-US" => load_locale("en-US"),
2019-01-22 06:04:09 +09:00
"fr" => load_locale("fr"),
2018-12-27 00:29:12 +09:00
"nb_NO" => load_locale("nb_NO"),
2018-12-21 06:32:09 +09:00
"nl" => load_locale("nl"),
"pl" => load_locale("pl"),
"ru" => load_locale("ru"),
}
2018-05-02 08:51:16 +09:00
crawl_threads.times do
2018-01-28 11:09:27 +09:00
spawn do
2019-01-25 03:19:02 +09:00
crawl_videos(PG_DB, logger)
2018-01-17 12:42:48 +09:00
end
2018-01-08 08:18:24 +09:00
end
2019-01-25 03:19:02 +09:00
refresh_channels(PG_DB, logger, channel_threads, CONFIG.full_refresh)
2018-03-26 12:18:29 +09:00
2019-01-25 03:19:02 +09:00
refresh_feeds(PG_DB, logger, feed_threads)
2018-10-10 07:24:29 +09:00
2018-04-29 00:50:02 +09:00
video_threads.times do |i|
spawn do
2019-01-25 03:19:02 +09:00
refresh_videos(PG_DB, logger)
2018-04-29 00:50:02 +09:00
end
end
2018-02-08 13:04:47 +09:00
top_videos = [] of Video
spawn do
2018-08-05 05:30:44 +09:00
pull_top_videos(CONFIG, PG_DB) do |videos|
2018-02-09 11:19:44 +09:00
top_videos = videos
sleep 1.minutes
Fiber.yield
2018-02-08 13:04:47 +09:00
end
end
2018-11-09 11:08:03 +09:00
popular_videos = [] of ChannelVideo
spawn do
pull_popular_videos(PG_DB) do |videos|
popular_videos = videos
sleep 1.minutes
Fiber.yield
2018-11-09 11:08:03 +09:00
end
end
decrypt_function = [] of {name: String, value: Int32}
spawn do
2018-08-05 05:30:44 +09:00
update_decrypt_function do |function|
decrypt_function = function
sleep 1.minutes
Fiber.yield
end
end
proxies = PROXY_LIST
2018-09-26 07:56:59 +09:00
2018-03-25 12:56:41 +09:00
before_all do |env|
env.response.headers["X-XSS-Protection"] = "1; mode=block;"
env.response.headers["X-Content-Type-Options"] = "nosniff"
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"
2018-08-16 02:40:42 +09:00
user = PG_DB.query_one?("SELECT * FROM users WHERE $1 = ANY(id)", sid, as: User)
2018-04-14 11:32:14 +09:00
2018-07-19 04:26:02 +09:00
if user
challenge, token = create_response(user.email, "sign_out", HMAC_KEY, PG_DB, 1.week)
2018-11-09 08:42:25 +09:00
env.set "challenge", challenge
env.set "token", token
2018-12-21 06:32:09 +09:00
locale = user.preferences.locale
2018-07-19 04:26:02 +09:00
env.set "user", user
2018-08-16 02:40:42 +09:00
env.set "sid", sid
2018-07-19 04:26:02 +09:00
end
else
begin
2018-12-16 03:05:52 +09:00
user = get_user(sid, headers, PG_DB, false)
2018-07-19 04:26:02 +09:00
challenge, token = create_response(user.email, "sign_out", HMAC_KEY, PG_DB, 1.week)
2018-11-16 11:23:17 +09:00
env.set "challenge", challenge
env.set "token", token
2018-12-21 06:32:09 +09:00
locale = user.preferences.locale
2018-07-19 04:26:02 +09:00
env.set "user", user
2018-08-16 02:40:42 +09:00
env.set "sid", sid
2018-07-19 04:26:02 +09:00
rescue ex
end
2018-07-17 02:50:41 +09:00
end
2018-04-14 11:32:14 +09:00
end
2018-08-18 00:19:20 +09:00
2018-12-21 06:32:09 +09:00
locale = env.params.query["hl"]? || locale
locale ||= "en-US"
env.set "locale", locale
2018-08-18 00:19:20 +09:00
current_page = env.request.path
if env.request.query
query = HTTP::Params.parse(env.request.query.not_nil!)
if query["referer"]?
query["referer"] = get_referer(env, "/")
end
current_page += "?#{query}"
end
env.set "current_page", URI.escape(current_page)
2018-03-23 02:44:36 +09:00
end
2018-02-08 13:04:47 +09:00
get "/" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
user = env.get? "user"
2018-12-21 06:32:09 +09:00
if user
user = user.as(User)
if user.preferences.redirect_feed
env.redirect "/feed/subscriptions"
end
end
templated "index"
end
get "/licenses" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
rendered "licenses"
end
2018-08-05 05:30:44 +09:00
# Videos
get "/:id" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
id = env.params.url["id"]
if md = id.match(/[a-zA-Z0-9_-]{11}/)
params = [] of String
env.params.query.each do |k, v|
params << "#{k}=#{v}"
end
params = params.join("&")
url = "/watch?v=#{id}"
if !params.empty?
url += "&#{params}"
end
env.redirect url
else
env.response.status_code = 404
end
end
get "/watch" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-07 10:52:37 +09:00
if env.params.query.to_s.includes?("%20") || env.params.query.to_s.includes?("+")
url = "/watch?" + env.params.query.to_s.gsub("%20", "").delete("+")
next env.redirect url
end
2018-11-07 00:55:52 +09:00
if env.params.query["v"]?
2018-07-29 10:40:59 +09:00
id = env.params.query["v"]
2018-08-05 07:19:42 +09:00
2018-11-07 00:55:52 +09:00
if env.params.query["v"].empty?
error_message = "Invalid parameters."
next templated "error"
end
2018-08-05 07:19:42 +09:00
if id.size > 11
url = "/watch?v=#{id[0, 11]}"
env.params.query.delete_all("v")
if env.params.query.size > 0
url += "&#{env.params.query}"
end
next env.redirect url
2018-08-05 07:19:42 +09:00
end
2018-07-29 10:40:59 +09:00
else
next env.redirect "/"
end
2018-10-08 11:11:33 +09:00
plid = env.params.query["list"]?
nojs = env.params.query["nojs"]?
nojs ||= "0"
nojs = nojs == "1"
2018-10-08 11:11:33 +09:00
2018-07-17 01:24:24 +09:00
user = env.get? "user"
if user
user = user.as(User)
2018-07-29 10:40:59 +09:00
2018-07-17 01:24:24 +09:00
preferences = user.preferences
2018-08-05 13:07:38 +09:00
subscriptions = user.subscriptions
watched = user.watched
2018-07-06 08:43:26 +09:00
end
subscriptions ||= [] of String
params = process_video_params(env.params.query, preferences)
2018-10-30 23:41:23 +09:00
env.params.query.delete_all("listen")
begin
video = get_video(id, PG_DB, proxies, region: params[:region])
rescue ex : VideoRedirect
next env.redirect "/watch?v=#{ex.message}"
rescue ex
error_message = ex.message
2019-01-24 05:15:19 +09:00
logger.write("#{id} : #{ex.message}\n")
next templated "error"
end
if watched && !watched.includes? id
PG_DB.exec("UPDATE users SET watched = watched || $1 WHERE $2 = id", [id], user.as(User).id)
end
if nojs
if preferences
source = preferences.comments[0]
if source.empty?
source = preferences.comments[1]
end
if source == "youtube"
begin
2018-12-21 06:32:09 +09:00
comment_html = JSON.parse(fetch_youtube_comments(id, "", proxies, "html", locale))["contentHtml"]
rescue ex
if preferences.comments[1] == "reddit"
comments, reddit_thread = fetch_reddit_comments(id)
2018-12-21 06:32:09 +09:00
comment_html = template_reddit_comments(comments, locale)
comment_html = fill_links(comment_html, "https", "www.reddit.com")
comment_html = replace_links(comment_html)
end
end
elsif source == "reddit"
begin
comments, reddit_thread = fetch_reddit_comments(id)
2018-12-21 06:32:09 +09:00
comment_html = template_reddit_comments(comments, locale)
comment_html = fill_links(comment_html, "https", "www.reddit.com")
comment_html = replace_links(comment_html)
rescue ex
if preferences.comments[1] == "youtube"
2018-12-21 06:32:09 +09:00
comment_html = JSON.parse(fetch_youtube_comments(id, "", proxies, "html", locale))["contentHtml"]
end
end
end
else
2018-12-21 06:32:09 +09:00
comment_html = JSON.parse(fetch_youtube_comments(id, "", proxies, "html", locale))["contentHtml"]
end
comment_html ||= ""
end
2018-08-05 13:07:38 +09:00
fmt_stream = video.fmt_stream(decrypt_function)
adaptive_fmts = video.adaptive_fmts(decrypt_function)
2018-08-08 01:39:56 +09:00
video_streams = video.video_streams(adaptive_fmts)
2018-08-05 13:07:38 +09:00
audio_streams = video.audio_streams(adaptive_fmts)
2018-01-22 02:07:32 +09:00
2018-08-05 13:07:38 +09:00
captions = video.captions
2018-08-07 03:23:36 +09:00
preferred_captions = captions.select { |caption|
params[:preferred_captions].includes?(caption.name.simpleText) ||
params[:preferred_captions].includes?(caption.languageCode.split("-")[0])
}
preferred_captions.sort_by! { |caption|
2018-08-27 05:00:19 +09:00
(params[:preferred_captions].index(caption.name.simpleText) ||
params[:preferred_captions].index(caption.languageCode.split("-")[0])).not_nil!
}
captions = captions - preferred_captions
aspect_ratio = "16:9"
2018-05-30 08:40:36 +09:00
2018-08-05 13:07:38 +09:00
video.description = fill_links(video.description, "https", "www.youtube.com")
2018-09-04 12:15:47 +09:00
video.description = replace_links(video.description)
2018-08-05 13:07:38 +09:00
description = video.short_description
2018-03-14 08:37:56 +09:00
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2018-08-05 13:07:38 +09:00
host_params = env.request.query_params
host_params.delete_all("v")
2018-07-23 01:09:43 +09:00
2019-01-13 03:00:44 +09:00
if video.player_response["streamingData"]?.try &.["hlsManifestUrl"]?
hlsvp = video.player_response["streamingData"]["hlsManifestUrl"].as_s
2018-08-05 13:07:38 +09:00
hlsvp = hlsvp.gsub("https://manifest.googlevideo.com", host_url)
2018-07-28 08:25:58 +09:00
end
2018-09-15 11:24:28 +09:00
thumbnail = "/vi/#{video.id}/maxres.jpg"
2018-08-05 13:07:38 +09:00
if params[:raw]
2018-08-06 04:03:13 +09:00
url = fmt_stream[0]["url"]
fmt_stream.each do |fmt|
if fmt["label"].split(" - ")[0] == params[:quality]
2018-08-06 04:03:13 +09:00
url = fmt["url"]
end
end
next env.redirect url
end
rvs = [] of Hash(String, String)
2018-08-14 00:50:09 +09:00
video.info["rvs"]?.try &.split(",").each do |rv|
rvs << HTTP::Params.parse(rv).to_h
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)
playability_status = video.player_response["playabilityStatus"]?
if playability_status && playability_status["status"] == "LIVE_STREAM_OFFLINE"
reason = playability_status["reason"]?.try &.as_s
end
reason ||= ""
2017-11-23 16:48:55 +09:00
templated "watch"
end
2018-08-05 05:30:44 +09:00
get "/embed/:id" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-07 10:52:37 +09:00
id = env.params.url["id"]
2018-08-05 07:19:42 +09:00
2018-08-07 10:52:37 +09:00
if id.includes?("%20") || id.includes?("+") || env.params.query.to_s.includes?("%20") || env.params.query.to_s.includes?("+")
id = env.params.url["id"].gsub("%20", "").delete("+")
2018-08-07 10:52:37 +09:00
url = "/embed/#{id}"
2018-08-07 10:52:37 +09:00
if env.params.query.size > 0
url += "?#{env.params.query.to_s.gsub("%20", "").delete("+")}"
2018-08-05 07:19:42 +09:00
end
2018-08-07 10:52:37 +09:00
next env.redirect url
end
if id.size > 11
url = "/embed/#{id[0, 11]}"
if env.params.query.size > 0
url += "?#{env.params.query}"
end
next env.redirect url
2018-08-05 05:30:44 +09:00
end
params = process_video_params(env.params.query, nil)
2018-07-23 01:09:43 +09:00
begin
video = get_video(id, PG_DB, proxies, region: params[:region])
rescue ex : VideoRedirect
next env.redirect "/embed/#{ex.message}"
2018-07-23 01:09:43 +09:00
rescue ex
2018-08-05 05:30:44 +09:00
error_message = ex.message
next templated "error"
2018-07-23 01:09:43 +09:00
end
2018-08-05 13:07:38 +09:00
fmt_stream = video.fmt_stream(decrypt_function)
adaptive_fmts = video.adaptive_fmts(decrypt_function)
2018-08-08 01:39:56 +09:00
video_streams = video.video_streams(adaptive_fmts)
2018-08-05 13:07:38 +09:00
audio_streams = video.audio_streams(adaptive_fmts)
2018-07-23 01:09:43 +09:00
2018-08-05 13:07:38 +09:00
captions = video.captions
2018-07-23 01:09:43 +09:00
preferred_captions = captions.select { |caption|
params[:preferred_captions].includes?(caption.name.simpleText) ||
params[:preferred_captions].includes?(caption.languageCode.split("-")[0])
}
preferred_captions.sort_by! { |caption|
2018-08-27 05:00:19 +09:00
(params[:preferred_captions].index(caption.name.simpleText) ||
params[:preferred_captions].index(caption.languageCode.split("-")[0])).not_nil!
}
captions = captions - preferred_captions
aspect_ratio = nil
2018-08-05 13:07:38 +09:00
video.description = fill_links(video.description, "https", "www.youtube.com")
2018-09-04 12:15:47 +09:00
video.description = replace_links(video.description)
2018-08-05 13:07:38 +09:00
description = video.short_description
2018-07-23 01:09:43 +09:00
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2018-08-05 13:07:38 +09:00
host_params = env.request.query_params
host_params.delete_all("v")
2018-07-23 01:09:43 +09:00
2019-01-13 03:00:44 +09:00
if video.player_response["streamingData"]?.try &.["hlsManifestUrl"]?
hlsvp = video.player_response["streamingData"]["hlsManifestUrl"].as_s
2018-08-05 13:07:38 +09:00
hlsvp = hlsvp.gsub("https://manifest.googlevideo.com", host_url)
2018-08-05 05:30:44 +09:00
end
2018-07-23 01:09:43 +09:00
2018-09-15 11:24:28 +09:00
thumbnail = "/vi/#{video.id}/maxres.jpg"
2018-07-23 01:09:43 +09:00
if params[:raw]
2018-08-05 05:30:44 +09:00
url = fmt_stream[0]["url"]
2018-07-23 01:09:43 +09:00
2018-08-05 05:30:44 +09:00
fmt_stream.each do |fmt|
if fmt["label"].split(" - ")[0] == params[:quality]
2018-08-05 05:30:44 +09:00
url = fmt["url"]
end
2018-07-23 01:09:43 +09:00
end
2018-08-05 05:30:44 +09:00
next env.redirect url
end
2018-07-23 01:09:43 +09:00
2018-08-05 05:30:44 +09:00
rendered "embed"
end
2018-08-16 00:22:36 +09:00
# Playlists
2018-09-29 13:12:35 +09:00
2018-08-16 00:22:36 +09:00
get "/playlist" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-16 00:22:36 +09:00
plid = env.params.query["list"]?
if !plid
next env.redirect "/"
end
page = env.params.query["page"]?.try &.to_i?
page ||= 1
2018-10-07 12:18:50 +09:00
if plid.starts_with? "RD"
next env.redirect "/mix?list=#{plid}"
end
2018-09-18 10:07:32 +09:00
begin
2018-12-21 06:32:09 +09:00
playlist = fetch_playlist(plid, locale)
2018-09-18 10:07:32 +09:00
rescue ex
error_message = ex.message
next templated "error"
2018-08-16 00:22:36 +09:00
end
begin
videos = fetch_playlist_videos(plid, page, playlist.video_count, locale: locale)
rescue ex
videos = [] of PlaylistVideo
end
2018-08-16 00:22:36 +09:00
templated "playlist"
end
2018-09-29 13:12:35 +09:00
get "/mix" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-29 13:12:35 +09:00
rdid = env.params.query["list"]?
if !rdid
next env.redirect "/"
end
continuation = env.params.query["continuation"]?
continuation ||= rdid.lchop("RD")
begin
2018-12-21 06:32:09 +09:00
mix = fetch_mix(rdid, continuation, locale: locale)
2018-09-29 13:12:35 +09:00
rescue ex
error_message = ex.message
next templated "error"
end
templated "mix"
end
2018-08-05 05:30:44 +09:00
# Search
2018-11-22 11:00:17 +09:00
get "/opensearch.xml" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-11-22 11:00:17 +09:00
env.response.content_type = "application/opensearchdescription+xml"
host = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2018-11-22 11:00:17 +09:00
XML.build(indent: " ", encoding: "UTF-8") do |xml|
xml.element("OpenSearchDescription", xmlns: "http://a9.com/-/spec/opensearch/1.1/") do
xml.element("ShortName") { xml.text "Invidious" }
xml.element("LongName") { xml.text "Invidious Search" }
xml.element("Description") { xml.text "Search for videos, channels, and playlists on Invidious" }
xml.element("InputEncoding") { xml.text "UTF-8" }
xml.element("Image", width: 48, height: 48, type: "image/x-icon") { xml.text "#{host}/favicon.ico" }
xml.element("Url", type: "text/html", method: "get", template: "#{host}/search?q={searchTerms}")
2018-11-22 11:00:17 +09:00
end
end
end
2018-08-05 05:30:44 +09:00
get "/results" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-06 08:35:52 +09:00
query = env.params.query["search_query"]?
query ||= env.params.query["q"]?
query ||= ""
2018-08-05 13:07:38 +09:00
page = env.params.query["page"]?.try &.to_i?
page ||= 1
2018-08-06 08:35:52 +09:00
if query
env.redirect "/search?q=#{URI.escape(query)}&page=#{page}"
2018-08-05 05:30:44 +09:00
else
env.redirect "/"
end
end
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
get "/search" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-06 08:35:52 +09:00
query = env.params.query["search_query"]?
query ||= env.params.query["q"]?
2018-08-05 13:07:38 +09:00
query ||= ""
2018-07-22 10:56:11 +09:00
2019-01-03 11:14:31 +09:00
if query.empty?
next env.redirect "/"
end
2018-08-05 05:30:44 +09:00
page = env.params.query["page"]?.try &.to_i?
page ||= 1
2018-07-22 10:56:11 +09:00
user = env.get? "user"
if user
user = user.as(User)
view_name = "subscriptions_#{sha256(user.email)[0..7]}"
end
2018-09-14 07:47:31 +09:00
channel = nil
content_type = "all"
2018-08-28 05:23:25 +09:00
date = ""
duration = ""
features = [] of String
2018-09-14 07:47:31 +09:00
sort = "relevance"
2018-09-17 11:28:00 +09:00
subscriptions = nil
2018-08-28 05:23:25 +09:00
operators = query.split(" ").select { |a| a.match(/\w+:[\w,]+/) }
operators.each do |operator|
key, value = operator.downcase.split(":")
2018-08-28 05:23:25 +09:00
case key
2018-09-14 07:47:31 +09:00
when "channel", "user"
channel = operator.split(":")[-1]
when "content_type", "type"
content_type = value
2018-08-28 05:23:25 +09:00
when "date"
date = value
when "duration"
duration = value
2018-09-18 06:38:18 +09:00
when "feature", "features"
2018-08-28 05:23:25 +09:00
features = value.split(",")
2018-09-14 07:47:31 +09:00
when "sort"
sort = value
2018-09-17 11:28:00 +09:00
when "subscriptions"
subscriptions = value == "true"
2018-08-28 05:23:25 +09:00
end
end
2018-08-31 07:42:30 +09:00
search_query = (query.split(" ") - operators).join(" ")
2018-08-28 05:23:25 +09:00
2018-09-14 07:47:31 +09:00
if channel
count, videos = channel_search(search_query, page, channel)
2018-09-17 11:28:00 +09:00
elsif subscriptions
if view_name
videos = PG_DB.query_all("SELECT id,title,published,updated,ucid,author,length_seconds FROM (
2018-09-17 11:28:00 +09:00
SELECT *,
to_tsvector(#{view_name}.title) ||
to_tsvector(#{view_name}.author)
as document
FROM #{view_name}
) v_search WHERE v_search.document @@ plainto_tsquery($1) LIMIT 20 OFFSET $2;", search_query, (page - 1) * 20, as: ChannelVideo)
count = videos.size
else
videos = [] of ChannelVideo
count = 0
end
2018-09-14 07:47:31 +09:00
else
2018-09-18 06:38:18 +09:00
begin
search_params = produce_search_params(sort: sort, date: date, content_type: content_type,
2018-09-18 06:38:18 +09:00
duration: duration, features: features)
rescue ex
error_message = ex.message
next templated "error"
end
2018-09-14 07:47:31 +09:00
count, videos = search(search_query, page, search_params).as(Tuple)
end
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
templated "search"
end
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
# Users
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
get "/login" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
if user
next env.redirect "/feed/subscriptions"
end
2018-07-22 10:56:11 +09:00
2018-08-09 10:26:02 +09:00
referer = get_referer(env, "/feed/subscriptions")
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
account_type = env.params.query["type"]?
account_type ||= "invidious"
2018-11-23 04:26:08 +09:00
captcha_type = env.params.query["captcha"]?
captcha_type ||= "image"
2018-08-05 05:30:44 +09:00
if account_type == "invidious"
2018-11-23 04:26:08 +09:00
if captcha_type == "image"
captcha = generate_captcha(HMAC_KEY, PG_DB)
else
response = HTTP::Client.get(TEXTCAPTCHA_URL).body
response = JSON.parse(response)
tokens = response["a"].as_a.map do |answer|
create_response(answer.as_s, "sign_in", HMAC_KEY, PG_DB)
end
text_captcha = {
question: response["q"].as_s,
tokens: tokens,
}
end
2018-08-05 05:30:44 +09:00
end
2018-08-05 05:30:44 +09:00
tfa = env.params.query["tfa"]?
tfa ||= false
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
templated "login"
end
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
# See https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/youtube.py#L79
post "/login" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-18 00:19:20 +09:00
referer = get_referer(env, "/feed/subscriptions")
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
email = env.params.body["email"]?
password = env.params.body["password"]?
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
account_type = env.params.query["type"]?
account_type ||= "google"
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
if account_type == "google"
tfa_code = env.params.body["tfa"]?.try &.lchop("G-")
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
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-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
login_page = client.get("/ServiceLogin")
headers = login_page.cookies.add_request_headers(headers)
2018-07-22 10:56:11 +09:00
2018-08-05 05:30:44 +09:00
login_page = XML.parse_html(login_page.body)
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 ||= ""
if name != "" && value != ""
inputs[name] = value
2018-07-22 10:56:11 +09:00
end
end
2018-08-05 05:30:44 +09:00
login_page.xpath_nodes(%q(//input[@type="hidden"])).each do |node|
name = node["id"]? || node["name"]?
name ||= ""
value = node["value"]?
value ||= ""
2018-07-28 23:49:58 +09:00
2018-08-05 05:30:44 +09:00
if name != "" && value != ""
inputs[name] = value
end
end
lookup_req = {
email, nil, [] of String, nil, "US", nil, nil, 2, false, true,
{nil, nil,
{2, 1, nil, 1, "https://accounts.google.com/ServiceLogin?passive=1209600&continue=https%3A%2F%2Faccounts.google.com%2FManageAccount&followup=https%3A%2F%2Faccounts.google.com%2FManageAccount", nil, [] of String, 4, [] of String},
1,
{nil, nil, [] of String},
nil, nil, nil, true,
}, email,
}.to_json
2018-08-05 05:30:44 +09:00
lookup_results = client.post("/_/signin/sl/lookup", headers, login_req(inputs, lookup_req))
headers = lookup_results.cookies.add_request_headers(headers)
2018-08-05 05:30:44 +09:00
lookup_results = lookup_results.body
lookup_results = lookup_results[5..-1]
lookup_results = JSON.parse(lookup_results)
2018-08-05 05:30:44 +09:00
user_hash = lookup_results[0][2]
2018-07-24 05:09:11 +09:00
challenge_req = {
user_hash, nil, 1, nil,
2018-11-21 01:07:50 +09:00
{1, nil, nil, nil,
{password, nil, true},
},
{nil, nil,
{2, 1, nil, 1, "https://accounts.google.com/ServiceLogin?passive=1209600&continue=https%3A%2F%2Faccounts.google.com%2FManageAccount&followup=https%3A%2F%2Faccounts.google.com%2FManageAccount", nil, [] of String, 4, [] of String},
1,
{nil, nil, [] of String},
nil, nil, nil, true},
}.to_json
2018-07-24 05:09:11 +09:00
2018-08-05 05:30:44 +09:00
challenge_results = client.post("/_/signin/sl/challenge", headers, login_req(inputs, challenge_req))
headers = challenge_results.cookies.add_request_headers(headers)
2018-07-24 05:09:11 +09:00
2018-08-05 05:30:44 +09:00
challenge_results = challenge_results.body
challenge_results = challenge_results[5..-1]
challenge_results = JSON.parse(challenge_results)
2018-07-24 05:09:11 +09:00
2018-08-05 05:30:44 +09:00
headers["Cookie"] = URI.unescape(headers["Cookie"])
2018-07-24 05:09:11 +09:00
2018-08-05 05:30:44 +09:00
if challenge_results[0][-1]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Incorrect password")
2018-08-05 05:30:44 +09:00
next templated "error"
2018-07-24 05:09:11 +09:00
end
2018-07-27 11:42:12 +09:00
2018-08-05 05:30:44 +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!}]"
2018-07-27 11:42:12 +09:00
2018-08-05 05:30:44 +09:00
tl = challenge_results[1][2]
2018-07-27 11:42:12 +09:00
2018-08-05 05:30:44 +09:00
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
2018-08-05 05:30:44 +09:00
tfa = challenge_results[0][-1][0][0]
2018-07-27 23:49:34 +09:00
end
2018-08-05 05:30:44 +09:00
if tfa[2] == "TWO_STEP_VERIFICATION"
if tfa[5] == "QUOTA_EXCEEDED"
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Quota exceeded, try again in a few hours")
2018-08-05 05:30:44 +09:00
next templated "error"
end
2018-08-05 05:30:44 +09:00
if !tfa_code
2018-08-18 00:19:20 +09:00
next env.redirect "/login?tfa=true&type=google&referer=#{URI.escape(referer)}"
end
2018-08-05 05:30:44 +09:00
tl = challenge_results[1][2]
2018-08-05 05:30:44 +09:00
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-08-05 05:30:44 +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)
2018-08-05 05:30:44 +09:00
challenge_results = challenge_results.body
challenge_results = challenge_results[5..-1]
challenge_results = JSON.parse(challenge_results)
2018-08-05 05:30:44 +09:00
if challenge_results[0][-1]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Invalid TFA code")
2018-08-05 05:30:44 +09:00
next templated "error"
end
end
end
2018-08-05 05:30:44 +09:00
login_res = challenge_results[0][13][2].to_s
2018-08-05 05:30:44 +09:00
login = client.get(login_res, headers)
headers = login.cookies.add_request_headers(headers)
2018-08-05 05:30:44 +09:00
login = client.get(login.headers["Location"], headers)
2018-08-05 05:30:44 +09:00
headers = HTTP::Headers.new
headers = login.cookies.add_request_headers(headers)
2018-07-30 11:01:28 +09:00
2018-08-05 05:30:44 +09:00
sid = login.cookies["SID"].value
2018-12-16 03:05:52 +09:00
user = get_user(sid, headers, PG_DB)
2018-08-05 05:30:44 +09:00
# We are now logged in
2018-08-01 13:56:17 +09:00
2018-08-05 05:30:44 +09:00
host = URI.parse(env.request.headers["Host"]).host
2018-08-05 05:30:44 +09:00
login.cookies.each do |cookie|
if Kemal.config.ssl || CONFIG.https_only
cookie.secure = true
else
2018-08-05 05:30:44 +09:00
cookie.secure = false
end
2018-08-05 05:30:44 +09:00
cookie.extension = cookie.extension.not_nil!.gsub(".youtube.com", host)
cookie.extension = cookie.extension.not_nil!.gsub("Secure; ", "")
end
2018-08-01 13:56:17 +09:00
2018-08-05 05:30:44 +09:00
login.cookies.add_response_headers(env.response.headers)
2018-08-01 13:56:17 +09:00
2018-08-05 05:30:44 +09:00
env.redirect referer
rescue ex
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Login failed. This may be because two-factor authentication is not enabled on your account.")
2018-08-05 05:30:44 +09:00
next templated "error"
2018-08-01 13:56:17 +09:00
end
2018-08-05 05:30:44 +09:00
elsif account_type == "invidious"
answer = env.params.body["answer"]?
2018-11-23 04:26:08 +09:00
text_answer = env.params.body["text_answer"]?
2018-11-23 04:26:08 +09:00
if answer
answer = answer.lstrip('0')
answer = OpenSSL::HMAC.hexdigest(:sha256, HMAC_KEY, answer)
2018-11-23 04:26:08 +09:00
challenge = env.params.body["challenge"]?
token = env.params.body["token"]?
2018-11-23 04:26:08 +09:00
begin
2018-12-21 06:32:09 +09:00
validate_response(challenge, token, answer, "sign_in", HMAC_KEY, PG_DB, locale)
2018-11-23 04:26:08 +09:00
rescue ex
2018-12-21 06:32:09 +09:00
if ex.message == translate(locale, "Invalid user")
error_message = translate(locale, "Invalid answer")
2018-11-23 04:26:08 +09:00
else
error_message = ex.message
end
2018-08-01 13:56:17 +09:00
2018-11-23 04:26:08 +09:00
next templated "error"
end
elsif text_answer
text_answer = Digest::MD5.hexdigest(text_answer.downcase.strip)
challenges = env.params.body.select { |k, v| k.match(/text_challenge\d+/) }
tokens = env.params.body.select { |k, v| k.match(/text_token\d+/) }
found_valid_captcha = false
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Invalid CAPTCHA")
2018-11-23 04:26:08 +09:00
challenges.each_with_index do |challenge, i|
begin
challenge = challenge[1]
token = tokens[i][1]
2018-12-21 06:32:09 +09:00
validate_response(challenge, token, text_answer, "sign_in", HMAC_KEY, PG_DB, locale)
2018-11-23 04:26:08 +09:00
found_valid_captcha = true
rescue ex
2018-12-21 06:32:09 +09:00
if ex.message == translate(locale, "Invalid user")
error_message = translate(locale, "Invalid answer")
2018-11-23 04:26:08 +09:00
else
error_message = ex.message
end
end
end
2018-11-23 04:26:08 +09:00
if !found_valid_captcha
next templated "error"
end
else
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "CAPTCHA is a required field")
next templated "error"
end
2018-08-05 05:30:44 +09:00
action = env.params.body["action"]?
action ||= "signin"
2018-08-01 13:56:17 +09:00
2018-08-05 05:30:44 +09:00
if !email
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "User ID is a required field")
2018-08-05 05:30:44 +09:00
next templated "error"
end
2018-08-01 14:01:01 +09:00
2018-08-05 05:30:44 +09:00
if !password
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Password is a required field")
2018-08-05 05:30:44 +09:00
next templated "error"
end
2018-08-01 14:01:01 +09:00
2018-08-05 05:30:44 +09:00
if action == "signin"
user = PG_DB.query_one?("SELECT * FROM users WHERE LOWER(email) = LOWER($1)", email, as: User)
2018-08-01 14:01:01 +09:00
2018-08-05 05:30:44 +09:00
if !user
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Invalid username or password")
2018-08-05 05:30:44 +09:00
next templated "error"
end
2018-08-01 14:01:01 +09:00
2018-08-05 05:30:44 +09:00
if !user.password
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Please sign in using 'Sign in with Google'")
2018-08-05 05:30:44 +09:00
next templated "error"
end
2018-08-05 05:30:44 +09:00
if Crypto::Bcrypt::Password.new(user.password.not_nil!) == password
2018-08-16 02:40:42 +09:00
sid = Base64.urlsafe_encode(Random::Secure.random_bytes(32))
2018-10-09 10:09:06 +09:00
PG_DB.exec("UPDATE users SET id = id || $1 WHERE LOWER(email) = LOWER($2)", [sid], email)
2018-08-01 14:01:01 +09:00
2018-08-05 05:30:44 +09:00
if Kemal.config.ssl || CONFIG.https_only
secure = true
2018-08-01 14:01:01 +09:00
else
2018-08-05 05:30:44 +09:00
secure = false
2018-08-01 14:01:01 +09:00
end
2018-11-16 07:41:43 +09:00
if CONFIG.domain
env.response.cookies["SID"] = HTTP::Cookie.new(name: "SID", domain: ".#{CONFIG.domain}", value: sid, expires: Time.now + 2.years,
secure: secure, http_only: true)
else
env.response.cookies["SID"] = HTTP::Cookie.new(name: "SID", value: sid, expires: Time.now + 2.years,
secure: secure, http_only: true)
end
2018-08-05 05:30:44 +09:00
else
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Invalid username or password")
2018-08-05 05:30:44 +09:00
next templated "error"
end
elsif action == "register"
if password.empty?
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Password cannot be empty")
next templated "error"
end
# See https://security.stackexchange.com/a/39851
if password.size > 55
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Password cannot be longer than 55 characters")
next templated "error"
end
2018-10-09 10:09:06 +09:00
user = PG_DB.query_one?("SELECT * FROM users WHERE LOWER(email) = LOWER($1) AND password IS NOT NULL", email, as: User)
2018-08-05 05:30:44 +09:00
if user
2018-12-21 06:32:09 +09:00
error_message = translate(locale, "Please sign in")
2018-08-05 05:30:44 +09:00
next templated "error"
end
2018-08-16 02:40:42 +09:00
sid = Base64.urlsafe_encode(Random::Secure.random_bytes(32))
2018-08-05 05:30:44 +09:00
user = create_user(sid, email, password)
user_array = user.to_a
2018-08-01 14:01:01 +09:00
2018-08-05 05:30:44 +09:00
user_array[5] = user_array[5].to_json
args = arg_array(user_array)
2018-08-05 05:30:44 +09:00
PG_DB.exec("INSERT INTO users VALUES (#{args})", user_array)
view_name = "subscriptions_#{sha256(user.email)[0..7]}"
PG_DB.exec("CREATE MATERIALIZED VIEW #{view_name} AS \
SELECT * FROM channel_videos WHERE \
ucid = ANY ((SELECT subscriptions FROM users WHERE email = E'#{user.email.gsub("'", "\\'")}')::text[]) \
ORDER BY published DESC;")
2018-08-05 05:30:44 +09:00
if Kemal.config.ssl || CONFIG.https_only
secure = true
else
secure = false
end
2018-08-05 05:30:44 +09:00
2018-11-16 07:41:43 +09:00
if CONFIG.domain
env.response.cookies["SID"] = HTTP::Cookie.new(name: "SID", domain: ".#{CONFIG.domain}", value: sid, expires: Time.now + 2.years,
secure: secure, http_only: true)
else
env.response.cookies["SID"] = HTTP::Cookie.new(name: "SID", value: sid, expires: Time.now + 2.years,
secure: secure, http_only: true)
end
end
2018-08-05 05:30:44 +09:00
env.redirect referer
end
end
2018-08-05 05:30:44 +09:00
get "/signout" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-11-09 08:42:25 +09:00
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
2018-07-14 22:36:31 +09:00
2018-11-09 08:42:25 +09:00
if user
user = user.as(User)
challenge = env.params.query["challenge"]?
token = env.params.query["token"]?
begin
2018-12-21 06:32:09 +09:00
validate_response(challenge, token, user.email, "sign_out", HMAC_KEY, PG_DB, locale)
2018-11-09 08:42:25 +09:00
rescue ex
error_message = ex.message
next templated "error"
2018-11-09 23:48:02 +09:00
end
2018-07-14 22:36:31 +09:00
2018-08-16 02:40:42 +09:00
user = env.get("user").as(User)
sid = env.get("sid").as(String)
PG_DB.exec("UPDATE users SET id = array_remove(id, $1) WHERE email = $2", sid, user.email)
2018-11-09 08:42:25 +09:00
env.request.cookies.each do |cookie|
cookie.expires = Time.new(1990, 1, 1)
2018-11-09 23:48:02 +09:00
end
2018-08-16 02:40:42 +09:00
2018-11-09 23:48:02 +09:00
env.request.cookies.add_response_headers(env.response.headers)
2018-11-09 08:42:25 +09:00
end
env.redirect referer
2018-08-05 05:30:44 +09:00
end
2018-07-14 22:36:31 +09:00
2018-08-05 05:30:44 +09:00
get "/preferences" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
2018-08-05 05:30:44 +09:00
if user
user = user.as(User)
templated "preferences"
else
2018-08-09 10:26:02 +09:00
env.redirect referer
2018-08-05 05:30:44 +09:00
end
end
2018-08-05 05:30:44 +09:00
post "/preferences" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
2018-08-05 05:30:44 +09:00
if user
user = user.as(User)
2018-08-05 05:30:44 +09:00
video_loop = env.params.body["video_loop"]?.try &.as(String)
video_loop ||= "off"
video_loop = video_loop == "on"
2018-07-14 22:36:31 +09:00
2018-08-05 05:30:44 +09:00
autoplay = env.params.body["autoplay"]?.try &.as(String)
autoplay ||= "off"
autoplay = autoplay == "on"
2018-08-03 07:08:33 +09:00
2018-11-12 02:45:05 +09:00
continue = env.params.body["continue"]?.try &.as(String)
continue ||= "off"
continue = continue == "on"
2018-10-30 23:41:23 +09:00
listen = env.params.body["listen"]?.try &.as(String)
listen ||= "off"
listen = listen == "on"
2018-08-05 05:30:44 +09:00
speed = env.params.body["speed"]?.try &.as(String).to_f?
speed ||= DEFAULT_USER_PREFERENCES.speed
2018-08-05 05:30:44 +09:00
quality = env.params.body["quality"]?.try &.as(String)
quality ||= DEFAULT_USER_PREFERENCES.quality
2018-08-05 05:30:44 +09:00
volume = env.params.body["volume"]?.try &.as(String).to_i?
volume ||= DEFAULT_USER_PREFERENCES.volume
comments_0 = env.params.body["comments_0"]?.try &.as(String) || DEFAULT_USER_PREFERENCES.comments[0]
comments_1 = env.params.body["comments_1"]?.try &.as(String) || DEFAULT_USER_PREFERENCES.comments[1]
2018-08-26 08:33:15 +09:00
comments = [comments_0, comments_1]
2018-07-14 22:36:31 +09:00
captions_0 = env.params.body["captions_0"]?.try &.as(String) || DEFAULT_USER_PREFERENCES.captions[0]
captions_1 = env.params.body["captions_1"]?.try &.as(String) || DEFAULT_USER_PREFERENCES.captions[1]
captions_2 = env.params.body["captions_2"]?.try &.as(String) || DEFAULT_USER_PREFERENCES.captions[2]
2018-08-07 03:23:36 +09:00
captions = [captions_0, captions_1, captions_2]
2018-08-31 06:49:38 +09:00
related_videos = env.params.body["related_videos"]?.try &.as(String)
related_videos ||= "off"
2018-08-31 06:49:38 +09:00
related_videos = related_videos == "on"
2018-08-05 05:30:44 +09:00
redirect_feed = env.params.body["redirect_feed"]?.try &.as(String)
redirect_feed ||= "off"
redirect_feed = redirect_feed == "on"
2018-07-14 22:36:31 +09:00
2018-12-21 06:32:09 +09:00
locale = env.params.body["locale"]?.try &.as(String)
locale ||= DEFAULT_USER_PREFERENCES.locale
2018-12-21 06:32:09 +09:00
2018-08-05 05:30:44 +09:00
dark_mode = env.params.body["dark_mode"]?.try &.as(String)
dark_mode ||= "off"
dark_mode = dark_mode == "on"
2018-07-14 22:36:31 +09:00
2018-08-05 05:30:44 +09:00
thin_mode = env.params.body["thin_mode"]?.try &.as(String)
thin_mode ||= "off"
thin_mode = thin_mode == "on"
2018-07-14 22:36:31 +09:00
2018-08-05 05:30:44 +09:00
max_results = env.params.body["max_results"]?.try &.as(String).to_i?
max_results ||= DEFAULT_USER_PREFERENCES.max_results
2018-07-14 22:36:31 +09:00
2018-08-05 05:30:44 +09:00
sort = env.params.body["sort"]?.try &.as(String)
sort ||= DEFAULT_USER_PREFERENCES.sort
2018-07-14 22:36:31 +09:00
2018-08-05 05:30:44 +09:00
latest_only = env.params.body["latest_only"]?.try &.as(String)
latest_only ||= "off"
latest_only = latest_only == "on"
2018-08-05 05:30:44 +09:00
unseen_only = env.params.body["unseen_only"]?.try &.as(String)
unseen_only ||= "off"
unseen_only = unseen_only == "on"
2018-08-05 05:30:44 +09:00
notifications_only = env.params.body["notifications_only"]?.try &.as(String)
notifications_only ||= "off"
notifications_only = notifications_only == "on"
2018-08-05 05:30:44 +09:00
preferences = {
"video_loop" => video_loop,
"autoplay" => autoplay,
2018-11-12 02:45:05 +09:00
"continue" => continue,
2018-10-30 23:41:23 +09:00
"listen" => listen,
2018-08-05 05:30:44 +09:00
"speed" => speed,
"quality" => quality,
"volume" => volume,
"comments" => comments,
2018-08-07 03:23:36 +09:00
"captions" => captions,
2018-08-31 06:49:38 +09:00
"related_videos" => related_videos,
2018-08-05 05:30:44 +09:00
"redirect_feed" => redirect_feed,
2018-12-21 06:32:09 +09:00
"locale" => locale,
2018-08-05 05:30:44 +09:00
"dark_mode" => dark_mode,
"thin_mode" => thin_mode,
"max_results" => max_results,
"sort" => sort,
"latest_only" => latest_only,
"unseen_only" => unseen_only,
"notifications_only" => notifications_only,
}.to_json
2018-08-01 03:40:26 +09:00
2018-08-05 05:30:44 +09:00
PG_DB.exec("UPDATE users SET preferences = $1 WHERE email = $2", preferences, user.email)
2018-08-01 03:40:26 +09:00
end
2018-08-05 05:30:44 +09:00
env.redirect referer
end
2018-08-01 03:40:26 +09:00
get "/toggle_theme" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
if user
user = user.as(User)
preferences = user.preferences
if preferences.dark_mode
preferences.dark_mode = false
else
preferences.dark_mode = true
end
PG_DB.exec("UPDATE users SET preferences = $1 WHERE email = $2", preferences.to_json, user.email)
end
env.redirect referer
end
get "/mark_watched" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
user = env.get? "user"
referer = get_referer(env, "/feed/subscriptions")
id = env.params.query["id"]?
if !id
halt env, status_code: 400
end
redirect = env.params.query["redirect"]?
redirect ||= "false"
redirect = redirect == "true"
if user
user = user.as(User)
if !user.watched.includes? id
PG_DB.exec("UPDATE users SET watched = watched || $1 WHERE $2 = id", [id], user.id)
end
end
if redirect
env.redirect referer
else
env.response.content_type = "application/json"
"{}"
end
end
get "/mark_unwatched" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
user = env.get? "user"
referer = get_referer(env, "/feed/history")
id = env.params.query["id"]?
if !id
halt env, status_code: 400
end
redirect = env.params.query["redirect"]?
redirect ||= "false"
redirect = redirect == "true"
if user
user = user.as(User)
2018-11-22 08:12:13 +09:00
PG_DB.exec("UPDATE users SET watched = array_remove(watched, $1) WHERE email = $2", id, user.email)
end
if redirect
env.redirect referer
else
env.response.content_type = "application/json"
"{}"
end
end
2018-08-05 13:07:38 +09:00
# /modify_notifications
# will "ding" all subscriptions.
2018-08-05 05:30:44 +09:00
# /modify_notifications?receive_all_updates=false&receive_no_updates=false
# will "unding" all subscriptions.
get "/modify_notifications" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
2018-07-14 22:36:31 +09:00
2018-08-05 05:30:44 +09:00
if user
user = user.as(User)
2018-07-30 11:05:40 +09:00
2018-08-05 05:30:44 +09:00
channel_req = {} of String => String
2018-02-27 09:59:02 +09:00
2018-08-05 05:30:44 +09:00
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"
2018-01-08 02:42:24 +09:00
2018-08-05 05:30:44 +09:00
channel_req.reject! { |k, v| v != "true" && v != "false" }
2018-08-05 05:30:44 +09:00
headers = HTTP::Headers.new
headers["Cookie"] = env.request.headers["Cookie"]
2017-12-31 06:21:43 +09:00
2018-08-05 05:30:44 +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
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
channel_req["session_token"] = session_token
2018-04-08 11:36:09 +09:00
2018-08-05 05:30:44 +09:00
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|
channel_id = channel.content.lstrip("/channel/").not_nil!
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
channel_req["channel_id"] = channel_id
client.post("/subscription_ajax?action_update_subscription_preferences=1", headers,
HTTP::Params.encode(channel_req)).body
end
2018-07-19 04:26:02 +09:00
end
2018-08-05 05:30:44 +09:00
env.redirect referer
end
2018-04-29 23:40:33 +09:00
2018-08-05 05:30:44 +09:00
get "/subscription_manager" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env, "/")
2018-08-05 05:30:44 +09:00
if !user
2018-08-09 10:26:02 +09:00
next env.redirect referer
2018-04-28 23:27:05 +09:00
end
2018-08-05 05:30:44 +09:00
user = user.as(User)
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
if !user.password
# Refresh account
headers = HTTP::Headers.new
headers["Cookie"] = env.request.headers["Cookie"]
2018-04-08 11:36:09 +09:00
2018-12-16 03:05:52 +09:00
user = get_user(user.id[0], headers, PG_DB)
2018-08-05 05:30:44 +09:00
end
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
action_takeout = env.params.query["action_takeout"]?.try &.to_i?
action_takeout ||= 0
action_takeout = action_takeout == 1
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
format = env.params.query["format"]?
format ||= "rss"
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
subscriptions = [] of InvidiousChannel
user.subscriptions.each do |ucid|
begin
subscriptions << get_channel(ucid, PG_DB, false, false)
2018-08-05 05:30:44 +09:00
rescue ex
next
end
end
subscriptions.sort_by! { |channel| channel.author.downcase }
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
if action_takeout
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
if format == "json"
env.response.content_type = "application/json"
env.response.headers["content-disposition"] = "attachment"
next {
"subscriptions" => user.subscriptions,
"watch_history" => user.watched,
"preferences" => user.preferences,
}.to_json
else
env.response.content_type = "application/xml"
env.response.headers["content-disposition"] = "attachment"
export = XML.build do |xml|
xml.element("opml", version: "1.1") do
xml.element("body") do
if format == "newpipe"
title = "YouTube Subscriptions"
else
title = "Invidious Subscriptions"
end
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
xml.element("outline", text: title, title: title) do
subscriptions.each do |channel|
if format == "newpipe"
xmlUrl = "https://www.youtube.com/feeds/videos.xml?channel_id=#{channel.id}"
else
2018-08-05 13:07:38 +09:00
xmlUrl = "#{host_url}/feed/channel/#{channel.id}"
2018-08-05 05:30:44 +09:00
end
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
xml.element("outline", text: channel.author, title: channel.author,
"type": "rss", xmlUrl: xmlUrl)
end
end
end
2018-07-19 04:26:02 +09:00
end
2018-03-17 01:40:29 +09:00
end
2018-08-05 05:30:44 +09:00
next export.gsub(%(<?xml version="1.0"?>\n), "")
end
end
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
templated "subscription_manager"
end
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
get "/data_control" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
if user
user = user.as(User)
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
templated "data_control"
else
env.redirect referer
end
end
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
post "/data_control" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
if user
user = user.as(User)
2018-04-29 23:40:33 +09:00
2018-08-05 05:30:44 +09:00
HTTP::FormData.parse(env.request) do |part|
body = part.body.gets_to_end
if body.empty?
next
2018-07-19 04:26:02 +09:00
end
2018-08-05 05:30:44 +09:00
case part.name
when "import_invidious"
body = JSON.parse(body)
2018-11-10 08:25:24 +09:00
if body["subscriptions"]?
user.subscriptions += body["subscriptions"].as_a.map { |a| a.as_s }
user.subscriptions.uniq!
2018-11-22 08:12:13 +09:00
user.subscriptions.select! do |ucid|
2018-08-05 05:30:44 +09:00
begin
2018-12-16 03:05:52 +09:00
get_channel(ucid, PG_DB, false, false)
2018-11-22 08:12:13 +09:00
true
2018-08-05 05:30:44 +09:00
rescue ex
2018-11-22 08:12:13 +09:00
false
2018-08-05 05:30:44 +09:00
end
end
2018-11-10 08:25:24 +09:00
PG_DB.exec("UPDATE users SET subscriptions = $1 WHERE email = $2", user.subscriptions, user.email)
2018-08-05 05:30:44 +09:00
end
2018-11-09 07:43:28 +09:00
if body["watch_history"]?
2018-11-10 08:25:24 +09:00
user.watched += body["watch_history"].as_a.map { |a| a.as_s }
user.watched.uniq!
PG_DB.exec("UPDATE users SET watched = $1 WHERE email = $2", user.watched, user.email)
end
2018-04-29 23:40:33 +09:00
2018-11-09 07:35:26 +09:00
if body["preferences"]?
2018-11-10 08:25:24 +09:00
user.preferences = Preferences.from_json(body["preferences"].to_json)
PG_DB.exec("UPDATE users SET preferences = $1 WHERE email = $2", user.preferences.to_json, user.email)
2018-11-09 07:35:26 +09:00
end
2018-08-05 05:30:44 +09:00
when "import_youtube"
subscriptions = XML.parse(body)
2018-11-10 08:25:24 +09:00
user.subscriptions += subscriptions.xpath_nodes(%q(//outline[@type="rss"])).map do |channel|
channel["xmlUrl"].match(/UC[a-zA-Z0-9_-]{22}/).not_nil![0]
end
user.subscriptions.uniq!
user.subscriptions = get_batch_channels(user.subscriptions, PG_DB, false, false)
2018-11-10 08:25:24 +09:00
PG_DB.exec("UPDATE users SET subscriptions = $1 WHERE email = $2", user.subscriptions, user.email)
when "import_freetube"
user.subscriptions += body.scan(/"channelId":"(?<channel_id>[a-zA-Z0-9_-]{24})"/).map do |md|
md["channel_id"]
end
user.subscriptions.uniq!
user.subscriptions = get_batch_channels(user.subscriptions, PG_DB, false, false)
2018-11-10 08:25:24 +09:00
PG_DB.exec("UPDATE users SET subscriptions = $1 WHERE email = $2", user.subscriptions, user.email)
2018-08-05 05:30:44 +09:00
when "import_newpipe_subscriptions"
body = JSON.parse(body)
2018-11-10 08:25:24 +09:00
user.subscriptions += body["subscriptions"].as_a.map do |channel|
channel["url"].as_s.match(/UC[a-zA-Z0-9_-]{22}/).not_nil![0]
end
user.subscriptions.uniq!
user.subscriptions = get_batch_channels(user.subscriptions, PG_DB, false, false)
2018-11-10 08:25:24 +09:00
PG_DB.exec("UPDATE users SET subscriptions = $1 WHERE email = $2", user.subscriptions, user.email)
2018-08-05 05:30:44 +09:00
when "import_newpipe"
2018-11-10 08:25:24 +09:00
Zip::Reader.open(IO::Memory.new(body)) do |file|
2018-08-05 05:30:44 +09:00
file.each_entry do |entry|
if entry.filename == "newpipe.db"
2018-11-22 08:12:13 +09:00
tempfile = File.tempfile(".db")
File.write(tempfile.path, entry.io.gets_to_end)
db = DB.open("sqlite3://" + tempfile.path)
2018-04-29 23:40:33 +09:00
2018-11-22 08:12:13 +09:00
user.watched += db.query_all("SELECT url FROM streams", as: String).map { |url| url.lchop("https://www.youtube.com/watch?v=") }
2018-11-10 08:25:24 +09:00
user.watched.uniq!
2018-07-19 04:26:02 +09:00
2018-11-10 08:25:24 +09:00
PG_DB.exec("UPDATE users SET watched = $1 WHERE email = $2", user.watched, user.email)
2018-11-22 08:12:13 +09:00
user.subscriptions += db.query_all("SELECT url FROM subscriptions", as: String).map { |url| url.lchop("https://www.youtube.com/channel/") }
2018-11-10 08:25:24 +09:00
user.subscriptions.uniq!
user.subscriptions = get_batch_channels(user.subscriptions, PG_DB, false, false)
2018-11-10 08:25:24 +09:00
PG_DB.exec("UPDATE users SET subscriptions = $1 WHERE email = $2", user.subscriptions, user.email)
2018-11-22 08:12:13 +09:00
db.close
tempfile.delete
2018-08-05 05:30:44 +09:00
end
2018-07-19 04:26:02 +09:00
end
end
2018-07-19 04:26:02 +09:00
end
2018-08-05 05:30:44 +09:00
end
end
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
env.redirect referer
end
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
get "/subscription_ajax" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
2018-07-19 04:26:02 +09:00
2018-11-22 04:35:37 +09:00
redirect = env.params.query["redirect"]?
redirect ||= "false"
redirect = redirect == "true"
2018-08-05 05:30:44 +09:00
if user
user = user.as(User)
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +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
next env.redirect referer
end
2018-04-29 23:40:33 +09:00
2018-08-05 05:30:44 +09:00
channel_id = env.params.query["c"]?
channel_id ||= ""
if !user.password
headers = HTTP::Headers.new
headers["Cookie"] = env.request.headers["Cookie"]
2018-04-29 23:40:33 +09:00
2018-07-19 04:26:02 +09:00
client = make_client(YT_URL)
2018-08-05 05:30:44 +09:00
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
2018-08-05 05:30:44 +09:00
end
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
headers["content-type"] = "application/x-www-form-urlencoded"
2018-04-29 23:40:33 +09:00
2018-08-05 05:30:44 +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-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
# Update user
if client.post(post_url, headers, post_req).status_code == 200
2018-11-22 08:12:13 +09:00
email = user.email
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
case action
when .starts_with? "action_create"
2018-11-22 08:12:13 +09:00
PG_DB.exec("UPDATE users SET subscriptions = array_append(subscriptions,$1) WHERE email = $2", channel_id, email)
2018-08-05 05:30:44 +09:00
when .starts_with? "action_remove"
2018-11-22 08:12:13 +09:00
PG_DB.exec("UPDATE users SET subscriptions = array_remove(subscriptions,$1) WHERE email = $2", channel_id, email)
2018-08-05 05:30:44 +09:00
end
2018-04-29 23:40:33 +09:00
end
2018-08-05 05:30:44 +09:00
else
2018-11-22 08:12:13 +09:00
email = user.email
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
case action
when .starts_with? "action_create"
if !user.subscriptions.includes? channel_id
2018-11-22 08:12:13 +09:00
PG_DB.exec("UPDATE users SET subscriptions = array_append(subscriptions,$1) WHERE email = $2", channel_id, email)
2018-07-19 04:26:02 +09:00
2018-12-16 03:05:52 +09:00
get_channel(channel_id, PG_DB, false, false)
2018-08-05 05:30:44 +09:00
end
when .starts_with? "action_remove"
2018-11-22 08:12:13 +09:00
PG_DB.exec("UPDATE users SET subscriptions = array_remove(subscriptions,$1) WHERE email = $2", channel_id, email)
2018-08-05 05:30:44 +09:00
end
2018-04-29 23:40:33 +09:00
end
2018-08-05 05:30:44 +09:00
end
2018-04-29 23:40:33 +09:00
2018-11-22 04:35:37 +09:00
if redirect
env.redirect referer
else
env.response.content_type = "application/json"
"{}"
2018-11-22 04:35:37 +09:00
end
2018-08-05 05:30:44 +09:00
end
2018-03-17 01:40:29 +09:00
get "/delete_account" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
user = env.get? "user"
referer = get_referer(env)
if user
user = user.as(User)
challenge, token = create_response(user.email, "delete_account", HMAC_KEY, PG_DB)
templated "delete_account"
else
env.redirect referer
end
end
post "/delete_account" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
user = env.get? "user"
referer = get_referer(env)
if user
user = user.as(User)
challenge = env.params.body["challenge"]?
token = env.params.body["token"]?
begin
2018-12-21 06:32:09 +09:00
validate_response(challenge, token, user.email, "delete_account", HMAC_KEY, PG_DB, locale)
rescue ex
error_message = ex.message
next templated "error"
end
view_name = "subscriptions_#{sha256(user.email)[0..7]}"
PG_DB.exec("DROP MATERIALIZED VIEW #{view_name}")
PG_DB.exec("DELETE FROM users * WHERE email = $1", user.email)
env.request.cookies.each do |cookie|
cookie.expires = Time.new(1990, 1, 1)
end
env.request.cookies.add_response_headers(env.response.headers)
end
env.redirect referer
end
2018-08-05 05:30:44 +09:00
get "/clear_watch_history" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
referer = get_referer(env)
2018-08-09 10:26:02 +09:00
if user
user = user.as(User)
challenge, token = create_response(user.email, "clear_watch_history", HMAC_KEY, PG_DB)
templated "clear_watch_history"
else
env.redirect referer
end
end
post "/clear_watch_history" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
if user
user = user.as(User)
2018-04-08 11:36:09 +09:00
challenge = env.params.body["challenge"]?
token = env.params.body["token"]?
begin
2018-12-21 06:32:09 +09:00
validate_response(challenge, token, user.email, "clear_watch_history", HMAC_KEY, PG_DB, locale)
rescue ex
error_message = ex.message
next templated "error"
end
2018-08-26 11:49:18 +09:00
PG_DB.exec("UPDATE users SET watched = '{}' WHERE email = $1", user.email)
2018-08-05 05:30:44 +09:00
end
env.redirect referer
end
# Feeds
2018-11-27 01:50:34 +09:00
get "/feed/top" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-11-27 01:50:34 +09:00
templated "top"
end
get "/feed/popular" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-11-27 01:50:34 +09:00
templated "popular"
end
2018-11-21 02:18:12 +09:00
get "/feed/trending" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-11-21 02:18:12 +09:00
trending_type = env.params.query["type"]?
2018-12-21 07:48:45 +09:00
trending_type ||= "Default"
2018-11-21 02:18:12 +09:00
region = env.params.query["region"]?
2018-12-21 07:48:45 +09:00
region ||= "US"
2018-11-21 02:18:12 +09:00
begin
2018-12-21 06:32:09 +09:00
trending = fetch_trending(trending_type, proxies, region, locale)
2018-11-21 02:18:12 +09:00
rescue ex
error_message = "#{ex.message}"
next templated "error"
end
templated "trending"
end
2018-08-05 05:30:44 +09:00
get "/feed/subscriptions" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
2018-08-09 10:26:02 +09:00
referer = get_referer(env)
2018-08-05 05:30:44 +09:00
if user
user = user.as(User)
preferences = user.preferences
if preferences.unseen_only
env.set "show_watched", true
end
2018-08-05 05:30:44 +09:00
# Refresh account
headers = HTTP::Headers.new
headers["Cookie"] = env.request.headers["Cookie"]
if !user.password
2018-12-16 03:05:52 +09:00
user = get_user(user.id[0], headers, PG_DB)
2018-07-19 04:26:02 +09:00
end
2018-03-26 12:21:24 +09:00
2018-08-05 05:30:44 +09:00
max_results = preferences.max_results
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
2018-07-19 04:26:02 +09:00
else
2018-08-05 05:30:44 +09:00
limit = max_results
offset = (page - 1) * max_results
2018-07-19 04:26:02 +09:00
end
2018-04-08 11:36:09 +09:00
if preferences.sort == "published - reverse"
sort = ""
else
sort = "DESC"
end
2018-08-05 05:30:44 +09:00
notifications = PG_DB.query_one("SELECT notifications FROM users WHERE email = $1", user.email,
as: Array(String))
view_name = "subscriptions_#{sha256(user.email)[0..7]}"
2018-08-05 05:30:44 +09:00
if preferences.notifications_only && !notifications.empty?
args = arg_array(notifications)
2018-07-19 04:26:02 +09:00
notifications = PG_DB.query_all("SELECT * FROM channel_videos WHERE id IN (#{args})
ORDER BY published #{sort}", notifications, as: ChannelVideo)
videos = [] of ChannelVideo
2018-07-19 04:26:02 +09:00
notifications.sort_by! { |video| video.published }.reverse!
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
case preferences.sort
when "alphabetically"
notifications.sort_by! { |video| video.title }
2018-08-05 05:30:44 +09:00
when "alphabetically - reverse"
notifications.sort_by! { |video| video.title }.reverse!
2018-08-05 05:30:44 +09:00
when "channel name"
notifications.sort_by! { |video| video.author }
2018-08-05 05:30:44 +09:00
when "channel name - reverse"
notifications.sort_by! { |video| video.author }.reverse!
2018-08-05 05:30:44 +09:00
end
else
if preferences.latest_only
if preferences.unseen_only
if user.watched.empty?
watched = "'{}'"
else
watched = arg_array(user.watched)
2018-08-05 05:30:44 +09:00
end
2018-07-19 04:26:02 +09:00
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM #{view_name} WHERE \
id NOT IN (#{watched}) ORDER BY ucid, published #{sort}",
user.watched, as: ChannelVideo)
2018-07-19 04:26:02 +09:00
else
2018-10-10 08:39:19 +09:00
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM #{view_name} \
2018-11-21 23:25:21 +09:00
ORDER BY ucid, published #{sort}", as: ChannelVideo)
2018-07-19 04:26:02 +09:00
end
2018-04-08 11:36:09 +09:00
2018-08-05 05:30:44 +09:00
videos.sort_by! { |video| video.published }.reverse!
2018-07-19 04:26:02 +09:00
else
2018-08-05 05:30:44 +09:00
if preferences.unseen_only
if user.watched.empty?
watched = "'{}'"
else
watched = arg_array(user.watched, 3)
2018-08-05 05:30:44 +09:00
end
2018-07-19 04:26:02 +09:00
videos = PG_DB.query_all("SELECT * FROM #{view_name} WHERE \
id NOT IN (#{watched}) ORDER BY published #{sort} LIMIT $1 OFFSET $2",
[limit, offset] + user.watched, as: ChannelVideo)
2018-08-05 05:30:44 +09:00
else
videos = PG_DB.query_all("SELECT * FROM #{view_name} \
ORDER BY published #{sort} LIMIT $1 OFFSET $2", limit, offset, as: ChannelVideo)
2018-08-05 05:30:44 +09:00
end
end
2018-03-17 01:40:29 +09:00
2018-08-05 05:30:44 +09:00
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
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
# TODO: Add option to disable picking out notifications from regular feed
notifications = PG_DB.query_one("SELECT notifications FROM users WHERE email = $1", user.email,
as: Array(String))
2018-03-25 12:38:35 +09:00
2018-08-05 05:30:44 +09:00
notifications = videos.select { |v| notifications.includes? v.id }
videos = videos - notifications
end
2018-08-05 05:30:44 +09:00
if !limit
videos = videos[0..max_results]
2018-03-23 02:44:36 +09:00
end
2018-11-22 08:12:13 +09:00
PG_DB.exec("UPDATE users SET notifications = $1, updated = $2 WHERE email = $3", [] of String, Time.now,
user.email)
2018-08-05 05:30:44 +09:00
user.notifications = [] of String
env.set "user", user
templated "subscriptions"
else
2018-08-09 10:26:02 +09:00
env.redirect referer
2018-03-17 01:40:29 +09:00
end
end
get "/feed/history" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
user = env.get? "user"
referer = get_referer(env)
page = env.params.query["page"]?.try &.to_i?
page ||= 1
if user
user = user.as(User)
2018-11-10 11:37:46 +09:00
limit = user.preferences.max_results
if user.watched[(page - 1)*limit]?
watched = user.watched.reverse[(page - 1)*limit, limit]
else
watched = [] of String
end
2018-11-10 11:37:46 +09:00
templated "history"
else
env.redirect referer
end
end
2018-11-10 08:25:24 +09:00
2018-08-05 05:30:44 +09:00
get "/feed/channel/:ucid" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-21 23:40:04 +09:00
env.response.content_type = "text/xml"
2018-08-05 05:30:44 +09:00
ucid = env.params.url["ucid"]
2018-04-08 11:36:09 +09:00
2018-09-21 23:40:04 +09:00
begin
2018-12-21 06:32:09 +09:00
author, ucid, auto_generated = get_about_info(ucid, locale)
2018-09-21 23:40:04 +09:00
rescue ex
error_message = ex.message
halt env, status_code: 500, response: error_message
2018-09-05 11:04:40 +09:00
end
page = 1
videos, count = get_60_videos(ucid, page, auto_generated)
videos.select! { |video| !video.paid }
2018-07-17 01:24:24 +09:00
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2018-08-05 05:30:44 +09:00
path = env.request.path
2018-07-17 01:24:24 +09:00
2018-08-05 05:30:44 +09:00
feed = XML.build(indent: " ", encoding: "UTF-8") do |xml|
xml.element("feed", "xmlns:yt": "http://www.youtube.com/xml/schemas/2015",
2018-12-24 03:07:04 +09:00
"xmlns:media": "http://search.yahoo.com/mrss/", xmlns: "http://www.w3.org/2005/Atom",
"xml:lang": "en-US") do
2018-08-05 13:07:38 +09:00
xml.element("link", rel: "self", href: "#{host_url}#{path}")
2018-08-05 05:30:44 +09:00
xml.element("id") { xml.text "yt:channel:#{ucid}" }
xml.element("yt:channelId") { xml.text ucid }
2018-09-21 23:40:04 +09:00
xml.element("title") { xml.text author }
2018-08-05 13:07:38 +09:00
xml.element("link", rel: "alternate", href: "#{host_url}/channel/#{ucid}")
2018-07-28 23:49:58 +09:00
2018-08-05 05:30:44 +09:00
xml.element("author") do
2018-09-21 23:40:04 +09:00
xml.element("name") { xml.text author }
2018-08-05 13:07:38 +09:00
xml.element("uri") { xml.text "#{host_url}/channel/#{ucid}" }
2018-08-05 05:30:44 +09:00
end
2018-09-05 11:04:40 +09:00
videos.each do |video|
2018-08-05 05:30:44 +09:00
xml.element("entry") do
2018-08-10 22:38:31 +09:00
xml.element("id") { xml.text "yt:video:#{video.id}" }
xml.element("yt:videoId") { xml.text video.id }
2018-09-05 11:35:25 +09:00
xml.element("yt:channelId") { xml.text video.ucid }
2018-08-10 22:38:31 +09:00
xml.element("title") { xml.text video.title }
xml.element("link", rel: "alternate", href: "#{host_url}/watch?v=#{video.id}")
2018-08-05 05:30:44 +09:00
xml.element("author") do
2018-09-05 11:35:25 +09:00
if auto_generated
xml.element("name") { xml.text video.author }
xml.element("uri") { xml.text "#{host_url}/channel/#{video.ucid}" }
else
xml.element("name") { xml.text author }
xml.element("uri") { xml.text "#{host_url}/channel/#{ucid}" }
end
2018-08-05 05:30:44 +09:00
end
2018-07-29 10:40:59 +09:00
2018-08-10 22:38:31 +09:00
xml.element("published") { xml.text video.published.to_s("%Y-%m-%dT%H:%M:%S%:z") }
2018-08-01 00:44:07 +09:00
2018-08-05 05:30:44 +09:00
xml.element("media:group") do
2018-08-10 22:38:31 +09:00
xml.element("media:title") { xml.text video.title }
2018-09-15 11:24:28 +09:00
xml.element("media:thumbnail", url: "/vi/#{video.id}/mqdefault.jpg",
2018-08-10 22:38:31 +09:00
width: "320", height: "180")
xml.element("media:description") { xml.text video.description }
2018-08-05 05:30:44 +09:00
end
2018-07-17 01:24:24 +09:00
2018-08-05 05:30:44 +09:00
xml.element("media:community") do
2018-08-10 22:38:31 +09:00
xml.element("media:statistics", views: video.views)
2018-08-05 05:30:44 +09:00
end
end
end
end
2018-07-17 01:24:24 +09:00
end
2018-08-05 05:30:44 +09:00
feed
2018-07-17 01:24:24 +09:00
end
2018-08-05 05:30:44 +09:00
get "/feed/private" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
token = env.params.query["token"]?
2018-07-17 01:24:24 +09:00
2018-08-05 05:30:44 +09:00
if !token
halt env, status_code: 403
end
2018-03-25 12:38:35 +09:00
2018-08-05 05:30:44 +09:00
user = PG_DB.query_one?("SELECT * FROM users WHERE token = $1", token.strip, as: User)
if !user
halt env, status_code: 403
end
2018-08-05 05:30:44 +09:00
max_results = env.params.query["max_results"]?.try &.to_i?
max_results ||= 40
2018-08-05 05:30:44 +09:00
page = env.params.query["page"]?.try &.to_i?
page ||= 1
2018-03-25 12:38:35 +09:00
2018-08-05 05:30:44 +09:00
if max_results < 0
limit = nil
offset = (page - 1) * 1
else
limit = max_results
offset = (page - 1) * max_results
end
2018-03-25 12:38:35 +09:00
2018-08-05 05:30:44 +09:00
latest_only = env.params.query["latest_only"]?.try &.to_i?
latest_only ||= 0
latest_only = latest_only == 1
if user.preferences.sort == "published - reverse"
sort = ""
else
sort = "DESC"
end
view_name = "subscriptions_#{sha256(user.email)[0..7]}"
2018-08-05 05:30:44 +09:00
if latest_only
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM #{view_name} ORDER BY ucid, published #{sort}", as: ChannelVideo)
2018-08-05 05:30:44 +09:00
videos.sort_by! { |video| video.published }.reverse!
else
videos = PG_DB.query_all("SELECT * FROM #{view_name} \
ORDER BY published #{sort} LIMIT $1 OFFSET $2", limit, offset, as: ChannelVideo)
2018-08-05 05:30:44 +09:00
end
2018-07-29 10:40:59 +09:00
2018-08-05 05:30:44 +09:00
sort = env.params.query["sort"]?
sort ||= "published"
2018-07-29 10:40:59 +09:00
2018-08-05 05:30:44 +09:00
case sort
when "alphabetically"
videos.sort_by! { |video| video.title }
when "reverse_alphabetically"
videos.sort_by! { |video| video.title }.reverse!
when "channel_name"
videos.sort_by! { |video| video.author }
when "reverse_channel_name"
videos.sort_by! { |video| video.author }.reverse!
end
2018-08-01 00:44:07 +09:00
2018-08-05 05:30:44 +09:00
if !limit
videos = videos[0..max_results]
end
2018-07-29 10:40:59 +09:00
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2018-08-05 05:30:44 +09:00
path = env.request.path
query = env.request.query.not_nil!
2018-08-01 00:44:07 +09:00
2018-08-05 05:30:44 +09:00
feed = XML.build(indent: " ", encoding: "UTF-8") do |xml|
2018-12-24 03:07:04 +09:00
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",
2018-08-05 05:30:44 +09:00
"xml:lang": "en-US") do
2018-08-05 13:07:38 +09:00
xml.element("link", "type": "text/html", rel: "alternate", href: "#{host_url}/feed/subscriptions")
xml.element("link", "type": "application/atom+xml", rel: "self", href: "#{host_url}#{path}?#{query}")
2018-12-21 06:32:09 +09:00
xml.element("title") { xml.text translate(locale, "Invidious Private Feed for `x`", user.email) }
2018-08-05 05:30:44 +09:00
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 }
2018-08-05 13:07:38 +09:00
xml.element("link", rel: "alternate", href: "#{host_url}/watch?v=#{video.id}")
2018-08-05 05:30:44 +09:00
xml.element("author") do
xml.element("name") { xml.text video.author }
2018-08-05 13:07:38 +09:00
xml.element("uri") { xml.text "#{host_url}/channel/#{video.ucid}" }
2018-08-05 05:30:44 +09:00
end
2018-08-05 05:30:44 +09:00
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") }
2018-08-05 05:30:44 +09:00
xml.element("media:group") do
xml.element("media:title") { xml.text video.title }
2018-09-15 11:24:28 +09:00
xml.element("media:thumbnail", url: "/vi/#{video.id}/mqdefault.jpg",
2018-08-10 22:38:31 +09:00
width: "320", height: "180")
2018-08-05 05:30:44 +09:00
end
end
end
end
2018-08-05 05:30:44 +09:00
end
2018-04-01 09:09:27 +09:00
2018-08-05 05:30:44 +09:00
env.response.content_type = "application/atom+xml"
feed
end
2018-03-25 12:38:35 +09:00
2018-09-18 08:13:24 +09:00
get "/feed/playlist/:plid" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-18 08:13:24 +09:00
plid = env.params.url["plid"]
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2018-09-18 08:13:24 +09:00
path = env.request.path
client = make_client(YT_URL)
response = client.get("/feeds/videos.xml?playlist_id=#{plid}")
document = XML.parse(response.body)
document.xpath_nodes(%q(//*[@href]|//*[@url])).each do |node|
node.attributes.each do |attribute|
case attribute.name
when "url"
node["url"] = "#{host_url}#{URI.parse(node["url"]).full_path}"
when "href"
node["href"] = "#{host_url}#{URI.parse(node["href"]).full_path}"
end
end
end
document = document.to_xml(options: XML::SaveOptions::NO_DECL)
document.scan(/<uri>(?<url>[^<]+)<\/uri>/).each do |match|
content = "#{host_url}#{URI.parse(match["url"]).full_path}"
document = document.gsub(match[0], "<uri>#{content}</uri>")
end
env.response.content_type = "text/xml"
document
end
2018-08-05 05:30:44 +09:00
# Channels
2018-09-04 23:13:58 +09:00
# YouTube appears to let users set a "brand" URL that
# is different from their username, so we convert that here
get "/c/:user" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-04 23:13:58 +09:00
client = make_client(YT_URL)
user = env.params.url["user"]
response = client.get("/c/#{user}")
document = XML.parse_html(response.body)
anchor = document.xpath_node(%q(//a[contains(@class,"branded-page-header-title-link")]))
if !anchor
next env.redirect "/"
end
env.redirect anchor["href"]
end
# Legacy endpoint for /user/:username
get "/profile" do |env|
user = env.params.query["user"]?
if !user
env.redirect "/"
else
env.redirect "/user/#{user}"
end
end
2018-08-05 05:30:44 +09:00
get "/user/:user" do |env|
user = env.params.url["user"]
env.redirect "/channel/#{user}"
2018-03-25 12:38:35 +09:00
end
2018-09-06 13:12:11 +09:00
get "/user/:user/videos" do |env|
user = env.params.url["user"]
env.redirect "/channel/#{user}/videos"
end
2018-08-05 05:30:44 +09:00
get "/channel/:ucid" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
user = env.get? "user"
if user
user = user.as(User)
subscriptions = user.subscriptions
end
subscriptions ||= [] of String
2018-07-28 22:24:53 +09:00
ucid = env.params.url["ucid"]
2018-08-05 05:30:44 +09:00
page = env.params.query["page"]?.try &.to_i?
page ||= 1
2018-11-14 10:04:25 +09:00
sort_by = env.params.query["sort_by"]?.try &.downcase
sort_by ||= "newest"
2018-09-21 23:40:04 +09:00
begin
2018-12-21 06:32:09 +09:00
author, ucid, auto_generated, sub_count = get_about_info(ucid, locale)
2018-09-21 23:40:04 +09:00
rescue ex
error_message = ex.message
2018-09-21 23:40:04 +09:00
next templated "error"
2018-08-05 05:30:44 +09:00
end
2018-09-14 07:47:31 +09:00
if !auto_generated
if author.includes?(" ") || author.includes?("-")
2018-09-14 07:47:31 +09:00
env.set "search", "channel:#{ucid} "
else
env.set "search", "channel:#{author.downcase} "
end
end
2018-11-14 10:04:25 +09:00
videos, count = get_60_videos(ucid, page, auto_generated, sort_by)
videos.select! { |video| !video.paid }
2018-08-05 05:30:44 +09:00
templated "channel"
end
get "/channel/:ucid/videos" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-08-05 05:30:44 +09:00
ucid = env.params.url["ucid"]
params = env.request.query
if !params || params.empty?
params = ""
else
params = "?#{params}"
end
2018-08-05 05:30:44 +09:00
env.redirect "/channel/#{ucid}#{params}"
end
2018-07-28 22:24:53 +09:00
2018-08-05 05:30:44 +09:00
# API Endpoints
2018-07-28 22:24:53 +09:00
2018-08-05 05:30:44 +09:00
get "/api/v1/captions/:id" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-27 08:44:37 +09:00
env.response.content_type = "application/json"
2018-08-05 05:30:44 +09:00
id = env.params.url["id"]
region = env.params.query["region"]?
2018-07-30 11:01:28 +09:00
2018-08-05 05:30:44 +09:00
client = make_client(YT_URL)
begin
video = get_video(id, PG_DB, proxies, region: region)
rescue ex : VideoRedirect
next env.redirect "/api/v1/captions/#{ex.message}"
2018-08-05 05:30:44 +09:00
rescue ex
halt env, status_code: 500
2018-07-28 22:24:53 +09:00
end
2018-08-05 13:07:38 +09:00
captions = video.captions
2018-07-28 22:24:53 +09:00
2018-08-05 05:30:44 +09:00
label = env.params.query["label"]?
lang = env.params.query["lang"]?
tlang = env.params.query["tlang"]?
if !label && !lang
2018-08-05 05:30:44 +09:00
response = JSON.build do |json|
json.object do
json.field "captions" do
json.array do
2018-08-05 13:07:38 +09:00
captions.each do |caption|
2018-08-05 05:30:44 +09:00
json.object do
2018-08-07 08:25:25 +09:00
json.field "label", caption.name.simpleText
json.field "languageCode", caption.languageCode
2018-09-20 04:08:59 +09:00
json.field "url", "/api/v1/captions/#{id}?label=#{URI.escape(caption.name.simpleText)}"
2018-08-05 05:30:44 +09:00
end
end
end
end
2018-07-28 22:24:53 +09:00
end
2018-08-05 05:30:44 +09:00
end
2018-07-28 22:24:53 +09:00
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
next JSON.parse(response).to_pretty_json
else
next response
end
2018-08-05 05:30:44 +09:00
end
2018-07-28 22:24:53 +09:00
env.response.content_type = "text/vtt"
2018-08-07 08:25:25 +09:00
caption = captions.select { |caption| caption.name.simpleText == label }
2018-07-28 22:24:53 +09:00
if lang
caption = captions.select { |caption| caption.languageCode == lang }
end
2018-08-05 13:07:38 +09:00
if caption.empty?
halt env, status_code: 404
2018-08-05 05:30:44 +09:00
else
2018-08-05 13:07:38 +09:00
caption = caption[0]
2018-08-05 05:30:44 +09:00
end
2018-07-28 22:24:53 +09:00
caption_xml = client.get(caption.baseUrl + "&tlang=#{tlang}").body
2018-08-05 13:07:38 +09:00
caption_xml = XML.parse(caption_xml)
2018-07-28 22:24:53 +09:00
2018-08-05 05:30:44 +09:00
webvtt = <<-END_VTT
WEBVTT
Kind: captions
Language: #{tlang || caption.languageCode}
2018-07-28 22:24:53 +09:00
2018-08-05 05:30:44 +09:00
END_VTT
2018-07-28 22:24:53 +09:00
caption_nodes = caption_xml.xpath_nodes("//transcript/text")
caption_nodes.each_with_index do |node, i|
2018-08-05 05:30:44 +09:00
start_time = node["start"].to_f.seconds
duration = node["dur"]?.try &.to_f.seconds
duration ||= start_time
if caption_nodes.size > i + 1
end_time = caption_nodes[i + 1]["start"].to_f.seconds
else
end_time = start_time + duration
end
2018-07-28 22:24:53 +09:00
2018-08-05 05:30:44 +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)
text = text.gsub(/<font color="#[a-fA-F0-9]{6}">/, "")
text = text.gsub(/<\/font>/, "")
2018-08-05 05:30:44 +09:00
if md = text.match(/(?<name>.*) : (?<text>.*)/)
text = "<v #{md["name"]}>#{md["text"]}</v>"
2018-07-28 22:24:53 +09:00
end
2018-08-05 05:30:44 +09:00
webvtt = webvtt + <<-END_CUE
#{start_time} --> #{end_time}
#{text}
END_CUE
2018-07-28 22:24:53 +09:00
end
2018-08-05 05:30:44 +09:00
webvtt
2018-07-28 22:24:53 +09:00
end
2018-08-05 05:30:44 +09:00
get "/api/v1/comments/:id" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-27 08:44:37 +09:00
env.response.content_type = "application/json"
2018-08-05 05:30:44 +09:00
id = env.params.url["id"]
2018-07-21 01:19:49 +09:00
2018-08-05 05:30:44 +09:00
source = env.params.query["source"]?
source ||= "youtube"
2018-07-21 01:19:49 +09:00
2018-08-05 05:30:44 +09:00
format = env.params.query["format"]?
format ||= "json"
2018-07-21 01:19:49 +09:00
continuation = env.params.query["continuation"]?
continuation ||= ""
2018-08-05 05:30:44 +09:00
if source == "youtube"
begin
2018-12-21 06:32:09 +09:00
comments = fetch_youtube_comments(id, continuation, proxies, format, locale)
rescue ex
error_message = {"error" => ex.message}.to_json
halt env, status_code: 500, response: error_message
2018-07-21 01:19:49 +09:00
end
next comments
2018-08-05 05:30:44 +09:00
elsif source == "reddit"
begin
comments, reddit_thread = fetch_reddit_comments(id)
2018-12-21 06:32:09 +09:00
content_html = template_reddit_comments(comments, locale)
2018-08-05 05:30:44 +09:00
content_html = fill_links(content_html, "https", "www.reddit.com")
2018-09-04 12:15:47 +09:00
content_html = replace_links(content_html)
2018-08-05 05:30:44 +09:00
rescue ex
2018-09-07 00:19:28 +09:00
comments = nil
2018-08-05 05:30:44 +09:00
reddit_thread = nil
content_html = ""
end
2018-07-17 01:24:24 +09:00
2018-09-07 00:19:28 +09:00
if !reddit_thread || !comments
2018-08-05 05:30:44 +09:00
halt env, status_code: 404
end
2018-09-07 00:19:28 +09:00
if format == "json"
reddit_thread = JSON.parse(reddit_thread.to_json).as_h
reddit_thread["comments"] = JSON.parse(comments.to_json)
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
next reddit_thread.to_pretty_json
else
next reddit_thread.to_json
end
2018-09-07 00:19:28 +09:00
else
2019-01-26 01:50:18 +09:00
response = {
2018-09-07 00:19:28 +09:00
"title" => reddit_thread.title,
2018-09-07 08:18:36 +09:00
"permalink" => reddit_thread.permalink,
"contentHtml" => content_html,
2019-01-26 01:50:18 +09:00
}
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
next response.to_pretty_json
else
next response.to_json
end
2018-09-07 08:18:36 +09:00
end
2018-08-05 05:30:44 +09:00
end
end
2018-09-18 10:08:26 +09:00
get "/api/v1/insights/:id" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-18 10:08:26 +09:00
id = env.params.url["id"]
env.response.content_type = "application/json"
error_message = {"error" => "YouTube has removed publicly-available analytics."}.to_json
halt env, status_code: 503, response: error_message
2018-09-18 10:08:26 +09:00
client = make_client(YT_URL)
headers = HTTP::Headers.new
2018-09-26 07:55:32 +09:00
html = client.get("/watch?v=#{id}&gl=US&hl=en&disable_polymer=1")
2018-09-18 10:08:26 +09:00
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"]
post_req = {
"session_token" => session_token,
}
post_req = HTTP::Params.encode(post_req)
response = client.post("/insight_ajax?action_get_statistics_and_data=1&v=#{id}", headers, post_req).body
response = XML.parse(response)
html_content = XML.parse_html(response.xpath_node(%q(//html_content)).not_nil!.content)
graph_data = response.xpath_node(%q(//graph_data))
if !graph_data
error = html_content.xpath_node(%q(//p)).not_nil!.content
next {"error" => error}.to_json
end
graph_data = JSON.parse(graph_data.content)
view_count = 0_i64
time_watched = 0_i64
subscriptions_driven = 0
shares = 0
stats_nodes = html_content.xpath_nodes(%q(//table/tr/td))
stats_nodes.each do |node|
key = node.xpath_node(%q(.//span))
value = node.xpath_node(%q(.//div))
if !key || !value
next
end
key = key.content
value = value.content
case key
when "Views"
view_count = value.delete(", ").to_i64
when "Time watched"
time_watched = value
when "Subscriptions driven"
subscriptions_driven = value.delete(", ").to_i
when "Shares"
shares = value.delete(", ").to_i
end
end
avg_view_duration_seconds = html_content.xpath_node(%q(//div[@id="stats-chart-tab-watch-time"]/span/span[2])).not_nil!.content
avg_view_duration_seconds = decode_length_seconds(avg_view_duration_seconds)
2019-01-26 01:50:18 +09:00
response = {
2018-09-18 10:08:26 +09:00
"viewCount" => view_count,
"timeWatchedText" => time_watched,
"subscriptionsDriven" => subscriptions_driven,
"shares" => shares,
"avgViewDurationSeconds" => avg_view_duration_seconds,
"graphData" => graph_data,
2019-01-26 01:50:18 +09:00
}
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
next response.to_pretty_json
else
next response.to_json
end
2018-09-18 10:08:26 +09:00
end
2018-08-05 05:30:44 +09:00
get "/api/v1/videos/:id" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-29 13:12:35 +09:00
env.response.content_type = "application/json"
2018-08-05 05:30:44 +09:00
id = env.params.url["id"]
region = env.params.query["region"]?
2018-08-05 05:30:44 +09:00
begin
video = get_video(id, PG_DB, proxies, region: region)
rescue ex : VideoRedirect
next env.redirect "/api/v1/videos/#{ex.message}"
2018-08-05 05:30:44 +09:00
rescue ex
2018-09-21 23:40:04 +09:00
error_message = {"error" => ex.message}.to_json
halt env, status_code: 500, response: error_message
2018-08-05 05:30:44 +09:00
end
2018-08-05 13:07:38 +09:00
fmt_stream = video.fmt_stream(decrypt_function)
adaptive_fmts = video.adaptive_fmts(decrypt_function)
2018-08-05 13:07:38 +09:00
captions = video.captions
2018-08-05 05:30:44 +09:00
video_info = JSON.build do |json|
json.object do
json.field "title", video.title
json.field "videoId", video.id
json.field "videoThumbnails" do
2018-08-10 22:50:25 +09:00
generate_thumbnails(json, video.id)
2018-08-05 05:30:44 +09:00
end
2018-07-17 01:24:24 +09:00
2018-09-04 22:52:30 +09:00
video.description, description = html_to_content(video.description)
2018-07-06 09:48:55 +09:00
json.field "description", description
2018-08-05 05:30:44 +09:00
json.field "descriptionHtml", video.description
2018-11-05 00:37:12 +09:00
json.field "published", video.published.to_unix
2018-12-21 06:32:09 +09:00
json.field "publishedText", translate(locale, "`x` ago", recode_date(video.published))
2018-11-02 22:09:28 +09:00
json.field "keywords", video.keywords
2018-08-05 05:30:44 +09:00
json.field "viewCount", video.views
json.field "likeCount", video.likes
json.field "dislikeCount", video.dislikes
2018-10-17 01:15:14 +09:00
json.field "paid", video.paid
json.field "premium", video.premium
2018-08-05 05:30:44 +09:00
json.field "isFamilyFriendly", video.is_family_friendly
json.field "allowedRegions", video.allowed_regions
json.field "genre", video.genre
2018-09-04 23:50:19 +09:00
json.field "genreUrl", video.genre_url
2018-08-05 05:30:44 +09:00
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
json.field "authorThumbnails" do
json.array do
qualities = [32, 48, 76, 100, 176, 512]
qualities.each do |quality|
json.object do
json.field "url", video.author_thumbnail.gsub("=s48-", "=s#{quality}-")
json.field "width", quality
json.field "height", quality
end
end
end
end
json.field "subCountText", video.sub_count_text
2018-07-06 09:48:55 +09:00
2018-08-05 05:30:44 +09:00
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
2018-08-05 05:30:44 +09:00
if video.info["is_listed"]?
json.field "isListed", video.info["is_listed"] == "1"
end
2019-01-13 03:00:44 +09:00
if video.player_response["streamingData"]?.try &.["hlsManifestUrl"]?
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2019-01-20 01:41:20 +09:00
2018-08-08 02:36:55 +09:00
host_params = env.request.query_params
host_params.delete_all("v")
2019-01-13 03:00:44 +09:00
hlsvp = video.player_response["streamingData"]["hlsManifestUrl"].as_s
2018-08-08 02:36:55 +09:00
hlsvp = hlsvp.gsub("https://manifest.googlevideo.com", host_url)
2018-08-08 04:45:37 +09:00
json.field "hlsUrl", hlsvp
2018-08-08 02:36:55 +09:00
end
2018-08-01 13:56:17 +09:00
2018-08-05 05:30:44 +09:00
json.field "adaptiveFormats" do
json.array do
2018-08-12 23:24:59 +09:00
adaptive_fmts.each do |fmt|
2018-08-05 05:30:44 +09:00
json.object do
2018-08-12 23:24:59 +09:00
json.field "index", fmt["index"]
json.field "bitrate", fmt["bitrate"]
json.field "init", fmt["init"]
json.field "url", fmt["url"]
json.field "itag", fmt["itag"]
json.field "type", fmt["type"]
json.field "clen", fmt["clen"]
json.field "lmt", fmt["lmt"]
json.field "projectionType", fmt["projection_type"]
fmt_info = itag_to_metadata?(fmt["itag"])
if fmt_info
fps = fmt_info["fps"]?.try &.to_i || fmt["fps"]?.try &.to_i || 30
json.field "fps", fps
json.field "container", fmt_info["ext"]
json.field "encoding", fmt_info["vcodec"]? || fmt_info["acodec"]
if fmt_info["height"]?
json.field "resolution", "#{fmt_info["height"]}p"
quality_label = "#{fmt_info["height"]}p"
if fps > 30
quality_label += "60"
end
json.field "qualityLabel", quality_label
2018-08-12 23:24:59 +09:00
if fmt_info["width"]?
json.field "size", "#{fmt_info["width"]}x#{fmt_info["height"]}"
end
end
end
end
end
end
end
2018-08-05 05:30:44 +09:00
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"]
2018-08-12 23:24:59 +09:00
fmt_info = itag_to_metadata?(fmt["itag"])
if fmt_info
fps = fmt_info["fps"]?.try &.to_i || fmt["fps"]?.try &.to_i || 30
json.field "fps", fps
json.field "container", fmt_info["ext"]
json.field "encoding", fmt_info["vcodec"]? || fmt_info["acodec"]
2018-08-12 23:24:59 +09:00
if fmt_info["height"]?
json.field "resolution", "#{fmt_info["height"]}p"
2018-08-12 23:24:59 +09:00
quality_label = "#{fmt_info["height"]}p"
if fps > 30
quality_label += "60"
end
json.field "qualityLabel", quality_label
2018-08-12 23:24:59 +09:00
if fmt_info["width"]?
json.field "size", "#{fmt_info["width"]}x#{fmt_info["height"]}"
end
2018-08-05 05:30:44 +09:00
end
end
end
end
end
2018-08-05 05:30:44 +09:00
end
2018-08-05 05:30:44 +09:00
json.field "captions" do
json.array do
captions.each do |caption|
json.object do
2018-08-07 08:25:25 +09:00
json.field "label", caption.name.simpleText
json.field "languageCode", caption.languageCode
2018-09-20 04:08:59 +09:00
json.field "url", "/api/v1/captions/#{id}?label=#{URI.escape(caption.name.simpleText)}"
2018-08-05 05:30:44 +09:00
end
end
end
2018-08-05 05:30:44 +09:00
end
2018-08-05 05:30:44 +09:00
json.field "recommendedVideos" do
json.array do
2018-08-14 00:50:09 +09:00
video.info["rvs"]?.try &.split(",").each do |rv|
2018-08-05 05:30:44 +09:00
rv = HTTP::Params.parse(rv)
2018-08-05 05:30:44 +09:00
if rv["id"]?
json.object do
json.field "videoId", rv["id"]
json.field "title", rv["title"]
json.field "videoThumbnails" do
2018-08-10 22:50:25 +09:00
generate_thumbnails(json, rv["id"])
2018-08-05 05:30:44 +09:00
end
json.field "author", rv["author"]
2018-08-06 02:18:14 +09:00
json.field "lengthSeconds", rv["length_seconds"].to_i
2018-09-01 12:53:14 +09:00
json.field "viewCountText", rv["short_view_count_text"]
2018-08-05 05:30:44 +09:00
end
end
end
end
2018-08-05 05:30:44 +09:00
end
end
end
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(video_info).to_pretty_json
else
video_info
end
2018-08-05 05:30:44 +09:00
end
2018-08-05 05:30:44 +09:00
get "/api/v1/trending" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2019-01-26 01:50:18 +09:00
env.response.content_type = "application/json"
2018-11-21 02:18:12 +09:00
region = env.params.query["region"]?
trending_type = env.params.query["type"]?
begin
2018-12-21 06:32:09 +09:00
trending = fetch_trending(trending_type, proxies, region, locale)
2018-11-21 02:18:12 +09:00
rescue ex
error_message = {"error" => ex.message}.to_json
halt env, status_code: 500, response: error_message
end
2018-08-05 05:30:44 +09:00
videos = JSON.build do |json|
json.array do
2018-11-21 02:18:12 +09:00
trending.each do |video|
2018-08-05 05:30:44 +09:00
json.object do
json.field "title", video.title
json.field "videoId", video.id
2018-08-05 05:30:44 +09:00
json.field "videoThumbnails" do
generate_thumbnails(json, video.id)
2018-08-05 05:30:44 +09:00
end
json.field "lengthSeconds", video.length_seconds
json.field "viewCount", video.views
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
2018-11-05 00:37:12 +09:00
json.field "published", video.published.to_unix
2018-12-21 06:32:09 +09:00
json.field "publishedText", translate(locale, "`x` ago", recode_date(video.published))
json.field "description", video.description
json.field "descriptionHtml", video.description_html
2018-11-21 02:18:12 +09:00
json.field "liveNow", video.live_now
json.field "paid", video.paid
json.field "premium", video.premium
2018-08-05 05:30:44 +09:00
end
end
end
end
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(videos).to_pretty_json
else
videos
end
2018-08-05 05:30:44 +09:00
end
2018-11-26 09:13:11 +09:00
get "/api/v1/popular" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2019-01-26 01:50:18 +09:00
env.response.content_type = "application/json"
2018-11-26 09:13:11 +09:00
videos = JSON.build do |json|
json.array do
popular_videos.each do |video|
json.object do
json.field "title", video.title
json.field "videoId", video.id
json.field "videoThumbnails" do
generate_thumbnails(json, video.id)
end
2018-11-26 09:16:56 +09:00
json.field "lengthSeconds", video.length_seconds
2018-11-26 09:13:11 +09:00
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
json.field "published", video.published.to_unix
2018-12-21 06:32:09 +09:00
json.field "publishedText", translate(locale, "`x` ago", recode_date(video.published))
2018-11-26 09:13:11 +09:00
end
end
end
end
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(videos).to_pretty_json
else
videos
end
2018-11-26 09:13:11 +09:00
end
2018-08-05 05:30:44 +09:00
get "/api/v1/top" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2019-01-26 01:50:18 +09:00
env.response.content_type = "application/json"
2018-08-05 05:30:44 +09:00
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
2018-08-10 22:50:25 +09:00
generate_thumbnails(json, video.id)
end
2018-08-05 05:30:44 +09:00
json.field "lengthSeconds", video.info["length_seconds"].to_i
json.field "viewCount", video.views
json.field "author", video.author
json.field "authorId", video.ucid
2018-08-05 05:30:44 +09:00
json.field "authorUrl", "/channel/#{video.ucid}"
2018-11-05 00:37:12 +09:00
json.field "published", video.published.to_unix
2018-12-21 06:32:09 +09:00
json.field "publishedText", translate(locale, "`x` ago", recode_date(video.published))
2018-08-05 05:30:44 +09:00
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
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(videos).to_pretty_json
else
videos
end
end
2018-08-05 05:30:44 +09:00
get "/api/v1/channels/:ucid" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-21 23:40:04 +09:00
env.response.content_type = "application/json"
2018-09-21 23:40:04 +09:00
ucid = env.params.url["ucid"]
2018-11-14 10:04:25 +09:00
sort_by = env.params.query["sort_by"]?.try &.downcase
sort_by ||= "newest"
2018-09-05 11:04:40 +09:00
2018-09-21 23:40:04 +09:00
begin
2018-12-21 06:32:09 +09:00
author, ucid, auto_generated = get_about_info(ucid, locale)
2018-09-21 23:40:04 +09:00
rescue ex
error_message = {"error" => ex.message}.to_json
halt env, status_code: 500, response: error_message
2018-09-05 11:04:40 +09:00
end
page = 1
begin
2018-11-14 10:04:25 +09:00
videos, count = get_60_videos(ucid, page, auto_generated, sort_by)
rescue ex
error_message = {"error" => ex.message}.to_json
halt env, status_code: 500, response: error_message
end
2018-08-29 10:29:08 +09:00
client = make_client(YT_URL)
2018-08-05 05:30:44 +09:00
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"]
2018-03-31 23:51:14 +09:00
2018-08-29 10:29:08 +09:00
author = channel_html.xpath_node(%q(//a[contains(@class, "branded-page-header-title-link")])).not_nil!.content
2018-08-05 05:30:44 +09:00
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"]
2018-09-05 09:27:10 +09:00
description_html = channel_html.xpath_node(%q(//div[contains(@class,"about-description")]))
description_html, description = html_to_content(description_html)
2018-03-31 23:51:14 +09:00
2018-08-05 05:30:44 +09:00
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(",")
2018-03-31 23:51:14 +09:00
related_channels = channel_html.xpath_nodes(%q(//div[contains(@class, "branded-page-related-channels")]/ul/li))
related_channels = related_channels.map do |node|
related_id = node["data-external-id"]?
related_id ||= ""
anchor = node.xpath_node(%q(.//h3[contains(@class, "yt-lockup-title")]/a))
related_title = anchor.try &.["title"]
related_title ||= ""
related_author_url = anchor.try &.["href"]
related_author_url ||= ""
related_author_thumbnail = node.xpath_node(%q(.//img)).try &.["data-thumb"]
related_author_thumbnail ||= ""
{
id: related_id,
author: related_title,
author_url: related_author_url,
author_thumbnail: related_author_thumbnail,
}
end
2018-09-05 09:27:10 +09:00
total_views = 0_i64
sub_count = 0_i64
2018-11-05 00:37:12 +09:00
joined = Time.unix(0)
2018-09-05 09:27:10 +09:00
metadata = channel_html.xpath_nodes(%q(//span[@class="about-stat"]))
metadata.each do |item|
case item.content
when .includes? "views"
total_views = item.content.delete("views •,").to_i64
when .includes? "subscribers"
sub_count = item.content.delete("subscribers").delete(",").to_i64
when .includes? "Joined"
joined = Time.parse(item.content.lchop("Joined "), "%b %-d, %Y", Time::Location.local)
end
end
2018-03-31 23:51:14 +09:00
2018-08-05 05:30:44 +09:00
channel_info = JSON.build do |json|
json.object do
2018-08-29 10:29:08 +09:00
json.field "author", author
json.field "authorId", ucid
2018-08-05 05:30:44 +09:00
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
2018-07-19 04:26:02 +09:00
end
end
2018-03-31 23:51:14 +09:00
2018-08-05 05:30:44 +09:00
json.field "authorThumbnails" do
json.array do
qualities = [32, 48, 76, 100, 176, 512]
2018-07-19 04:26:02 +09:00
2018-08-05 05:30:44 +09:00
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
2018-07-19 04:26:02 +09:00
end
2018-03-31 23:51:14 +09:00
end
2018-08-05 05:30:44 +09:00
json.field "subCount", sub_count
json.field "totalViews", total_views
2018-11-05 00:37:12 +09:00
json.field "joined", joined.to_unix
2018-08-05 05:30:44 +09:00
json.field "paid", paid
2018-03-31 23:51:14 +09:00
2018-08-05 05:30:44 +09:00
json.field "isFamilyFriendly", is_family_friendly
json.field "description", description
2018-09-05 09:27:10 +09:00
json.field "descriptionHtml", description_html
2018-08-05 05:30:44 +09:00
json.field "allowedRegions", allowed_regions
2018-07-29 10:40:59 +09:00
2018-08-05 05:30:44 +09:00
json.field "latestVideos" do
json.array do
2018-08-29 10:29:08 +09:00
videos.each do |video|
2018-08-05 05:30:44 +09:00
json.object do
json.field "title", video.title
json.field "videoId", video.id
2018-07-29 10:40:59 +09:00
2018-09-05 11:35:25 +09:00
if auto_generated
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
else
json.field "author", author
json.field "authorId", ucid
json.field "authorUrl", "/channel/#{ucid}"
end
2018-08-05 05:30:44 +09:00
json.field "videoThumbnails" do
2018-08-10 22:50:25 +09:00
generate_thumbnails(json, video.id)
2018-08-05 05:30:44 +09:00
end
2018-08-29 10:29:08 +09:00
json.field "description", video.description
json.field "descriptionHtml", video.description_html
json.field "viewCount", video.views
2018-11-05 00:37:12 +09:00
json.field "published", video.published.to_unix
2018-12-21 06:32:09 +09:00
json.field "publishedText", translate(locale, "`x` ago", recode_date(video.published))
2018-08-29 10:29:08 +09:00
json.field "lengthSeconds", video.length_seconds
2018-11-09 07:35:57 +09:00
json.field "liveNow", video.live_now
2018-10-17 01:15:14 +09:00
json.field "paid", video.paid
json.field "premium", video.premium
2018-08-05 05:30:44 +09:00
end
end
end
end
json.field "relatedChannels" do
json.array do
related_channels.each do |related_channel|
json.object do
json.field "author", related_channel[:author]
json.field "authorId", related_channel[:id]
json.field "authorUrl", related_channel[:author_url]
json.field "authorThumbnails" do
json.array do
qualities = [32, 48, 76, 100, 176, 512]
qualities.each do |quality|
json.object do
json.field "url", related_channel[:author_thumbnail].gsub("=s48-", "=s#{quality}-")
json.field "width", quality
json.field "height", quality
end
end
end
end
end
end
end
end
2018-08-05 05:30:44 +09:00
end
2018-07-29 10:40:59 +09:00
end
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(channel_info).to_pretty_json
else
channel_info
end
2018-07-16 22:18:59 +09:00
end
["/api/v1/channels/:ucid/videos", "/api/v1/channels/videos/:ucid"].each do |route|
get route do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-21 23:40:04 +09:00
env.response.content_type = "application/json"
ucid = env.params.url["ucid"]
page = env.params.query["page"]?.try &.to_i?
page ||= 1
sort_by = env.params.query["sort_by"]?.try &.downcase
sort_by ||= "newest"
2018-07-16 22:18:59 +09:00
2018-09-21 23:40:04 +09:00
begin
2018-12-21 06:32:09 +09:00
author, ucid, auto_generated = get_about_info(ucid, locale)
2018-09-21 23:40:04 +09:00
rescue ex
error_message = {"error" => ex.message}.to_json
halt env, status_code: 500, response: error_message
end
2018-07-16 22:18:59 +09:00
begin
videos, count = get_60_videos(ucid, page, auto_generated, sort_by)
rescue ex
error_message = {"error" => ex.message}.to_json
halt env, status_code: 500, response: error_message
end
2018-07-30 11:01:28 +09:00
result = JSON.build do |json|
json.array do
videos.each do |video|
json.object do
json.field "title", video.title
json.field "videoId", video.id
2018-08-05 05:30:44 +09:00
if auto_generated
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
else
json.field "author", author
json.field "authorId", ucid
json.field "authorUrl", "/channel/#{ucid}"
end
2018-09-05 11:35:25 +09:00
json.field "videoThumbnails" do
generate_thumbnails(json, video.id)
end
2018-08-05 05:30:44 +09:00
json.field "description", video.description
json.field "descriptionHtml", video.description_html
2018-08-05 05:30:44 +09:00
json.field "viewCount", video.views
2018-11-05 00:37:12 +09:00
json.field "published", video.published.to_unix
2018-12-21 06:32:09 +09:00
json.field "publishedText", translate(locale, "`x` ago", recode_date(video.published))
json.field "lengthSeconds", video.length_seconds
json.field "liveNow", video.live_now
2018-10-17 01:15:14 +09:00
json.field "paid", video.paid
json.field "premium", video.premium
end
2018-08-05 05:30:44 +09:00
end
end
end
2018-07-16 22:18:59 +09:00
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(result).to_pretty_json
else
result
end
end
end
2018-07-16 22:18:59 +09:00
2018-09-23 00:49:42 +09:00
get "/api/v1/channels/search/:ucid" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-23 00:49:42 +09:00
env.response.content_type = "application/json"
ucid = env.params.url["ucid"]
query = env.params.query["q"]?
query ||= ""
page = env.params.query["page"]?.try &.to_i?
page ||= 1
count, search_results = channel_search(query, page, ucid)
response = JSON.build do |json|
json.array do
search_results.each do |item|
json.object do
case item
when SearchVideo
json.field "type", "video"
json.field "title", item.title
json.field "videoId", item.id
json.field "author", item.author
json.field "authorId", item.ucid
json.field "authorUrl", "/channel/#{item.ucid}"
json.field "videoThumbnails" do
generate_thumbnails(json, item.id)
end
json.field "description", item.description
json.field "descriptionHtml", item.description_html
json.field "viewCount", item.views
2018-11-05 00:37:12 +09:00
json.field "published", item.published.to_unix
2018-12-21 06:32:09 +09:00
json.field "publishedText", translate(locale, "`x` ago", recode_date(item.published))
2018-09-23 00:49:42 +09:00
json.field "lengthSeconds", item.length_seconds
json.field "liveNow", item.live_now
2018-10-17 01:15:14 +09:00
json.field "paid", item.paid
json.field "premium", item.premium
2018-09-23 00:49:42 +09:00
when SearchPlaylist
json.field "type", "playlist"
json.field "title", item.title
json.field "playlistId", item.id
json.field "author", item.author
json.field "authorId", item.ucid
json.field "authorUrl", "/channel/#{item.ucid}"
json.field "videoCount", item.video_count
2018-09-23 00:49:42 +09:00
json.field "videos" do
json.array do
item.videos.each do |video|
json.object do
json.field "title", video.title
json.field "videoId", video.id
json.field "lengthSeconds", video.length_seconds
json.field "videoThumbnails" do
generate_thumbnails(json, video.id)
end
end
end
end
end
when SearchChannel
json.field "type", "channel"
json.field "author", item.author
json.field "authorId", item.ucid
json.field "authorUrl", "/channel/#{item.ucid}"
json.field "authorThumbnails" do
json.array do
qualities = [32, 48, 76, 100, 176, 512]
qualities.each do |quality|
json.object do
json.field "url", item.author_thumbnail.gsub("=s176-", "=s#{quality}-")
json.field "width", quality
json.field "height", quality
end
end
end
end
json.field "subCount", item.subscriber_count
json.field "videoCount", item.video_count
json.field "description", item.description
json.field "descriptionHtml", item.description_html
end
end
end
end
end
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(response).to_pretty_json
else
response
end
2018-09-23 00:49:42 +09:00
end
2018-08-05 05:30:44 +09:00
get "/api/v1/search" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-23 00:49:42 +09:00
env.response.content_type = "application/json"
2018-08-05 13:07:38 +09:00
query = env.params.query["q"]?
query ||= ""
2018-08-05 05:30:44 +09:00
page = env.params.query["page"]?.try &.to_i?
page ||= 1
sort_by = env.params.query["sort_by"]?.try &.downcase
sort_by ||= "relevance"
date = env.params.query["date"]?.try &.downcase
date ||= ""
duration = env.params.query["date"]?.try &.downcase
duration ||= ""
features = env.params.query["features"]?.try &.split(",").map { |feature| feature.downcase }
features ||= [] of String
# TODO: Support other content types
content_type = env.params.query["type"]?.try &.downcase
content_type ||= "video"
begin
2018-09-18 06:38:18 +09:00
search_params = produce_search_params(sort_by, date, content_type, duration, features)
rescue ex
env.response.status_code = 400
next JSON.build do |json|
json.object do
json.field "error", ex.message
end
end
end
2018-09-23 00:49:42 +09:00
count, search_results = search(query, page, search_params).as(Tuple)
2018-08-05 13:07:38 +09:00
response = JSON.build do |json|
2018-08-05 05:30:44 +09:00
json.array do
search_results.each do |item|
2018-08-05 05:30:44 +09:00
json.object do
case item
when SearchVideo
json.field "type", "video"
json.field "title", item.title
json.field "videoId", item.id
json.field "author", item.author
json.field "authorId", item.ucid
json.field "authorUrl", "/channel/#{item.ucid}"
json.field "videoThumbnails" do
generate_thumbnails(json, item.id)
end
2018-08-05 05:30:44 +09:00
json.field "description", item.description
json.field "descriptionHtml", item.description_html
json.field "viewCount", item.views
2018-11-05 00:37:12 +09:00
json.field "published", item.published.to_unix
2018-12-21 06:32:09 +09:00
json.field "publishedText", translate(locale, "`x` ago", recode_date(item.published))
json.field "lengthSeconds", item.length_seconds
json.field "liveNow", item.live_now
2018-10-17 01:15:14 +09:00
json.field "paid", item.paid
json.field "premium", item.premium
when SearchPlaylist
json.field "type", "playlist"
json.field "title", item.title
json.field "playlistId", item.id
json.field "author", item.author
json.field "authorId", item.ucid
json.field "authorUrl", "/channel/#{item.ucid}"
json.field "videoCount", item.video_count
json.field "videos" do
json.array do
item.videos.each do |video|
json.object do
json.field "title", video.title
json.field "videoId", video.id
json.field "lengthSeconds", video.length_seconds
json.field "videoThumbnails" do
generate_thumbnails(json, video.id)
end
end
end
end
end
when SearchChannel
json.field "type", "channel"
json.field "author", item.author
json.field "authorId", item.ucid
json.field "authorUrl", "/channel/#{item.ucid}"
json.field "authorThumbnails" do
json.array do
qualities = [32, 48, 76, 100, 176, 512]
qualities.each do |quality|
json.object do
json.field "url", item.author_thumbnail.gsub("=s176-", "=s#{quality}-")
json.field "width", quality
json.field "height", quality
end
end
end
end
2018-08-05 05:30:44 +09:00
json.field "subCount", item.subscriber_count
json.field "videoCount", item.video_count
json.field "description", item.description
json.field "descriptionHtml", item.description_html
2018-08-05 05:30:44 +09:00
end
end
end
end
end
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(response).to_pretty_json
else
response
end
end
2018-08-16 00:22:36 +09:00
get "/api/v1/playlists/:plid" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-21 23:40:04 +09:00
env.response.content_type = "application/json"
2018-08-16 00:22:36 +09:00
plid = env.params.url["plid"]
page = env.params.query["page"]?.try &.to_i?
page ||= 1
2018-10-08 11:11:33 +09:00
format = env.params.query["format"]?
format ||= "json"
continuation = env.params.query["continuation"]?
2018-10-07 12:18:50 +09:00
if plid.starts_with? "RD"
next env.redirect "/api/v1/mixes/#{plid}"
end
2018-08-16 00:22:36 +09:00
begin
2018-12-21 06:32:09 +09:00
playlist = fetch_playlist(plid, locale)
2018-08-16 00:22:36 +09:00
rescue ex
2018-09-21 23:40:04 +09:00
error_message = {"error" => "Playlist is empty"}.to_json
halt env, status_code: 500, response: error_message
2018-08-16 00:22:36 +09:00
end
begin
2018-12-21 06:32:09 +09:00
videos = fetch_playlist_videos(plid, page, playlist.video_count, continuation, locale)
rescue ex
videos = [] of PlaylistVideo
end
2018-08-16 00:22:36 +09:00
response = JSON.build do |json|
json.object do
json.field "title", playlist.title
2018-09-23 01:34:29 +09:00
json.field "playlistId", playlist.id
2018-08-16 00:22:36 +09:00
json.field "author", playlist.author
json.field "authorId", playlist.ucid
json.field "authorUrl", "/channel/#{playlist.ucid}"
json.field "authorThumbnails" do
json.array do
qualities = [32, 48, 76, 100, 176, 512]
qualities.each do |quality|
json.object do
json.field "url", playlist.author_thumbnail.gsub("=s100-", "=s#{quality}-")
json.field "width", quality
json.field "height", quality
end
end
end
end
2018-08-16 00:22:36 +09:00
json.field "description", playlist.description
2018-09-05 09:27:10 +09:00
json.field "descriptionHtml", playlist.description_html
2018-08-16 00:22:36 +09:00
json.field "videoCount", playlist.video_count
json.field "viewCount", playlist.views
2018-11-05 00:37:12 +09:00
json.field "updated", playlist.updated.to_unix
2018-08-16 00:22:36 +09:00
json.field "videos" do
json.array do
videos.each do |video|
json.object do
json.field "title", video.title
2018-09-23 01:34:29 +09:00
json.field "videoId", video.id
2018-08-16 00:22:36 +09:00
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
json.field "videoThumbnails" do
generate_thumbnails(json, video.id)
end
json.field "index", video.index
json.field "lengthSeconds", video.length_seconds
end
end
end
end
end
end
2018-10-08 11:11:33 +09:00
if format == "html"
response = JSON.parse(response)
playlist_html = template_playlist(response)
next_video = response["videos"].as_a[1]?.try &.["videoId"]
response = {
"playlistHtml" => playlist_html,
"nextVideo" => next_video,
}.to_json
end
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(response).to_pretty_json
else
response
end
2018-08-16 00:22:36 +09:00
end
2018-09-29 13:12:35 +09:00
get "/api/v1/mixes/:rdid" do |env|
2018-12-21 06:32:09 +09:00
locale = LOCALES[env.get("locale").as(String)]?
2018-09-29 13:12:35 +09:00
env.response.content_type = "application/json"
rdid = env.params.url["rdid"]
continuation = env.params.query["continuation"]?
continuation ||= rdid.lchop("RD")
2018-10-08 11:11:33 +09:00
format = env.params.query["format"]?
format ||= "json"
2018-09-29 13:12:35 +09:00
begin
2018-12-21 06:32:09 +09:00
mix = fetch_mix(rdid, continuation, locale: locale)
2018-10-31 23:15:17 +09:00
if !rdid.ends_with? continuation
mix = fetch_mix(rdid, mix.videos[1].id)
index = mix.videos.index(mix.videos.select { |video| video.id == continuation }[0]?)
end
index ||= 0
mix.videos = mix.videos[index..-1]
2018-09-29 13:12:35 +09:00
rescue ex
error_message = {"error" => ex.message}.to_json
halt env, status_code: 500, response: error_message
end
response = JSON.build do |json|
json.object do
json.field "title", mix.title
json.field "mixId", mix.id
json.field "videos" do
json.array do
mix.videos.each do |video|
json.object do
json.field "title", video.title
json.field "videoId", video.id
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
json.field "videoThumbnails" do
json.array do
generate_thumbnails(json, video.id)
end
end
json.field "index", video.index
json.field "lengthSeconds", video.length_seconds
end
end
end
end
end
end
2018-10-08 11:11:33 +09:00
if format == "html"
response = JSON.parse(response)
playlist_html = template_mix(response)
next_video = response["videos"].as_a[1]?.try &.["videoId"]
2018-10-31 23:15:17 +09:00
next_video ||= ""
2018-10-08 11:11:33 +09:00
response = {
"playlistHtml" => playlist_html,
"nextVideo" => next_video,
}.to_json
end
2019-01-26 01:50:18 +09:00
if env.params.query["pretty"]? && env.params.query["pretty"] == "1"
JSON.parse(response).to_pretty_json
else
response
end
2018-09-29 13:12:35 +09:00
end
2018-08-08 03:10:52 +09:00
get "/api/manifest/dash/id/videoplayback" do |env|
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-08-08 03:10:52 +09:00
env.redirect "/videoplayback?#{env.params.query}"
end
get "/api/manifest/dash/id/videoplayback/*" do |env|
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-08-08 03:10:52 +09:00
env.redirect env.request.path.lchop("/api/manifest/dash/id")
end
2018-07-16 22:18:59 +09:00
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"]
region = env.params.query["region"]?
2018-07-16 22:18:59 +09:00
client = make_client(YT_URL)
begin
video = get_video(id, PG_DB, proxies, region: region)
rescue ex : VideoRedirect
next env.redirect "/api/manifest/dash/id/#{ex.message}"
2018-07-16 22:18:59 +09:00
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
2018-08-08 03:14:58 +09:00
url = URI.parse(url).full_path.lchop("/")
2018-07-16 22:18:59 +09:00
end
"<BaseURL>#{url}</BaseURL>"
end
next manifest
end
2018-08-05 13:07:38 +09:00
adaptive_fmts = video.adaptive_fmts(decrypt_function)
2018-07-16 22:18:59 +09:00
if local
adaptive_fmts.each do |fmt|
2018-08-08 03:14:58 +09:00
fmt["url"] = URI.parse(fmt["url"]).full_path.lchop("/")
2018-07-16 22:18:59 +09:00
end
end
video_streams = video.video_streams(adaptive_fmts).select { |stream| stream["type"].starts_with? "video/mp4" }
audio_streams = video.audio_streams(adaptive_fmts).select { |stream| stream["type"].starts_with? "audio/mp4" }
2018-08-05 13:07:38 +09:00
2018-07-16 22:18:59 +09:00
manifest = XML.build(indent: " ", encoding: "UTF-8") do |xml|
2018-08-12 05:01:22 +09:00
xml.element("MPD", "xmlns": "urn:mpeg:dash:schema:mpd:2011",
"profiles": "urn:mpeg:dash:profile:isoff-live:2011", minBufferTime: "PT1.5S", type: "static",
2018-07-16 22:18:59 +09:00
mediaPresentationDuration: "PT#{video.info["length_seconds"]}S") do
xml.element("Period") do
2018-08-09 22:56:35 +09:00
xml.element("AdaptationSet", mimeType: "audio/mp4", startWithSAP: 1, subsegmentAlignment: true) do
2018-07-16 22:18:59 +09:00
audio_streams.each do |fmt|
mimetype = fmt["type"].split(";")[0]
codecs = fmt["type"].split("codecs=")[1].strip('"')
2018-07-16 22:18:59 +09:00
fmt_type = mimetype.split("/")[0]
2018-08-12 04:29:51 +09:00
bandwidth = fmt["bitrate"]
2018-07-16 22:18:59 +09:00
itag = fmt["itag"]
url = fmt["url"]
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 }
2018-08-09 22:56:35 +09:00
xml.element("SegmentBase", indexRange: fmt["index"]) do
xml.element("Initialization", range: fmt["init"])
2018-07-16 22:18:59 +09:00
end
end
end
end
2018-08-09 22:56:35 +09:00
xml.element("AdaptationSet", mimeType: "video/mp4", startWithSAP: 1, subsegmentAlignment: true,
scanType: "progressive") do
2018-07-16 22:18:59 +09:00
video_streams.each do |fmt|
mimetype = fmt["type"].split(";")
codecs = fmt["type"].split("codecs=")[1].strip('"')
2018-08-12 04:29:51 +09:00
bandwidth = fmt["bitrate"]
2018-07-16 22:18:59 +09:00
itag = fmt["itag"]
url = fmt["url"]
height, width = fmt["size"].split("x")
2018-08-09 22:56:35 +09:00
xml.element("Representation", id: itag, codecs: codecs, width: width, height: height,
startWithSAP: "1", maxPlayoutRate: "1",
bandwidth: bandwidth, frameRate: fmt["fps"]) do
2018-07-16 22:18:59 +09:00
xml.element("BaseURL") { xml.text url }
2018-08-09 22:56:35 +09:00
xml.element("SegmentBase", indexRange: fmt["index"]) do
xml.element("Initialization", range: fmt["init"])
2018-07-16 22:18:59 +09:00
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
2018-07-28 08:25:58 +09:00
get "/api/manifest/hls_variant/*" do |env|
client = make_client(YT_URL)
manifest = client.get(env.request.path)
if manifest.status_code != 200
2018-08-05 13:07:38 +09:00
halt env, status_code: manifest.status_code
2018-07-28 08:25:58 +09:00
end
env.response.content_type = "application/x-mpegURL"
env.response.headers.add("Access-Control-Allow-Origin", "*")
2018-08-05 13:07:38 +09:00
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2018-08-05 13:07:38 +09:00
manifest = manifest.body
manifest.gsub("https://www.youtube.com", host_url)
2018-07-28 08:25:58 +09:00
end
get "/api/manifest/hls_playlist/*" do |env|
client = make_client(YT_URL)
manifest = client.get(env.request.path)
if manifest.status_code != 200
2018-08-05 13:07:38 +09:00
halt env, status_code: manifest.status_code
2018-07-28 08:25:58 +09:00
end
host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, CONFIG.domain)
2018-07-28 08:25:58 +09:00
2018-08-05 13:07:38 +09:00
manifest = manifest.body.gsub("https://www.youtube.com", host_url)
manifest = manifest.gsub(/https:\/\/r\d---.{11}\.c\.youtube\.com/, host_url)
2018-07-28 08:25:58 +09:00
fvip = manifest.match(/hls_chunk_host\/r(?<fvip>\d)---/).not_nil!["fvip"]
manifest = manifest.gsub("seg.ts", "seg.ts/fvip/#{fvip}")
env.response.content_type = "application/x-mpegURL"
env.response.headers.add("Access-Control-Allow-Origin", "*")
manifest
end
2019-01-28 11:35:32 +09:00
# YouTube /videoplayback links expire after 6 hours,
# so we have a mechanism here to redirect to the latest version
get "/latest_version" do |env|
id = env.params.query["id"]?
itag = env.params.query["itag"]?
local = env.params.query["local"]?
local ||= "false"
local = local == "true"
2019-01-28 11:35:32 +09:00
if !id || !itag
halt env, status_code: 400
end
video = get_video(id, PG_DB, proxies)
fmt_stream = video.fmt_stream(decrypt_function)
adaptive_fmts = video.adaptive_fmts(decrypt_function)
urls = (fmt_stream + adaptive_fmts).select { |fmt| fmt["itag"] == itag }
if urls.empty?
halt env, status_code: 404
elsif urls.size > 1
halt env, status_code: 409
end
url = urls[0]["url"]
if local
url = URI.parse(url).full_path.not_nil!
end
env.redirect url
2019-01-28 11:35:32 +09:00
end
2018-08-08 03:25:22 +09:00
options "/videoplayback" do |env|
2018-08-05 05:30:44 +09:00
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-08-09 23:43:47 +09:00
env.response.headers["Access-Control-Allow-Methods"] = "GET, OPTIONS"
env.response.headers["Access-Control-Allow-Headers"] = "Content-Type, Range"
2018-08-05 05:30:44 +09:00
end
2018-08-08 01:39:56 +09:00
options "/videoplayback/*" do |env|
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-08-09 23:43:47 +09:00
env.response.headers["Access-Control-Allow-Methods"] = "GET, OPTIONS"
env.response.headers["Access-Control-Allow-Headers"] = "Content-Type, Range"
2018-08-08 01:39:56 +09:00
end
2018-08-08 03:18:38 +09:00
options "/api/manifest/dash/id/videoplayback" do |env|
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-08-09 23:43:47 +09:00
env.response.headers["Access-Control-Allow-Methods"] = "GET, OPTIONS"
env.response.headers["Access-Control-Allow-Headers"] = "Content-Type, Range"
2018-08-08 03:18:38 +09:00
end
options "/api/manifest/dash/id/videoplayback/*" do |env|
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-08-09 23:43:47 +09:00
env.response.headers["Access-Control-Allow-Methods"] = "GET, OPTIONS"
env.response.headers["Access-Control-Allow-Headers"] = "Content-Type, Range"
2018-08-08 03:18:38 +09:00
end
2018-08-08 01:39:56 +09:00
get "/videoplayback/*" do |env|
2018-06-07 07:55:51 +09:00
path = env.request.path
2018-08-08 01:39:56 +09:00
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-07-16 11:53:24 +09:00
path = path.split("/")
2018-06-07 07:55:51 +09:00
raw_params = {} of String => Array(String)
path.each_slice(2) do |pair|
key, value = pair
value = URI.unescape(value)
2018-06-07 07:55:51 +09:00
if raw_params[key]?
raw_params[key] << value
else
raw_params[key] = [value]
2018-06-07 07:55:51 +09:00
end
end
2018-06-07 07:55:51 +09:00
query_params = HTTP::Params.new(raw_params)
2018-08-08 01:39:56 +09:00
2018-08-12 04:29:51 +09:00
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-08-08 01:39:56 +09:00
env.redirect "/videoplayback?#{query_params}"
end
get "/videoplayback" do |env|
query_params = env.params.query
2018-04-16 10:47:37 +09:00
2018-04-17 03:08:10 +09:00
fvip = query_params["fvip"]
2018-08-12 04:29:51 +09:00
mn = query_params["mn"].split(",")[-1]
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}"
2019-01-25 04:52:33 +09:00
headers = env.request.headers
headers.delete("Host")
headers.delete("Cookie")
headers.delete("User-Agent")
headers.delete("Referer")
2018-11-21 01:07:50 +09:00
region = query_params["region"]?
2019-01-25 04:52:33 +09:00
response = HTTP::Client::Response.new(403)
loop do
begin
client = make_client(URI.parse(host), proxies, region)
response = client.head(url, headers)
break
rescue ex
end
end
2018-04-16 10:47:37 +09:00
2018-11-21 01:07:50 +09:00
if response.headers["Location"]?
url = URI.parse(response.headers["Location"])
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-11-21 01:07:50 +09:00
url = url.full_path
if region
url += "&region=#{region}"
2018-10-02 09:01:44 +09:00
end
2018-11-21 01:07:50 +09:00
next env.redirect url
end
2018-11-21 01:07:50 +09:00
if response.status_code >= 400
halt env, status_code: 403
2018-08-26 07:24:07 +09:00
end
2018-11-21 01:07:50 +09:00
client = make_client(URI.parse(host), proxies, region)
2018-04-16 10:47:37 +09:00
client.get(url, headers) do |response|
2018-08-26 07:24:07 +09:00
env.response.status_code = response.status_code
2018-04-16 10:47:37 +09:00
2018-08-26 07:24:07 +09:00
response.headers.each do |key, value|
env.response.headers[key] = value
end
2018-04-16 10:47:37 +09:00
2018-08-26 07:24:07 +09:00
env.response.headers["Access-Control-Allow-Origin"] = "*"
2018-04-17 09:31:57 +09:00
2018-08-26 07:24:07 +09:00
begin
chunk_size = 4096
size = 1
while size > 0
size = IO.copy(response.body_io, env.response.output, chunk_size)
2018-09-15 11:24:28 +09:00
env.response.flush
Fiber.yield
end
rescue ex
break
end
end
end
2018-09-18 08:39:28 +09:00
get "/ggpht*" do |env|
end
get "/ggpht/*" do |env|
host = "https://yt3.ggpht.com"
client = make_client(URI.parse(host))
url = env.request.path.lchop("/ggpht")
headers = env.request.headers
headers.delete("Host")
headers.delete("Cookie")
headers.delete("User-Agent")
headers.delete("Referer")
client.get(url, headers) do |response|
env.response.status_code = response.status_code
response.headers.each do |key, value|
env.response.headers[key] = value
end
if response.status_code == 304
break
end
chunk_size = 4096
size = 1
if response.headers.includes_word?("Content-Encoding", "gzip")
Gzip::Writer.open(env.response) do |deflate|
until size == 0
size = IO.copy(response.body_io, deflate)
env.response.flush
end
end
elsif response.headers.includes_word?("Content-Encoding", "deflate")
Flate::Writer.open(env.response) do |deflate|
until size == 0
size = IO.copy(response.body_io, deflate)
env.response.flush
end
end
else
until size == 0
size = IO.copy(response.body_io, env.response, chunk_size)
env.response.flush
end
end
end
end
2018-09-15 11:24:28 +09:00
get "/vi/:id/:name" do |env|
id = env.params.url["id"]
name = env.params.url["name"]
host = "https://i.ytimg.com"
client = make_client(URI.parse(host))
if name == "maxres.jpg"
VIDEO_THUMBNAILS.each do |thumb|
if client.head("/vi/#{id}/#{thumb[:url]}.jpg").status_code == 200
name = thumb[:url] + ".jpg"
break
end
end
end
url = "/vi/#{id}/#{name}"
2018-09-17 23:38:52 +09:00
headers = env.request.headers
headers.delete("Host")
headers.delete("Cookie")
headers.delete("User-Agent")
headers.delete("Referer")
2018-09-15 11:24:28 +09:00
2018-09-17 23:38:52 +09:00
client.get(url, headers) do |response|
env.response.status_code = response.status_code
2018-09-15 11:24:28 +09:00
response.headers.each do |key, value|
env.response.headers[key] = value
end
2018-09-17 23:38:52 +09:00
if response.status_code == 304
break
end
2018-09-15 11:24:28 +09:00
2018-09-17 23:38:52 +09:00
chunk_size = 4096
2018-09-18 04:48:02 +09:00
size = 1
2018-09-17 23:38:52 +09:00
if response.headers.includes_word?("Content-Encoding", "gzip")
Gzip::Writer.open(env.response) do |deflate|
2018-09-18 04:48:02 +09:00
until size == 0
2018-09-17 23:38:52 +09:00
size = IO.copy(response.body_io, deflate)
env.response.flush
end
end
elsif response.headers.includes_word?("Content-Encoding", "deflate")
Flate::Writer.open(env.response) do |deflate|
2018-09-18 04:48:02 +09:00
until size == 0
2018-09-17 23:38:52 +09:00
size = IO.copy(response.body_io, deflate)
env.response.flush
end
end
else
2018-09-18 04:48:02 +09:00
until size == 0
2018-09-17 23:38:52 +09:00
size = IO.copy(response.body_io, env.response, chunk_size)
2018-08-26 07:24:07 +09:00
env.response.flush
2018-04-16 10:47:37 +09:00
end
end
end
end
2018-02-11 00:15:23 +09:00
error 404 do |env|
if md = env.request.path.match(/^\/(?<id>[a-zA-Z0-9_-]{11})/)
id = md["id"]
params = [] of String
env.params.query.each do |k, v|
params << "#{k}=#{v}"
end
params = params.join("&")
url = "/watch?v=#{id}"
if !params.empty?
url += "&#{params}"
end
env.response.headers["Location"] = url
halt env, status_code: 302
end
env.response.headers["Location"] = "/"
halt env, status_code: 302
2017-12-31 06:21:43 +09:00
end
error 500 do |env|
error_message = <<-END_HTML
Looks like you've found a bug in Invidious. Feel free to open a new issue
<a href="https://github.com/omarroth/invidious/issues/github.com/omarroth/invidious">
here
</a>
or send an email to
<a href="mailto:omarroth@protonmail.com">
omarroth@protonmail.com
</a>.
END_HTML
2018-02-11 00:15:23 +09:00
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
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
2018-07-31 08:42:45 +09:00
Kemal.config.powered_by_header = false
2018-04-16 12:56:58 +09:00
add_handler FilteredCompressHandler.new
add_handler DenyFrame.new
2018-07-17 01:24:24 +09:00
add_context_storage_type(User)
2017-11-23 16:48:55 +09:00
2019-01-24 05:15:19 +09:00
Kemal.config.logger = logger
2017-11-23 16:48:55 +09:00
Kemal.run