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-03-17 06:06:49 +05:30
|
|
|
require "detect_language"
|
2017-11-23 13:18:55 +05:30
|
|
|
require "kemal"
|
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-03-16 22:36:03 +05:30
|
|
|
require "./cookie_fix"
|
2018-04-28 19:57:05 +05:30
|
|
|
require "./helpers"
|
2017-11-30 03:03:46 +05:30
|
|
|
|
2018-03-10 00:12:23 +05:30
|
|
|
CONFIG = Config.from_yaml(File.read("config/config.yml"))
|
|
|
|
|
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")
|
|
|
|
REDDIT_URL = URI.parse("https://api.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
|
|
|
|
ids = Deque(String).new
|
|
|
|
random = Random.new
|
2018-01-21 22:34:58 +05:30
|
|
|
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-03-05 09:55:03 +05:30
|
|
|
search(random.base64(3), client) do |id|
|
2018-01-28 07:39:27 +05:30
|
|
|
ids << id
|
2018-01-22 05:19:27 +05:30
|
|
|
end
|
2018-02-09 07:49:44 +05:30
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
loop do
|
|
|
|
if ids.empty?
|
2018-03-05 09:55:03 +05:30
|
|
|
search(random.base64(3), client) do |id|
|
2018-01-28 07:39:27 +05:30
|
|
|
ids << id
|
|
|
|
end
|
|
|
|
end
|
2018-01-21 22:34:58 +05:30
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
begin
|
|
|
|
id = ids[0]
|
2018-03-05 09:55:03 +05:30
|
|
|
video = get_video(id, client, PG_DB)
|
2018-01-28 07:39:27 +05:30
|
|
|
rescue ex
|
2018-03-05 09:55:03 +05:30
|
|
|
STDOUT << id << " : " << ex.message << "\n"
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-01-28 07:39:27 +05:30
|
|
|
next
|
|
|
|
ensure
|
|
|
|
ids.delete(id)
|
|
|
|
end
|
2018-01-21 05:49:55 +05:30
|
|
|
|
2018-01-28 07:39:27 +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
|
2018-01-19 09:16:29 +05:30
|
|
|
end
|
2018-01-21 05:49:55 +05:30
|
|
|
|
2018-01-28 07:39:27 +05:30
|
|
|
rvs.each do |rv|
|
|
|
|
if rv.has_key?("id") && !PG_DB.query_one?("SELECT EXISTS (SELECT true FROM videos WHERE id = $1)", rv["id"], as: Bool)
|
|
|
|
ids.delete(id)
|
2018-01-22 05:19:27 +05:30
|
|
|
ids << rv["id"]
|
2018-01-28 07:39:27 +05:30
|
|
|
if ids.size == 150
|
2018-01-22 05:19:27 +05:30
|
|
|
ids.shift
|
2018-01-21 22:37:32 +05:30
|
|
|
end
|
|
|
|
end
|
2018-01-21 22:34:58 +05:30
|
|
|
end
|
2018-04-28 19:56:03 +05:30
|
|
|
|
|
|
|
Fiber.yield
|
2018-01-28 07:39:27 +05:30
|
|
|
end
|
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
|
|
|
|
loop do
|
|
|
|
query = "SELECT id FROM channels ORDER BY updated \
|
2018-04-03 05:08:03 +05:30
|
|
|
LIMIT (SELECT count(*)/$2 FROM channels) \
|
|
|
|
OFFSET (SELECT count(*)*$1/$2 FROM channels)"
|
|
|
|
PG_DB.query(query, i, channel_threads) do |rs|
|
2018-03-26 08:48:29 +05:30
|
|
|
rs.each do
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
|
|
|
|
2018-04-12 04:07:06 +05:30
|
|
|
begin
|
|
|
|
id = rs.read(String)
|
|
|
|
channel = get_channel(id, client, PG_DB)
|
|
|
|
rescue ex
|
|
|
|
STDOUT << id << " : " << ex.message << "\n"
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-04-12 04:07:06 +05:30
|
|
|
next
|
|
|
|
end
|
2018-03-26 08:48:29 +05:30
|
|
|
end
|
|
|
|
end
|
2018-04-28 19:56:03 +05:30
|
|
|
Fiber.yield
|
2018-03-26 08:48:29 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-28 21:20:02 +05:30
|
|
|
video_threads.times do |i|
|
|
|
|
spawn do
|
|
|
|
loop do
|
|
|
|
query = "SELECT id FROM videos ORDER BY updated \
|
|
|
|
LIMIT (SELECT count(*)/$2 FROM videos) \
|
|
|
|
OFFSET (SELECT count(*)*$1/$2 FROM videos)"
|
|
|
|
PG_DB.query(query, i, video_threads) do |rs|
|
|
|
|
rs.each do
|
|
|
|
client = make_client(YT_URL)
|
|
|
|
|
|
|
|
begin
|
|
|
|
id = rs.read(String)
|
|
|
|
video = get_video(id, client, PG_DB)
|
|
|
|
rescue ex
|
|
|
|
STDOUT << id << " : " << ex.message << "\n"
|
|
|
|
client = make_client(YT_URL)
|
|
|
|
next
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
Fiber.yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-08 09:34:47 +05:30
|
|
|
top_videos = [] of Video
|
2017-11-23 13:18:55 +05:30
|
|
|
|
2018-02-08 09:34:47 +05:30
|
|
|
spawn do
|
2018-03-17 06:06:49 +05:30
|
|
|
if CONFIG.dl_api_key
|
|
|
|
DetectLanguage.configure do |config|
|
|
|
|
config.api_key = CONFIG.dl_api_key.not_nil!
|
|
|
|
end
|
2018-03-17 06:22:25 +05:30
|
|
|
filter = true
|
2018-03-17 06:06:49 +05:30
|
|
|
end
|
|
|
|
|
2018-04-28 19:57:05 +05:30
|
|
|
filter ||= false
|
|
|
|
|
2018-02-08 09:34:47 +05:30
|
|
|
loop do
|
2018-03-19 23:05:35 +05:30
|
|
|
begin
|
2018-04-28 19:52:06 +05:30
|
|
|
top = rank_videos(PG_DB, 40, filter, YT_URL)
|
2018-03-19 23:05:35 +05:30
|
|
|
rescue ex
|
|
|
|
next
|
|
|
|
end
|
2018-02-06 05:26:40 +05:30
|
|
|
|
2018-02-15 23:25:44 +05:30
|
|
|
if top.size > 0
|
2018-03-04 20:24:19 +05:30
|
|
|
args = arg_array(top)
|
2018-02-15 23:25:44 +05:30
|
|
|
else
|
|
|
|
next
|
|
|
|
end
|
2018-02-06 05:26:40 +05:30
|
|
|
|
2018-02-09 07:49:44 +05:30
|
|
|
videos = [] of Video
|
|
|
|
|
2018-03-17 09:31:35 +05:30
|
|
|
top.each do |id|
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-03-17 10:27:31 +05:30
|
|
|
begin
|
|
|
|
videos << get_video(id, client, PG_DB)
|
|
|
|
rescue ex
|
2018-03-19 23:05:35 +05:30
|
|
|
next
|
2018-03-17 10:27:31 +05:30
|
|
|
end
|
2018-02-06 05:26:40 +05:30
|
|
|
end
|
2018-02-08 09:34:47 +05:30
|
|
|
|
2018-02-09 07:49:44 +05:30
|
|
|
top_videos = videos
|
2018-03-06 06:04:26 +05:30
|
|
|
Fiber.yield
|
2018-02-08 09:34:47 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-25 09:26:41 +05:30
|
|
|
before_all do |env|
|
|
|
|
if env.request.cookies.has_key?("SID")
|
2018-03-22 23:14:36 +05:30
|
|
|
env.set "authorized", true
|
2018-04-01 05:39:27 +05:30
|
|
|
|
|
|
|
sid = env.request.cookies["SID"].value
|
|
|
|
env.set "sid", sid
|
|
|
|
|
|
|
|
notifications = PG_DB.query_one?("SELECT cardinality(notifications) FROM users WHERE id = $1", sid, as: Int32)
|
|
|
|
notifications ||= 0
|
|
|
|
env.set "notifications", notifications
|
2018-03-22 23:14:36 +05:30
|
|
|
end
|
2018-04-14 08:02:14 +05:30
|
|
|
|
|
|
|
if env.request.cookies.has_key?("darktheme") && env.request.cookies["darktheme"].value == "true"
|
|
|
|
env.set "darktheme", true
|
|
|
|
end
|
2018-03-22 23:14:36 +05:30
|
|
|
end
|
|
|
|
|
2018-02-08 09:34:47 +05:30
|
|
|
get "/" do |env|
|
2017-12-31 02:58:41 +05:30
|
|
|
templated "index"
|
|
|
|
end
|
|
|
|
|
|
|
|
get "/watch" do |env|
|
2018-02-15 23:35:39 +05:30
|
|
|
if env.params.query["v"]?
|
|
|
|
id = env.params.query["v"]
|
|
|
|
else
|
2018-04-01 20:39:08 +05:30
|
|
|
next env.redirect "/"
|
2018-02-15 23:35:39 +05:30
|
|
|
end
|
2018-01-16 08:00:57 +05:30
|
|
|
|
2018-05-08 07:08:13 +05:30
|
|
|
if env.params.query["start"]?
|
|
|
|
video_start = decode_time(env.params.query["start"])
|
|
|
|
end
|
2018-05-30 19:40:56 +05:30
|
|
|
|
|
|
|
if env.params.query["t"]?
|
|
|
|
video_start = decode_time(env.params.query["t"])
|
|
|
|
end
|
2018-05-30 05:10:29 +05:30
|
|
|
video_start ||= 0
|
2018-04-06 07:16:32 +05:30
|
|
|
|
2018-05-08 07:08:13 +05:30
|
|
|
if env.params.query["end"]?
|
|
|
|
video_end = decode_time(env.params.query["end"])
|
|
|
|
end
|
2018-05-30 05:10:29 +05:30
|
|
|
video_end ||= -1
|
2018-04-06 07:16:32 +05:30
|
|
|
|
2018-02-12 04:31:32 +05:30
|
|
|
if env.params.query["listen"]? && env.params.query["listen"] == "true"
|
|
|
|
listen = true
|
2018-02-13 22:13:15 +05:30
|
|
|
env.params.query.delete_all("listen")
|
2018-02-12 04:31:32 +05:30
|
|
|
end
|
2018-05-08 07:08:13 +05:30
|
|
|
listen ||= false
|
2018-01-07 08:09:24 +05:30
|
|
|
|
2018-03-31 20:21:14 +05:30
|
|
|
authorized = env.get? "authorized"
|
|
|
|
if authorized
|
2018-04-01 05:39:27 +05:30
|
|
|
sid = env.get("sid").as(String)
|
2018-03-31 20:21:14 +05:30
|
|
|
|
2018-04-04 03:36:50 +05:30
|
|
|
subscriptions = PG_DB.query_one?("SELECT subscriptions FROM users WHERE id = $1", sid, as: Array(String))
|
2018-03-31 20:21:14 +05:30
|
|
|
end
|
2018-04-04 08:39:53 +05:30
|
|
|
subscriptions ||= [] of String
|
2018-04-04 03:36:50 +05:30
|
|
|
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-01-07 08:09:24 +05:30
|
|
|
begin
|
2018-03-31 20:21:14 +05:30
|
|
|
video = get_video(id, client, PG_DB)
|
2018-01-07 08:09:24 +05:30
|
|
|
rescue ex
|
|
|
|
error_message = ex.message
|
|
|
|
next templated "error"
|
|
|
|
end
|
2017-12-31 02:58:41 +05:30
|
|
|
|
2017-11-29 07:29:51 +05:30
|
|
|
fmt_stream = [] of HTTP::Params
|
2018-01-07 08:09:24 +05:30
|
|
|
video.info["url_encoded_fmt_stream_map"].split(",") do |string|
|
2018-03-15 04:35:19 +05:30
|
|
|
if !string.empty?
|
2018-03-15 04:36:21 +05:30
|
|
|
fmt_stream << HTTP::Params.parse(string)
|
|
|
|
end
|
2018-03-15 04:35:19 +05:30
|
|
|
end
|
2018-01-21 22:37:32 +05:30
|
|
|
|
2018-05-30 05:10:36 +05:30
|
|
|
fmt_stream.each { |s| s.add("label", "#{s["quality"]} - #{s["type"].split(";")[0].split("/")[1]}") }
|
|
|
|
fmt_stream = fmt_stream.uniq { |s| s["label"] }
|
|
|
|
|
2018-01-04 07:36:16 +05:30
|
|
|
adaptive_fmts = [] of HTTP::Params
|
2018-01-20 06:01:47 +05:30
|
|
|
if video.info.has_key?("adaptive_fmts")
|
|
|
|
video.info["adaptive_fmts"].split(",") do |string|
|
|
|
|
adaptive_fmts << HTTP::Params.parse(string)
|
|
|
|
end
|
2018-01-04 07:36:16 +05:30
|
|
|
end
|
2018-01-28 07:39:27 +05:30
|
|
|
|
2018-03-14 05:07:56 +05:30
|
|
|
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
|
2018-02-23 00:31:37 +05:30
|
|
|
adaptive_fmts.each do |fmt|
|
|
|
|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"])
|
|
|
|
end
|
|
|
|
|
|
|
|
fmt_stream.each do |fmt|
|
|
|
|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"])
|
2018-02-13 07:24:11 +05:30
|
|
|
end
|
2018-02-04 02:11:59 +05:30
|
|
|
end
|
|
|
|
|
2018-03-14 05:07:56 +05:30
|
|
|
audio_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("audio") ? s : nil }
|
|
|
|
audio_streams.sort_by! { |s| s["bitrate"].to_i }.reverse!
|
2018-05-30 05:10:36 +05:30
|
|
|
audio_streams.each do |stream|
|
|
|
|
stream["bitrate"] = (stream["bitrate"].to_f64/1000).to_i.to_s
|
2018-03-14 05:07:56 +05:30
|
|
|
end
|
|
|
|
|
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-02-05 07:12:13 +05:30
|
|
|
if video.likes > 0 || video.dislikes > 0
|
2018-02-06 05:27:53 +05:30
|
|
|
calculated_rating = (video.likes.to_f/(video.likes.to_f + video.dislikes.to_f) * 4 + 1)
|
2018-02-05 07:12:13 +05:30
|
|
|
end
|
2018-04-28 19:57:05 +05:30
|
|
|
calculated_rating ||= 0.0
|
2017-11-24 09:36:43 +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
|
|
|
|
|
2018-03-05 09:55:03 +05:30
|
|
|
reddit_client = make_client(REDDIT_URL)
|
2018-03-04 22:30:35 +05:30
|
|
|
headers = HTTP::Headers{"User-Agent" => "web:invidio.us:v0.1.0 (by /u/omarroth)"}
|
2018-03-04 02:36:14 +05:30
|
|
|
begin
|
2018-03-04 22:29:03 +05:30
|
|
|
reddit_comments, reddit_thread = get_reddit_comments(id, reddit_client, headers)
|
2018-03-07 09:30:35 +05:30
|
|
|
reddit_html = template_comments(reddit_comments)
|
|
|
|
|
2018-04-06 06:36:22 +05:30
|
|
|
reddit_html = fill_links(reddit_html, "https", "www.reddit.com")
|
2018-03-07 09:30:35 +05:30
|
|
|
reddit_html = add_alt_links(reddit_html)
|
2018-03-04 02:36:14 +05:30
|
|
|
rescue ex
|
|
|
|
reddit_thread = nil
|
2018-03-07 09:30:35 +05:30
|
|
|
reddit_html = ""
|
2018-03-04 02:36:14 +05:30
|
|
|
end
|
|
|
|
|
2018-03-07 09:30:35 +05:30
|
|
|
video.description = fill_links(video.description, "https", "www.youtube.com")
|
|
|
|
video.description = add_alt_links(video.description)
|
|
|
|
|
2018-04-06 07:24:56 +05:30
|
|
|
thumbnail = "https://i.ytimg.com/vi/#{id}/mqdefault.jpg"
|
2018-03-08 04:18:26 +05:30
|
|
|
|
2017-11-23 13:18:55 +05:30
|
|
|
templated "watch"
|
|
|
|
end
|
|
|
|
|
2017-12-31 02:51:43 +05:30
|
|
|
get "/search" do |env|
|
2018-02-15 23:35:39 +05:30
|
|
|
if env.params.query["q"]?
|
|
|
|
query = env.params.query["q"]
|
|
|
|
else
|
2018-04-01 20:39:08 +05:30
|
|
|
next env.redirect "/"
|
2018-02-15 23:35:39 +05:30
|
|
|
end
|
2018-02-27 06:29:02 +05:30
|
|
|
|
2018-03-15 04:36:21 +05:30
|
|
|
page = env.params.query["page"]?.try &.to_i
|
|
|
|
page ||= 1
|
2018-01-07 23:12:24 +05:30
|
|
|
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-01-08 04:48:24 +05:30
|
|
|
|
2018-03-05 09:55:03 +05:30
|
|
|
html = client.get("/results?q=#{URI.escape(query)}&page=#{page}&sp=EgIQAVAU").body
|
2018-01-15 08:46:09 +05:30
|
|
|
html = XML.parse_html(html)
|
2018-01-08 00:33:53 +05:30
|
|
|
|
2018-06-02 03:56:00 +05:30
|
|
|
videos = [] of Video
|
2017-12-31 02:51:43 +05:30
|
|
|
|
2018-01-16 09:41:51 +05:30
|
|
|
html.xpath_nodes(%q(//ol[@class="item-section"]/li)).each do |item|
|
|
|
|
root = item.xpath_node(%q(div[contains(@class,"yt-lockup-video")]/div))
|
|
|
|
if root
|
2018-03-29 05:31:07 +05:30
|
|
|
id = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/@href))
|
|
|
|
if id
|
|
|
|
id = id.content.lchop("/watch?v=")
|
2018-01-15 08:46:09 +05:30
|
|
|
end
|
2018-04-28 19:57:05 +05:30
|
|
|
id ||= ""
|
2017-12-31 02:51:43 +05:30
|
|
|
|
2018-01-16 09:41:51 +05:30
|
|
|
title = root.xpath_node(%q(div[@class="yt-lockup-content"]/h3/a))
|
2018-01-15 08:46:09 +05:30
|
|
|
if title
|
2018-06-02 03:56:00 +05:30
|
|
|
title = title.content
|
2018-01-15 08:46:09 +05:30
|
|
|
end
|
2018-06-02 03:56:00 +05:30
|
|
|
title ||= ""
|
2018-01-15 08:46:09 +05:30
|
|
|
|
2018-02-27 08:29:18 +05:30
|
|
|
author = root.xpath_node(%q(div[@class="yt-lockup-content"]/div/a))
|
|
|
|
if author
|
2018-06-02 03:56:00 +05:30
|
|
|
ucid = author["href"].rpartition("/")[-1]
|
|
|
|
author = author.content
|
2018-02-27 08:29:18 +05:30
|
|
|
end
|
2018-06-02 03:56:00 +05:30
|
|
|
author ||= ""
|
|
|
|
ucid ||= ""
|
2018-02-27 08:29:18 +05:30
|
|
|
|
2018-06-02 03:56:00 +05:30
|
|
|
video = Video.new(id, HTTP::Params.parse(""), Time.now, title, 0_i64, 0, 0, 0.0, Time.now, "", nil, author, ucid)
|
2018-01-16 09:41:51 +05:30
|
|
|
videos << video
|
|
|
|
end
|
2018-01-07 08:09:24 +05:30
|
|
|
end
|
|
|
|
|
2017-12-31 02:51:43 +05:30
|
|
|
templated "search"
|
|
|
|
end
|
|
|
|
|
2018-03-16 22:10:29 +05:30
|
|
|
get "/login" do |env|
|
2018-04-08 08:06:09 +05:30
|
|
|
referer = env.request.headers["referer"]?
|
|
|
|
referer ||= "/feed/subscriptions"
|
|
|
|
|
2018-04-29 20:10:33 +05:30
|
|
|
tfa = env.params.query["tfa"]?
|
|
|
|
tfa ||= false
|
|
|
|
|
2018-04-18 02:28:00 +05:30
|
|
|
if referer.ends_with? "/login"
|
|
|
|
referer = "/feed/subscriptions"
|
|
|
|
end
|
|
|
|
|
2018-04-28 19:57:05 +05:30
|
|
|
if referer.size > 32
|
|
|
|
referer = "/feed/subscriptions"
|
|
|
|
end
|
|
|
|
|
2018-03-16 22:10:29 +05:30
|
|
|
templated "login"
|
|
|
|
end
|
|
|
|
|
|
|
|
# See https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/youtube.py#L79
|
|
|
|
post "/login" do |env|
|
2018-04-08 08:06:09 +05:30
|
|
|
referer = env.params.query["referer"]?
|
|
|
|
referer ||= "/feed/subscriptions"
|
|
|
|
|
2018-03-16 22:10:29 +05:30
|
|
|
email = env.params.body["email"]?
|
|
|
|
password = env.params.body["password"]?
|
2018-04-29 20:10:33 +05:30
|
|
|
tfa_code = env.params.body["tfa"]?.try &.lchop("G-")
|
2018-03-16 22:10:29 +05:30
|
|
|
|
|
|
|
begin
|
|
|
|
client = make_client(LOGIN_URL)
|
|
|
|
headers = HTTP::Headers.new
|
2018-04-29 20:10:33 +05:30
|
|
|
headers["Content-Type"] = "application/x-www-form-urlencoded;charset=utf-8"
|
|
|
|
headers["Google-Accounts-XSRF"] = "1"
|
|
|
|
|
2018-03-16 22:10:29 +05:30
|
|
|
login_page = client.get("/ServiceLogin")
|
|
|
|
headers = login_page.cookies.add_request_headers(headers)
|
|
|
|
|
|
|
|
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
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
login_page.xpath_nodes(%q(//input[@type="hidden"])).each do |node|
|
|
|
|
name = node["id"]? || node["name"]?
|
|
|
|
name ||= ""
|
|
|
|
value = node["value"]?
|
|
|
|
value ||= ""
|
|
|
|
|
|
|
|
if name != "" && value != ""
|
|
|
|
inputs[name] = value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-29 20:10:33 +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-03-16 22:10:29 +05:30
|
|
|
|
|
|
|
lookup_results = client.post("/_/signin/sl/lookup", headers, login_req(inputs, lookup_req))
|
|
|
|
headers = lookup_results.cookies.add_request_headers(headers)
|
|
|
|
|
|
|
|
lookup_results = lookup_results.body
|
|
|
|
lookup_results = lookup_results[5..-1]
|
|
|
|
lookup_results = JSON.parse(lookup_results)
|
|
|
|
|
|
|
|
user_hash = lookup_results[0][2]
|
|
|
|
|
2018-04-29 20:10:33 +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-03-16 22:10:29 +05:30
|
|
|
|
|
|
|
challenge_results = client.post("/_/signin/sl/challenge", headers, login_req(inputs, challenge_req))
|
|
|
|
headers = challenge_results.cookies.add_request_headers(headers)
|
|
|
|
|
|
|
|
challenge_results = challenge_results.body
|
|
|
|
challenge_results = challenge_results[5..-1]
|
|
|
|
challenge_results = JSON.parse(challenge_results)
|
|
|
|
|
2018-04-29 20:10:33 +05:30
|
|
|
headers["Cookie"] = URI.unescape(headers["Cookie"])
|
|
|
|
|
2018-04-18 04:24:33 +05:30
|
|
|
if challenge_results[0][5]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
|
|
|
|
error_message = "Incorrect password"
|
|
|
|
next templated "error"
|
|
|
|
end
|
|
|
|
|
2018-04-29 20:10:33 +05:30
|
|
|
if challenge_results[0][-1][0].as_a?
|
|
|
|
tfa = challenge_results[0][-1][0][0]
|
|
|
|
|
|
|
|
if tfa[2] == "TWO_STEP_VERIFICATION"
|
|
|
|
if tfa[5] == "QUOTA_EXCEEDED"
|
|
|
|
error_message = "Quota exceeded, try again in a few hours"
|
|
|
|
next templated "error"
|
|
|
|
end
|
|
|
|
|
|
|
|
if !tfa_code
|
|
|
|
next env.redirect "/login?tfa=true"
|
|
|
|
end
|
|
|
|
|
|
|
|
tl = challenge_results[1][2]
|
|
|
|
|
|
|
|
tfa_req = %(["#{user_hash}",null,2,null,[9,null,null,null,null,null,null,null,[null,"#{tfa_code}",false,2]]])
|
|
|
|
|
|
|
|
challenge_results = client.post("/_/signin/challenge?hl=en&TL=#{tl}", headers, login_req(inputs, tfa_req))
|
|
|
|
headers = challenge_results.cookies.add_request_headers(headers)
|
|
|
|
|
|
|
|
challenge_results = challenge_results.body
|
|
|
|
challenge_results = challenge_results[5..-1]
|
|
|
|
challenge_results = JSON.parse(challenge_results)
|
|
|
|
|
|
|
|
if challenge_results[0][5]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
|
|
|
|
error_message = "Invalid TFA code"
|
|
|
|
next templated "error"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-16 22:10:29 +05:30
|
|
|
login_res = challenge_results[0][13][2].to_s
|
|
|
|
|
|
|
|
login = client.get(login_res, headers)
|
|
|
|
headers = login.cookies.add_request_headers(headers)
|
|
|
|
|
|
|
|
login = client.get(login.headers["Location"], headers)
|
2018-04-08 08:06:09 +05:30
|
|
|
|
|
|
|
headers = HTTP::Headers.new
|
2018-03-16 22:10:29 +05:30
|
|
|
headers = login.cookies.add_request_headers(headers)
|
2018-03-26 08:51:24 +05:30
|
|
|
|
2018-04-08 08:06:09 +05:30
|
|
|
sid = login.cookies["SID"].value
|
|
|
|
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-04-08 08:06:09 +05:30
|
|
|
user = get_user(sid, client, headers, PG_DB)
|
|
|
|
|
2018-03-16 22:10:29 +05:30
|
|
|
# We are now logged in
|
|
|
|
|
2018-03-25 09:08:35 +05:30
|
|
|
host = URI.parse(env.request.headers["Host"]).host
|
|
|
|
|
2018-03-22 23:14:36 +05:30
|
|
|
login.cookies.each do |cookie|
|
2018-03-25 09:08:35 +05:30
|
|
|
cookie.secure = false
|
2018-03-22 23:14:36 +05:30
|
|
|
cookie.extension = cookie.extension.not_nil!.gsub(".youtube.com", host)
|
2018-03-25 09:08:35 +05:30
|
|
|
cookie.extension = cookie.extension.not_nil!.gsub("Secure; ", "")
|
2018-03-22 23:14:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
login.cookies.add_response_headers(env.response.headers)
|
|
|
|
|
2018-04-08 08:06:09 +05:30
|
|
|
env.redirect referer
|
2018-03-16 22:10:29 +05:30
|
|
|
rescue ex
|
2018-05-06 07:21:31 +05:30
|
|
|
error_message = "Login failed. This may be because two-factor authentication is not enabled on your account."
|
2018-03-16 22:10:29 +05:30
|
|
|
next templated "error"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-25 09:08:35 +05:30
|
|
|
get "/signout" do |env|
|
2018-04-08 08:06:09 +05:30
|
|
|
referer = env.request.headers["referer"]?
|
|
|
|
referer ||= "/"
|
|
|
|
|
2018-03-22 23:14:36 +05:30
|
|
|
env.request.cookies.each do |cookie|
|
2018-04-14 08:02:14 +05:30
|
|
|
if cookie.name != "darktheme"
|
|
|
|
cookie.expires = Time.new(1990, 1, 1)
|
|
|
|
end
|
2018-03-22 23:14:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
env.request.cookies.add_response_headers(env.response.headers)
|
2018-04-08 08:06:09 +05:30
|
|
|
env.redirect referer
|
2018-03-22 23:14:36 +05:30
|
|
|
end
|
|
|
|
|
2018-03-04 05:48:03 +05:30
|
|
|
get "/redirect" do |env|
|
|
|
|
if env.params.query["q"]?
|
|
|
|
env.redirect env.params.query["q"]
|
|
|
|
else
|
|
|
|
env.redirect "/"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-07 04:25:51 +05:30
|
|
|
# Return dash manifest for the given video ID, note this will not work on
|
|
|
|
# videos that already have a dashmpd in video info.
|
2018-03-13 07:06:49 +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"
|
|
|
|
|
2018-04-16 09:27:17 +05:30
|
|
|
local = env.params.query["local"]?.try &.== "true"
|
2018-03-13 07:06:49 +05:30
|
|
|
id = env.params.url["id"]
|
|
|
|
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-03-13 07:06:49 +05:30
|
|
|
begin
|
2018-04-28 19:52:06 +05:30
|
|
|
video = get_video(id, client, PG_DB)
|
2018-03-13 07:06:49 +05:30
|
|
|
rescue ex
|
|
|
|
halt env, status_code: 403
|
|
|
|
end
|
|
|
|
|
|
|
|
adaptive_fmts = [] of HTTP::Params
|
|
|
|
if video.info.has_key?("adaptive_fmts")
|
|
|
|
video.info["adaptive_fmts"].split(",") do |string|
|
|
|
|
adaptive_fmts << HTTP::Params.parse(string)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
halt env, status_code: 403
|
|
|
|
end
|
|
|
|
|
2018-04-16 09:27:17 +05:30
|
|
|
if local
|
|
|
|
adaptive_fmts.each do |fmt|
|
|
|
|
if Kemal.config.ssl
|
|
|
|
scheme = "https://"
|
|
|
|
end
|
|
|
|
scheme ||= "http://"
|
|
|
|
|
|
|
|
fmt["url"] = scheme + env.request.headers["Host"] + URI.parse(fmt["url"]).full_path
|
|
|
|
end
|
2018-03-13 08:46:38 +05:30
|
|
|
end
|
2018-03-13 07:06:49 +05:30
|
|
|
|
2018-04-16 09:27:17 +05:30
|
|
|
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
|
2018-03-14 05:07:56 +05:30
|
|
|
adaptive_fmts.each do |fmt|
|
2018-03-13 08:46:38 +05:30
|
|
|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
video_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("video/mp4") ? s : nil }
|
|
|
|
|
|
|
|
audio_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("audio/mp4") ? s : nil }
|
|
|
|
audio_streams.sort_by! { |s| s["bitrate"].to_i }.reverse!
|
|
|
|
audio_streams.each do |fmt|
|
|
|
|
fmt["bitrate"] = (fmt["bitrate"].to_f64/1000).to_i.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
manifest = XML.build(indent: " ", encoding: "UTF-8") do |xml|
|
2018-06-07 04:25:51 +05:30
|
|
|
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
|
2018-03-13 08:46:38 +05:30
|
|
|
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")
|
2018-03-17 07:40:38 +05:30
|
|
|
audio_streams.each do |fmt|
|
2018-03-14 05:07:56 +05:30
|
|
|
mimetype, codecs = fmt["type"].split(";")
|
|
|
|
codecs = codecs[9..-2]
|
|
|
|
fmt_type = mimetype.split("/")[0]
|
|
|
|
bandwidth = fmt["bitrate"]
|
2018-03-13 08:46:38 +05:30
|
|
|
itag = fmt["itag"]
|
2018-03-17 07:40:38 +05:30
|
|
|
url = fmt["url"]
|
2018-06-07 04:25:51 +05:30
|
|
|
url = url.gsub("?", "/")
|
|
|
|
url = url.gsub("&", "/")
|
|
|
|
url = url.gsub("=", "/")
|
2018-03-13 07:06:49 +05:30
|
|
|
|
2018-03-13 08:46:38 +05:30
|
|
|
xml.element("Representation", id: fmt["itag"], codecs: codecs, bandwidth: bandwidth) do
|
2018-06-07 04:25:51 +05:30
|
|
|
xml.element("AudioChannelConfiguration", schemeIdUri: "urn:mpeg:dash:23003:3:audio_channel_configuration:2011", value: "2")
|
2018-03-17 07:40:38 +05:30
|
|
|
xml.element("BaseURL") { xml.text url }
|
2018-03-14 05:07:56 +05:30
|
|
|
xml.element("SegmentBase", indexRange: fmt["init"]) do
|
|
|
|
xml.element("Initialization", range: fmt["index"])
|
2018-03-13 07:06:49 +05:30
|
|
|
end
|
|
|
|
end
|
2018-03-14 05:07:56 +05:30
|
|
|
end
|
2018-03-13 08:46:38 +05:30
|
|
|
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"]
|
2018-03-17 07:40:38 +05:30
|
|
|
url = fmt["url"]
|
2018-06-07 04:25:51 +05:30
|
|
|
url = url.gsub("?", "/")
|
|
|
|
url = url.gsub("&", "/")
|
|
|
|
url = url.gsub("=", "/")
|
2018-03-13 08:46:38 +05:30
|
|
|
height, width = fmt["size"].split("x")
|
|
|
|
|
2018-06-07 04:25:51 +05:30
|
|
|
xml.element("Representation", id: itag, codecs: codecs, width: width, startWithSAP: "1", maxPlayoutRate: "1",
|
|
|
|
height: height, bandwidth: bandwidth, frameRate: fmt["fps"]) do
|
2018-03-17 07:40:38 +05:30
|
|
|
xml.element("BaseURL") { xml.text url }
|
2018-03-14 05:07:56 +05:30
|
|
|
xml.element("SegmentBase", indexRange: fmt["init"]) do
|
|
|
|
xml.element("Initialization", range: fmt["index"])
|
2018-03-13 07:06:49 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-03-14 05:07:56 +05:30
|
|
|
end
|
2018-03-13 07:06:49 +05:30
|
|
|
|
2018-03-13 08:46:38 +05:30
|
|
|
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"?>))
|
2018-03-13 07:06:49 +05:30
|
|
|
manifest
|
|
|
|
end
|
|
|
|
|
2018-03-25 09:08:35 +05:30
|
|
|
# Get subscriptions for authorized user
|
|
|
|
get "/feed/subscriptions" do |env|
|
2018-03-25 09:26:41 +05:30
|
|
|
authorized = env.get? "authorized"
|
2018-03-25 09:08:35 +05:30
|
|
|
|
|
|
|
if authorized
|
2018-04-18 02:57:55 +05:30
|
|
|
max_results = env.params.query["maxResults"]?.try &.to_i || 40
|
2018-03-25 09:08:35 +05:30
|
|
|
|
|
|
|
page = env.params.query["page"]?.try &.to_i
|
|
|
|
page ||= 1
|
|
|
|
|
2018-04-18 02:57:55 +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
|
|
|
headers = HTTP::Headers.new
|
|
|
|
headers["Cookie"] = env.request.headers["Cookie"]
|
|
|
|
|
2018-04-01 05:39:27 +05:30
|
|
|
sid = env.get("sid").as(String)
|
2018-03-25 09:08:35 +05:30
|
|
|
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-03-30 08:11:05 +05:30
|
|
|
user = get_user(sid, client, headers, PG_DB)
|
2018-03-25 09:08:35 +05:30
|
|
|
|
2018-04-03 05:08:03 +05:30
|
|
|
args = arg_array(user.subscriptions, 3)
|
|
|
|
videos = PG_DB.query_all("SELECT * FROM channel_videos WHERE ucid IN (#{args}) \
|
2018-04-18 02:57:55 +05:30
|
|
|
ORDER BY published DESC LIMIT $1 OFFSET $2", [limit, offset] + user.subscriptions, as: ChannelVideo)
|
|
|
|
|
2018-05-08 08:27:47 +05:30
|
|
|
notifications = PG_DB.query_one("SELECT notifications FROM users WHERE email = $1", user.email, as: Array(String))
|
|
|
|
|
|
|
|
notifications = videos.select { |v| notifications.includes? v.id }
|
2018-05-08 08:34:58 +05:30
|
|
|
videos = videos - notifications
|
2018-05-08 08:27:47 +05:30
|
|
|
|
2018-04-18 02:57:55 +05:30
|
|
|
if !limit
|
|
|
|
videos = videos[0..max_results]
|
|
|
|
end
|
2018-04-01 05:39:27 +05:30
|
|
|
|
2018-04-06 06:37:14 +05:30
|
|
|
PG_DB.exec("UPDATE users SET notifications = $1 WHERE id = $2", [] of String, sid)
|
2018-04-01 05:39:27 +05:30
|
|
|
env.set "notifications", 0
|
2018-03-25 09:08:35 +05:30
|
|
|
|
|
|
|
templated "subscriptions"
|
|
|
|
else
|
|
|
|
env.redirect "/"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-14 06:41:16 +05:30
|
|
|
# Function that is useful if you have multiple channels that don't have
|
2018-05-30 05:10:29 +05:30
|
|
|
# the bell dinged. Request parameters are fairly self-explanatory,
|
|
|
|
# receive_all_updates = true and receive_post_updates = true will ding all
|
2018-04-14 06:41:16 +05:30
|
|
|
# channels. Calling /modify_notifications without any arguments will
|
|
|
|
# request all notifications from all channels.
|
|
|
|
# /modify_notifications?receive_all_updates=false&receive_no_updates=false
|
|
|
|
# will "unding" all subscriptions.
|
|
|
|
get "/modify_notifications" do |env|
|
2018-03-31 07:22:10 +05:30
|
|
|
authorized = env.get? "authorized"
|
|
|
|
|
2018-04-14 06:41:16 +05:30
|
|
|
referer = env.request.headers["referer"]?
|
|
|
|
referer ||= "/"
|
2018-03-31 07:22:10 +05:30
|
|
|
|
2018-04-14 06:41:16 +05:30
|
|
|
if authorized
|
|
|
|
channel_req = {} of String => String
|
2018-03-31 07:22:10 +05:30
|
|
|
|
2018-04-14 06:41:16 +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-03-31 07:22:10 +05:30
|
|
|
|
2018-04-14 06:41:16 +05:30
|
|
|
channel_req.reject! { |k, v| v != "true" && v != "false" }
|
2018-03-31 07:22:10 +05:30
|
|
|
|
|
|
|
headers = HTTP::Headers.new
|
|
|
|
headers["Cookie"] = env.request.headers["Cookie"]
|
|
|
|
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-03-31 07:22:10 +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
|
2018-04-14 06:41:16 +05:30
|
|
|
next env.redirect referer
|
2018-03-31 07:22:10 +05:30
|
|
|
end
|
|
|
|
|
2018-04-14 06:41:16 +05:30
|
|
|
channel_req["session_token"] = session_token
|
|
|
|
|
2018-03-31 07:22:10 +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|
|
2018-03-31 20:21:14 +05:30
|
|
|
channel_id = channel.content.lstrip("/channel/").not_nil!
|
2018-03-31 07:22:10 +05:30
|
|
|
|
2018-04-14 06:41:16 +05:30
|
|
|
channel_req["channel_id"] = channel_id
|
2018-03-31 07:22:10 +05:30
|
|
|
|
2018-04-14 06:41:16 +05:30
|
|
|
client.post("/subscription_ajax?action_update_subscription_preferences=1", headers, HTTP::Params.encode(channel_req)).body
|
2018-03-31 07:22:10 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-14 06:41:16 +05:30
|
|
|
env.redirect referer
|
2018-03-31 07:22:10 +05:30
|
|
|
end
|
|
|
|
|
2018-03-31 20:21:14 +05:30
|
|
|
get "/subscription_ajax" do |env|
|
|
|
|
authorized = env.get? "authorized"
|
|
|
|
referer = env.request.headers["referer"]?
|
|
|
|
referer ||= "/"
|
|
|
|
|
|
|
|
if authorized
|
|
|
|
if env.params.query["action_create_subscription_to_channel"]?
|
|
|
|
action = "action_create_subscription_to_channel"
|
|
|
|
elsif env.params.query["action_remove_subscriptions"]?
|
|
|
|
action = "action_remove_subscriptions"
|
|
|
|
else
|
2018-04-01 20:39:08 +05:30
|
|
|
next env.redirect referer
|
2018-03-31 20:21:14 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
channel_id = env.params.query["c"]?
|
|
|
|
channel_id ||= ""
|
|
|
|
|
|
|
|
headers = HTTP::Headers.new
|
|
|
|
headers["Cookie"] = env.request.headers["Cookie"]
|
|
|
|
|
2018-04-28 19:52:06 +05:30
|
|
|
client = make_client(YT_URL)
|
2018-03-31 20:21:14 +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
|
|
|
|
|
|
|
|
headers["content-type"] = "application/x-www-form-urlencoded"
|
|
|
|
|
|
|
|
post_req = {
|
|
|
|
"session_token" => session_token,
|
|
|
|
}
|
|
|
|
post_req = HTTP::Params.encode(post_req)
|
|
|
|
post_url = "/subscription_ajax?#{action}=1&c=#{channel_id}"
|
|
|
|
|
|
|
|
# Update user
|
|
|
|
if client.post(post_url, headers, post_req).status_code == 200
|
2018-04-01 05:39:27 +05:30
|
|
|
sid = env.get("sid").as(String)
|
2018-03-31 20:21:14 +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
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
env.redirect referer
|
|
|
|
end
|
|
|
|
|
2018-04-14 08:02:14 +05:30
|
|
|
get "/modify_theme" do |env|
|
|
|
|
referer = env.request.headers["referer"]?
|
|
|
|
referer ||= "/"
|
|
|
|
|
|
|
|
if env.params.query["dark"]?
|
|
|
|
env.response.cookies["darktheme"] = "true"
|
|
|
|
elsif env.params.query["light"]?
|
|
|
|
env.request.cookies["darktheme"].expires = Time.new(1990, 1, 1)
|
|
|
|
env.request.cookies.add_response_headers(env.response.headers)
|
|
|
|
end
|
|
|
|
|
|
|
|
env.redirect referer
|
|
|
|
end
|
|
|
|
|
2018-06-07 04:25:51 +05:30
|
|
|
get "/videoplayback*" do |env|
|
|
|
|
path = env.request.path
|
|
|
|
if path != "/videoplayback"
|
|
|
|
path = path.lchop("/videoplayback/")
|
|
|
|
path = path.split("/")
|
|
|
|
# puts path
|
|
|
|
|
|
|
|
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"])
|
|
|
|
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-04-16 07:17:37 +05:30
|
|
|
chunk = Bytes[8]
|
|
|
|
|
|
|
|
loop do
|
|
|
|
count = response.body_io.read(chunk)
|
|
|
|
|
|
|
|
begin
|
|
|
|
env.response.write(chunk)
|
|
|
|
env.response.flush
|
|
|
|
rescue ex
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-05 21:55:15 +05:30
|
|
|
get "/user/:user" do |env|
|
|
|
|
user = env.params.url["user"]
|
|
|
|
env.redirect "/channel/#{user}"
|
|
|
|
end
|
|
|
|
|
2018-06-03 06:22:58 +05:30
|
|
|
get "/channel/:ucid" do |env|
|
2018-06-15 05:36:22 +05:30
|
|
|
authorized = env.get? "authorized"
|
|
|
|
if authorized
|
|
|
|
sid = env.get("sid").as(String)
|
|
|
|
|
|
|
|
subscriptions = PG_DB.query_one?("SELECT subscriptions FROM users WHERE id = $1", sid, as: Array(String))
|
|
|
|
end
|
|
|
|
subscriptions ||= [] of String
|
|
|
|
|
2018-06-03 06:22:58 +05:30
|
|
|
ucid = env.params.url["ucid"]
|
|
|
|
|
|
|
|
page = env.params.query["page"]?.try &.to_i
|
|
|
|
page ||= 1
|
|
|
|
|
|
|
|
client = make_client(YT_URL)
|
|
|
|
|
|
|
|
if !ucid.starts_with? "UC"
|
|
|
|
rss = client.get("/feeds/videos.xml?user=#{ucid}").body
|
|
|
|
rss = XML.parse_html(rss)
|
|
|
|
|
|
|
|
ucid = rss.xpath_node("//feed/channelid").not_nil!.content
|
|
|
|
env.redirect "/channel/#{ucid}"
|
|
|
|
end
|
|
|
|
|
|
|
|
url = produce_playlist_url(ucid, (page - 1) * 100)
|
|
|
|
response = client.get(url)
|
|
|
|
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
document = XML.parse_html(json["content_html"].as_s)
|
|
|
|
author = document.xpath_node(%q(//div[@class="pl-video-owner"]/a)).not_nil!.content
|
|
|
|
|
|
|
|
videos = [] of ChannelVideo
|
|
|
|
document.xpath_nodes(%q(//a[contains(@class,"pl-video-title-link")])).each do |item|
|
|
|
|
href = URI.parse(item["href"])
|
|
|
|
id = HTTP::Params.parse(href.query.not_nil!)["v"]
|
|
|
|
title = item.content
|
|
|
|
|
|
|
|
videos << ChannelVideo.new(id, title, Time.now, Time.now, ucid, author)
|
|
|
|
end
|
|
|
|
|
|
|
|
templated "channel"
|
|
|
|
end
|
|
|
|
|
2018-06-07 08:16:57 +05:30
|
|
|
options "/videoplayback*" do |env|
|
2018-04-17 06:11:38 +05:30
|
|
|
env.response.headers["Access-Control-Allow-Origin"] = "*"
|
|
|
|
env.response.headers["Access-Control-Allow-Methods"] = "GET"
|
2018-04-17 07:19:00 +05:30
|
|
|
env.response.headers["Access-Control-Allow-Headers"] = "Content-Type, range"
|
2018-04-17 06:11:38 +05:30
|
|
|
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
|
|
|
|
|
|
|
add_handler FilteredCompressHandler.new
|
2017-11-23 13:18:55 +05:30
|
|
|
|
|
|
|
Kemal.run
|