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