2018-03-07 18:58:33 -05:00
|
|
|
# "Invidious" (which is what YouTube should be)
|
2018-01-28 12:32:40 -05:00
|
|
|
# Copyright (C) 2018 Omar Roth
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2018-03-16 20:36:49 -04:00
|
|
|
require "detect_language"
|
2017-11-23 02:48:55 -05:00
|
|
|
require "kemal"
|
2018-02-03 17:13:14 -05:00
|
|
|
require "option_parser"
|
2017-11-23 23:06:43 -05:00
|
|
|
require "pg"
|
2018-01-16 15:02:35 -05:00
|
|
|
require "xml"
|
2018-03-09 13:42:23 -05:00
|
|
|
require "yaml"
|
2018-01-20 19:19:12 -05:00
|
|
|
require "./helpers"
|
2018-03-16 13:06:03 -04:00
|
|
|
require "./cookie_fix"
|
2017-11-29 16:33:46 -05:00
|
|
|
|
2018-03-09 13:42:23 -05:00
|
|
|
CONFIG = Config.from_yaml(File.read("config/config.yml"))
|
|
|
|
|
|
|
|
pool_size = CONFIG.pool_size
|
|
|
|
threads = CONFIG.threads
|
2018-03-25 23:18:29 -04:00
|
|
|
channel_threads = 10
|
2018-03-04 11:59:03 -05:00
|
|
|
|
2018-02-05 20:37:09 -05:00
|
|
|
Kemal.config.extra_options do |parser|
|
2018-02-03 17:13:14 -05:00
|
|
|
parser.banner = "Usage: invidious [arguments]"
|
2018-03-04 23:25:03 -05:00
|
|
|
parser.on("-z SIZE", "--youtube-pool=SIZE", "Number of clients in youtube pool (default: #{pool_size})") do |number|
|
2018-03-04 11:59:03 -05:00
|
|
|
begin
|
2018-03-04 23:25:03 -05:00
|
|
|
pool_size = number.to_i
|
2018-03-04 11:59:03 -05:00
|
|
|
rescue ex
|
|
|
|
puts "SIZE must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2018-03-04 23:25:03 -05:00
|
|
|
parser.on("-t THREADS", "--youtube-threads=THREADS", "Number of threads for crawling (default: #{threads})") do |number|
|
2018-02-03 17:13:14 -05:00
|
|
|
begin
|
2018-03-04 23:25:03 -05:00
|
|
|
threads = number.to_i
|
2018-02-03 17:13:14 -05:00
|
|
|
rescue ex
|
|
|
|
puts "THREADS must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2018-02-13 11:43:15 -05:00
|
|
|
end
|
2018-02-11 17:48:27 -05:00
|
|
|
|
|
|
|
Kemal::CLI.new
|
2018-02-03 17:13:14 -05:00
|
|
|
|
2018-03-09 13:42:23 -05:00
|
|
|
PG_URL = URI.new(
|
|
|
|
scheme: "postgres",
|
|
|
|
user: CONFIG.db[:user],
|
|
|
|
password: CONFIG.db[:password],
|
|
|
|
host: CONFIG.db[:host],
|
|
|
|
port: CONFIG.db[:port],
|
|
|
|
path: CONFIG.db[:dbname],
|
|
|
|
)
|
|
|
|
|
|
|
|
PG_DB = DB.open PG_URL
|
2018-03-04 11:59:03 -05:00
|
|
|
YT_URL = URI.parse("https://www.youtube.com")
|
|
|
|
REDDIT_URL = URI.parse("https://api.reddit.com")
|
2018-03-16 12:40:29 -04:00
|
|
|
LOGIN_URL = URI.parse("https://accounts.google.com")
|
2018-03-04 23:25:03 -05:00
|
|
|
|
|
|
|
youtube_pool = Deque.new(pool_size) do
|
|
|
|
make_client(YT_URL)
|
2018-03-03 16:06:14 -05:00
|
|
|
end
|
2018-01-16 22:42:48 -05:00
|
|
|
|
2018-03-03 16:06:14 -05:00
|
|
|
# Refresh youtube_pool by crawling YT
|
2018-03-04 23:25:03 -05:00
|
|
|
threads.times do
|
2018-01-27 21:09:27 -05:00
|
|
|
spawn do
|
|
|
|
ids = Deque(String).new
|
|
|
|
random = Random.new
|
2018-01-21 12:04:58 -05:00
|
|
|
|
2018-03-04 23:25:03 -05:00
|
|
|
client = get_client(youtube_pool)
|
|
|
|
search(random.base64(3), client) do |id|
|
2018-01-27 21:09:27 -05:00
|
|
|
ids << id
|
2018-01-21 18:49:27 -05:00
|
|
|
end
|
2018-03-04 23:25:03 -05:00
|
|
|
youtube_pool << client
|
2018-02-08 21:19:44 -05:00
|
|
|
|
2018-01-27 21:09:27 -05:00
|
|
|
loop do
|
2018-03-04 23:25:03 -05:00
|
|
|
client = get_client(youtube_pool)
|
2018-02-08 21:19:44 -05:00
|
|
|
|
2018-01-27 21:09:27 -05:00
|
|
|
if ids.empty?
|
2018-03-04 23:25:03 -05:00
|
|
|
search(random.base64(3), client) do |id|
|
2018-01-27 21:09:27 -05:00
|
|
|
ids << id
|
|
|
|
end
|
|
|
|
end
|
2018-01-21 12:04:58 -05:00
|
|
|
|
2018-01-27 21:09:27 -05:00
|
|
|
begin
|
|
|
|
id = ids[0]
|
2018-03-04 23:25:03 -05:00
|
|
|
video = get_video(id, client, PG_DB)
|
2018-01-27 21:09:27 -05:00
|
|
|
rescue ex
|
2018-03-04 23:25:03 -05:00
|
|
|
STDOUT << id << " : " << ex.message << "\n"
|
|
|
|
youtube_pool << make_client(YT_URL)
|
2018-01-27 21:09:27 -05:00
|
|
|
next
|
|
|
|
ensure
|
|
|
|
ids.delete(id)
|
|
|
|
end
|
2018-01-20 19:19:55 -05:00
|
|
|
|
2018-01-27 21:09:27 -05:00
|
|
|
rvs = [] of Hash(String, String)
|
|
|
|
if video.info.has_key?("rvs")
|
|
|
|
video.info["rvs"].split(",").each do |rv|
|
|
|
|
rvs << HTTP::Params.parse(rv).to_h
|
|
|
|
end
|
2018-01-18 22:46:29 -05:00
|
|
|
end
|
2018-01-20 19:19:55 -05:00
|
|
|
|
2018-01-27 21:09:27 -05:00
|
|
|
rvs.each do |rv|
|
|
|
|
if rv.has_key?("id") && !PG_DB.query_one?("SELECT EXISTS (SELECT true FROM videos WHERE id = $1)", rv["id"], as: Bool)
|
|
|
|
ids.delete(id)
|
2018-01-21 18:49:27 -05:00
|
|
|
ids << rv["id"]
|
2018-01-27 21:09:27 -05:00
|
|
|
if ids.size == 150
|
2018-01-21 18:49:27 -05:00
|
|
|
ids.shift
|
2018-01-21 12:07:32 -05:00
|
|
|
end
|
|
|
|
end
|
2018-01-21 12:04:58 -05:00
|
|
|
end
|
2018-01-20 19:19:55 -05:00
|
|
|
|
2018-03-04 23:25:03 -05:00
|
|
|
youtube_pool << client
|
2018-01-27 21:09:27 -05:00
|
|
|
end
|
2018-01-16 22:42:48 -05:00
|
|
|
end
|
2018-01-07 18:18:24 -05:00
|
|
|
end
|
2018-01-06 21:39:24 -05:00
|
|
|
|
2018-03-25 23:18:29 -04:00
|
|
|
channel_threads.times do |i|
|
|
|
|
spawn do
|
|
|
|
loop do
|
|
|
|
query = "SELECT id FROM channels ORDER BY updated \
|
|
|
|
LIMIT (SELECT count(*)/#{channel_threads} FROM channels) \
|
|
|
|
OFFSET (SELECT count(*)*#{i}/#{channel_threads} FROM channels)"
|
|
|
|
PG_DB.query(query) do |rs|
|
|
|
|
rs.each do
|
|
|
|
client = get_client(youtube_pool)
|
|
|
|
id = rs.read(String)
|
|
|
|
channel = get_channel(id, client, PG_DB)
|
|
|
|
youtube_pool << client
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-07 23:04:47 -05:00
|
|
|
top_videos = [] of Video
|
2017-11-23 02:48:55 -05:00
|
|
|
|
2018-02-07 23:04:47 -05:00
|
|
|
spawn do
|
2018-03-16 20:36:49 -04:00
|
|
|
if CONFIG.dl_api_key
|
|
|
|
DetectLanguage.configure do |config|
|
|
|
|
config.api_key = CONFIG.dl_api_key.not_nil!
|
|
|
|
end
|
2018-03-16 20:52:25 -04:00
|
|
|
filter = true
|
|
|
|
else
|
|
|
|
filter = false
|
2018-03-16 20:36:49 -04:00
|
|
|
end
|
|
|
|
|
2018-02-07 23:04:47 -05:00
|
|
|
loop do
|
2018-03-19 13:35:35 -04:00
|
|
|
begin
|
|
|
|
top = rank_videos(PG_DB, 40, youtube_pool, filter)
|
|
|
|
rescue ex
|
|
|
|
next
|
|
|
|
end
|
2018-02-05 18:56:40 -05:00
|
|
|
|
2018-02-15 12:55:44 -05:00
|
|
|
if top.size > 0
|
2018-03-04 09:54:19 -05:00
|
|
|
args = arg_array(top)
|
2018-02-15 12:55:44 -05:00
|
|
|
else
|
|
|
|
next
|
|
|
|
end
|
2018-02-05 18:56:40 -05:00
|
|
|
|
2018-02-08 21:19:44 -05:00
|
|
|
videos = [] of Video
|
|
|
|
|
2018-03-17 00:01:35 -04:00
|
|
|
top.each do |id|
|
|
|
|
client = get_client(youtube_pool)
|
2018-03-17 00:57:31 -04:00
|
|
|
begin
|
|
|
|
videos << get_video(id, client, PG_DB)
|
|
|
|
rescue ex
|
2018-03-19 13:35:35 -04:00
|
|
|
next
|
2018-03-17 00:57:31 -04:00
|
|
|
end
|
2018-03-17 00:01:35 -04:00
|
|
|
youtube_pool << client
|
2018-02-05 18:56:40 -05:00
|
|
|
end
|
2018-02-07 23:04:47 -05:00
|
|
|
|
2018-02-08 21:19:44 -05:00
|
|
|
top_videos = videos
|
2018-03-05 19:34:26 -05:00
|
|
|
Fiber.yield
|
2018-02-07 23:04:47 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-24 23:56:41 -04:00
|
|
|
before_all do |env|
|
|
|
|
if env.request.cookies.has_key?("SID")
|
2018-03-22 13:44:36 -04:00
|
|
|
env.set "authorized", true
|
|
|
|
else
|
|
|
|
env.set "authorized", false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-07 23:04:47 -05:00
|
|
|
get "/" do |env|
|
2017-12-30 16:28:41 -05:00
|
|
|
templated "index"
|
|
|
|
end
|
|
|
|
|
|
|
|
get "/watch" do |env|
|
2018-02-15 13:05:39 -05:00
|
|
|
if env.params.query["v"]?
|
|
|
|
id = env.params.query["v"]
|
|
|
|
else
|
|
|
|
env.redirect "/"
|
|
|
|
next
|
|
|
|
end
|
2018-01-15 21:30:57 -05:00
|
|
|
|
2018-02-26 19:59:02 -05:00
|
|
|
listen = false
|
2018-02-11 18:01:32 -05:00
|
|
|
if env.params.query["listen"]? && env.params.query["listen"] == "true"
|
|
|
|
listen = true
|
2018-02-13 11:43:15 -05:00
|
|
|
env.params.query.delete_all("listen")
|
2018-02-11 18:01:32 -05:00
|
|
|
end
|
2018-01-06 21:39:24 -05:00
|
|
|
|
2018-03-03 16:06:14 -05:00
|
|
|
yt_client = get_client(youtube_pool)
|
2018-01-06 21:39:24 -05:00
|
|
|
begin
|
2018-03-03 16:06:14 -05:00
|
|
|
video = get_video(id, yt_client, PG_DB)
|
2018-01-06 21:39:24 -05:00
|
|
|
rescue ex
|
|
|
|
error_message = ex.message
|
|
|
|
next templated "error"
|
2018-03-03 18:45:54 -05:00
|
|
|
ensure
|
|
|
|
youtube_pool << yt_client
|
2018-01-06 21:39:24 -05:00
|
|
|
end
|
2017-12-30 16:28:41 -05:00
|
|
|
|
2017-11-28 20:59:51 -05:00
|
|
|
fmt_stream = [] of HTTP::Params
|
2018-01-06 21:39:24 -05:00
|
|
|
video.info["url_encoded_fmt_stream_map"].split(",") do |string|
|
2018-03-14 19:05:19 -04:00
|
|
|
if !string.empty?
|
2018-03-14 19:06:21 -04:00
|
|
|
fmt_stream << HTTP::Params.parse(string)
|
|
|
|
end
|
2018-03-14 19:05:19 -04:00
|
|
|
end
|
2018-01-21 12:07:32 -05:00
|
|
|
|
2018-01-03 21:06:16 -05:00
|
|
|
adaptive_fmts = [] of HTTP::Params
|
2018-01-19 19:31:47 -05:00
|
|
|
if video.info.has_key?("adaptive_fmts")
|
|
|
|
video.info["adaptive_fmts"].split(",") do |string|
|
|
|
|
adaptive_fmts << HTTP::Params.parse(string)
|
|
|
|
end
|
2018-01-03 21:06:16 -05:00
|
|
|
end
|
2018-01-27 21:09:27 -05:00
|
|
|
|
2018-03-13 19:37:56 -04:00
|
|
|
signature = false
|
|
|
|
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
|
|
|
|
signature = true
|
|
|
|
end
|
|
|
|
|
2018-02-22 14:01:37 -05:00
|
|
|
if signature
|
|
|
|
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-12 20:54:11 -05:00
|
|
|
end
|
2018-02-03 15:41:59 -05:00
|
|
|
end
|
|
|
|
|
2018-03-13 19:37:56 -04:00
|
|
|
fmt_stream = fmt_stream.uniq { |s| s["quality"] }
|
|
|
|
|
|
|
|
video_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("video") ? s : nil }
|
|
|
|
video_streams = video_streams.uniq { |s| s["size"] }
|
|
|
|
|
|
|
|
audio_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("audio") ? s : nil }
|
|
|
|
audio_streams.sort_by! { |s| s["bitrate"].to_i }.reverse!
|
|
|
|
audio_streams.each do |fmt|
|
|
|
|
fmt["bitrate"] = (fmt["bitrate"].to_f64/1000).to_i.to_s
|
|
|
|
end
|
|
|
|
|
2018-01-19 19:31:47 -05:00
|
|
|
rvs = [] of Hash(String, String)
|
|
|
|
if video.info.has_key?("rvs")
|
|
|
|
video.info["rvs"].split(",").each do |rv|
|
|
|
|
rvs << HTTP::Params.parse(rv).to_h
|
|
|
|
end
|
|
|
|
end
|
2018-01-21 12:07:32 -05:00
|
|
|
|
2018-01-06 21:39:24 -05:00
|
|
|
rating = video.info["avg_rating"].to_f64
|
|
|
|
|
2018-01-27 21:09:27 -05:00
|
|
|
engagement = ((video.dislikes.to_f + video.likes.to_f)/video.views * 100)
|
2018-02-11 23:06:29 -05:00
|
|
|
|
2018-02-04 20:42:13 -05:00
|
|
|
if video.likes > 0 || video.dislikes > 0
|
2018-02-05 18:57:53 -05:00
|
|
|
calculated_rating = (video.likes.to_f/(video.likes.to_f + video.dislikes.to_f) * 4 + 1)
|
2018-02-04 20:42:13 -05:00
|
|
|
else
|
|
|
|
calculated_rating = 0.0
|
|
|
|
end
|
2017-11-23 23:06:43 -05:00
|
|
|
|
2018-03-04 23:25:03 -05:00
|
|
|
reddit_client = make_client(REDDIT_URL)
|
2018-03-04 12:00:35 -05:00
|
|
|
headers = HTTP::Headers{"User-Agent" => "web:invidio.us:v0.1.0 (by /u/omarroth)"}
|
2018-03-03 16:06:14 -05:00
|
|
|
begin
|
2018-03-04 11:59:03 -05:00
|
|
|
reddit_comments, reddit_thread = get_reddit_comments(id, reddit_client, headers)
|
2018-03-06 23:00:35 -05:00
|
|
|
reddit_html = template_comments(reddit_comments)
|
|
|
|
|
|
|
|
reddit_html = add_alt_links(reddit_html)
|
2018-03-03 16:06:14 -05:00
|
|
|
rescue ex
|
|
|
|
reddit_thread = nil
|
2018-03-06 23:00:35 -05:00
|
|
|
reddit_html = ""
|
2018-03-03 16:06:14 -05:00
|
|
|
end
|
|
|
|
|
2018-03-06 23:00:35 -05:00
|
|
|
video.description = fill_links(video.description, "https", "www.youtube.com")
|
|
|
|
video.description = add_alt_links(video.description)
|
|
|
|
|
2018-03-28 19:52:02 -04:00
|
|
|
thumbnail = "https://i1.ytimg.com/vi/#{id}/mqdefault.jpg"
|
2018-03-07 17:48:26 -05:00
|
|
|
|
2017-11-23 02:48:55 -05:00
|
|
|
templated "watch"
|
|
|
|
end
|
|
|
|
|
2017-12-30 16:21:43 -05:00
|
|
|
get "/search" do |env|
|
2018-02-15 13:05:39 -05:00
|
|
|
if env.params.query["q"]?
|
|
|
|
query = env.params.query["q"]
|
|
|
|
else
|
|
|
|
env.redirect "/"
|
|
|
|
next
|
|
|
|
end
|
2018-02-26 19:59:02 -05:00
|
|
|
|
2018-03-14 19:06:21 -04:00
|
|
|
page = env.params.query["page"]?.try &.to_i
|
|
|
|
page ||= 1
|
2018-01-07 12:42:24 -05:00
|
|
|
|
2018-03-04 23:25:03 -05:00
|
|
|
client = get_client(youtube_pool)
|
2018-01-07 18:18:24 -05:00
|
|
|
|
2018-03-04 23:25:03 -05:00
|
|
|
html = client.get("/results?q=#{URI.escape(query)}&page=#{page}&sp=EgIQAVAU").body
|
2018-01-14 22:16:09 -05:00
|
|
|
html = XML.parse_html(html)
|
2018-01-07 14:03:53 -05:00
|
|
|
|
2018-03-04 23:25:03 -05:00
|
|
|
youtube_pool << client
|
|
|
|
|
2018-01-14 22:16:09 -05:00
|
|
|
videos = Array(Hash(String, String)).new
|
2017-12-30 16:21:43 -05:00
|
|
|
|
2018-01-15 23:11:51 -05:00
|
|
|
html.xpath_nodes(%q(//ol[@class="item-section"]/li)).each do |item|
|
|
|
|
root = item.xpath_node(%q(div[contains(@class,"yt-lockup-video")]/div))
|
|
|
|
if root
|
|
|
|
video = {} of String => String
|
2017-12-30 16:21:43 -05:00
|
|
|
|
2018-01-15 23:11:51 -05:00
|
|
|
link = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/@href))
|
2018-01-14 22:16:09 -05:00
|
|
|
if link
|
|
|
|
video["link"] = link.content
|
2018-01-15 23:11:51 -05:00
|
|
|
else
|
|
|
|
video["link"] = "#"
|
2018-01-14 22:16:09 -05:00
|
|
|
end
|
2017-12-30 16:21:43 -05:00
|
|
|
|
2018-01-15 23:11:51 -05:00
|
|
|
title = root.xpath_node(%q(div[@class="yt-lockup-content"]/h3/a))
|
2018-01-14 22:16:09 -05:00
|
|
|
if title
|
|
|
|
video["title"] = title.content
|
2018-01-15 23:11:51 -05:00
|
|
|
else
|
|
|
|
video["title"] = "Something went wrong"
|
2018-01-14 22:16:09 -05:00
|
|
|
end
|
|
|
|
|
2018-01-15 23:11:51 -05:00
|
|
|
thumbnail = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/div/span/img/@src))
|
|
|
|
if thumbnail && !thumbnail.content.ends_with?(".gif")
|
|
|
|
video["thumbnail"] = thumbnail.content
|
|
|
|
else
|
|
|
|
thumbnail = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/div/span/img/@data-thumb))
|
|
|
|
if thumbnail
|
|
|
|
video["thumbnail"] = thumbnail.content
|
|
|
|
else
|
2018-03-07 17:48:43 -05:00
|
|
|
video["thumbnail"] = "https://dummyimage.com/246x138"
|
2018-01-15 23:11:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-26 21:59:18 -05:00
|
|
|
author = root.xpath_node(%q(div[@class="yt-lockup-content"]/div/a))
|
|
|
|
if author
|
|
|
|
video["author"] = author.content
|
|
|
|
video["author_url"] = author["href"]
|
|
|
|
else
|
|
|
|
video["author"] = ""
|
|
|
|
video["author_url"] = ""
|
|
|
|
end
|
|
|
|
|
2018-01-15 23:11:51 -05:00
|
|
|
videos << video
|
|
|
|
end
|
2018-01-06 21:39:24 -05:00
|
|
|
end
|
|
|
|
|
2017-12-30 16:21:43 -05:00
|
|
|
templated "search"
|
|
|
|
end
|
|
|
|
|
2018-03-16 12:40:29 -04:00
|
|
|
get "/login" do |env|
|
|
|
|
templated "login"
|
|
|
|
end
|
|
|
|
|
|
|
|
# See https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/youtube.py#L79
|
|
|
|
post "/login" do |env|
|
|
|
|
email = env.params.body["email"]?
|
|
|
|
password = env.params.body["password"]?
|
|
|
|
remember = env.params.body["remember"]? || "false"
|
|
|
|
|
|
|
|
begin
|
|
|
|
client = make_client(LOGIN_URL)
|
|
|
|
headers = HTTP::Headers.new
|
|
|
|
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
|
|
|
|
|
|
|
|
lookup_req = %(["#{email}","#{inputs["session-state"]}",[],null,"US",null,null,2,false,true,[null,null,[2,1,null,1,"https://accounts.google.com/ServiceLogin?passive=true&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Fnext%3D%252F%26action_handle_signin%3Dtrue%26hl%3Den%26app%3Ddesktop%26feature%3Dsign_in_button&hl=en&service=youtube&uilel=3&requestPath=%2FServiceLogin&Page=PasswordSeparationSignIn",null,[],4,[]],1,[null,null,[]],null,null,null,true],"#{email}"])
|
|
|
|
|
|
|
|
headers["Content-Type"] = "application/x-www-form-urlencoded;charset=utf-8"
|
|
|
|
headers["Google-Accounts-XSRF"] = "1"
|
|
|
|
|
|
|
|
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]
|
|
|
|
|
|
|
|
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=true&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Fnext%3D%252F%26action_handle_signin%3Dtrue%26hl%3Den%26app%3Ddesktop%26feature%3Dsign_in_button&hl=en&service=youtube&uilel=3&requestPath=%2FServiceLogin&Page=PasswordSeparationSignIn", null,[],4],1,[null,null,[]],null,null,null,true]])
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
login_res = challenge_results[0][13][2].to_s
|
|
|
|
|
|
|
|
login = client.get(login_res, headers)
|
|
|
|
headers = login.cookies.add_request_headers(headers)
|
|
|
|
|
|
|
|
login = client.get(login.headers["Location"], headers)
|
|
|
|
headers = login.cookies.add_request_headers(headers)
|
2018-03-25 23:21:24 -04:00
|
|
|
|
2018-03-16 12:40:29 -04:00
|
|
|
# We are now logged in
|
|
|
|
|
2018-03-24 23:38:35 -04:00
|
|
|
host = URI.parse(env.request.headers["Host"]).host
|
|
|
|
|
2018-03-22 13:44:36 -04:00
|
|
|
login.cookies.each do |cookie|
|
2018-03-24 23:38:35 -04:00
|
|
|
cookie.secure = false
|
2018-03-22 13:44:36 -04:00
|
|
|
cookie.extension = cookie.extension.not_nil!.gsub(".youtube.com", host)
|
2018-03-24 23:38:35 -04:00
|
|
|
cookie.extension = cookie.extension.not_nil!.gsub("Secure; ", "")
|
2018-03-22 13:44:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
login.cookies.add_response_headers(env.response.headers)
|
|
|
|
|
2018-03-24 23:38:35 -04:00
|
|
|
env.redirect "/feed/subscriptions"
|
2018-03-16 12:40:29 -04:00
|
|
|
rescue ex
|
|
|
|
error_message = "Login failed"
|
|
|
|
next templated "error"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-24 23:38:35 -04:00
|
|
|
get "/signout" do |env|
|
2018-03-22 13:44:36 -04:00
|
|
|
env.request.cookies.each do |cookie|
|
|
|
|
cookie.expires = Time.new(1990, 1, 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
env.request.cookies.add_response_headers(env.response.headers)
|
|
|
|
env.redirect "/"
|
|
|
|
end
|
|
|
|
|
2018-03-03 19:18:03 -05:00
|
|
|
get "/redirect" do |env|
|
|
|
|
if env.params.query["q"]?
|
|
|
|
env.redirect env.params.query["q"]
|
|
|
|
else
|
|
|
|
env.redirect "/"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-12 21:36:49 -04:00
|
|
|
# Return dash manifest for the given video ID
|
|
|
|
get "/api/manifest/dash/id/:id" do |env|
|
|
|
|
env.response.headers.add("Access-Control-Allow-Origin", "*")
|
|
|
|
env.response.content_type = "application/dash+xml"
|
|
|
|
|
|
|
|
id = env.params.url["id"]
|
|
|
|
|
|
|
|
yt_client = get_client(youtube_pool)
|
|
|
|
begin
|
|
|
|
video = get_video(id, yt_client, PG_DB)
|
|
|
|
rescue ex
|
|
|
|
halt env, status_code: 403
|
|
|
|
ensure
|
|
|
|
youtube_pool << yt_client
|
|
|
|
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-03-12 23:16:38 -04:00
|
|
|
signature = false
|
|
|
|
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
|
|
|
|
signature = true
|
|
|
|
end
|
2018-03-12 21:36:49 -04:00
|
|
|
|
2018-03-12 23:16:38 -04:00
|
|
|
if signature
|
2018-03-13 19:37:56 -04:00
|
|
|
adaptive_fmts.each do |fmt|
|
2018-03-12 23:16:38 -04:00
|
|
|
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-03-16 22:10:38 -04:00
|
|
|
xml.element("MPD", "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "xsi:schemaLocation": "urn:mpeg:DASH:schema:MPD:2011 DASH-MPD.xsd",
|
|
|
|
xmlns: "urn:mpeg:dash:schema:mpd:2011", profiles: "urn:mpeg:dash:profile:isoff-main:2011",
|
|
|
|
mediaPresentationDuration: "PT#{video.info["length_seconds"]}S", minBufferTime: "PT2S", type: "static") do
|
2018-03-12 23:16:38 -04:00
|
|
|
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-16 22:10:38 -04:00
|
|
|
audio_streams.each do |fmt|
|
2018-03-13 19:37:56 -04:00
|
|
|
mimetype, codecs = fmt["type"].split(";")
|
|
|
|
codecs = codecs[9..-2]
|
|
|
|
fmt_type = mimetype.split("/")[0]
|
|
|
|
bandwidth = fmt["bitrate"]
|
2018-03-12 23:16:38 -04:00
|
|
|
itag = fmt["itag"]
|
2018-03-16 22:10:38 -04:00
|
|
|
url = fmt["url"]
|
2018-03-12 21:36:49 -04:00
|
|
|
|
2018-03-12 23:16:38 -04:00
|
|
|
xml.element("Representation", id: fmt["itag"], codecs: codecs, bandwidth: bandwidth) do
|
2018-03-16 22:10:38 -04:00
|
|
|
xml.element("BaseURL") { xml.text url }
|
2018-03-13 19:37:56 -04:00
|
|
|
xml.element("SegmentBase", indexRange: fmt["init"]) do
|
|
|
|
xml.element("Initialization", range: fmt["index"])
|
2018-03-12 21:36:49 -04:00
|
|
|
end
|
|
|
|
end
|
2018-03-13 19:37:56 -04:00
|
|
|
end
|
2018-03-12 23:16:38 -04:00
|
|
|
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]
|
|
|
|
fmt_type = mimetype.split("/")[0]
|
|
|
|
bandwidth = fmt["bitrate"]
|
|
|
|
itag = fmt["itag"]
|
2018-03-16 22:10:38 -04:00
|
|
|
url = fmt["url"]
|
2018-03-12 23:16:38 -04:00
|
|
|
height, width = fmt["size"].split("x")
|
|
|
|
|
|
|
|
xml.element("Representation", id: itag, codecs: codecs, width: width, height: height, bandwidth: bandwidth, frameRate: fmt["fps"]) do
|
2018-03-16 22:10:38 -04:00
|
|
|
xml.element("BaseURL") { xml.text url }
|
2018-03-13 19:37:56 -04:00
|
|
|
xml.element("SegmentBase", indexRange: fmt["init"]) do
|
|
|
|
xml.element("Initialization", range: fmt["index"])
|
2018-03-12 21:36:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-03-13 19:37:56 -04:00
|
|
|
end
|
2018-03-12 21:36:49 -04:00
|
|
|
|
2018-03-12 23:16:38 -04:00
|
|
|
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-12 21:36:49 -04:00
|
|
|
manifest
|
|
|
|
end
|
|
|
|
|
2018-03-24 23:38:35 -04:00
|
|
|
# Get subscriptions for authorized user
|
|
|
|
get "/feed/subscriptions" do |env|
|
2018-03-24 23:56:41 -04:00
|
|
|
authorized = env.get? "authorized"
|
2018-03-24 23:38:35 -04:00
|
|
|
|
|
|
|
if authorized
|
|
|
|
max_results = env.params.query["maxResults"]?.try &.to_i
|
|
|
|
max_results ||= 40
|
|
|
|
|
|
|
|
page = env.params.query["page"]?.try &.to_i
|
|
|
|
page ||= 1
|
|
|
|
|
|
|
|
client = get_client(youtube_pool)
|
|
|
|
|
|
|
|
headers = HTTP::Headers.new
|
|
|
|
headers["Cookie"] = env.request.headers["Cookie"]
|
|
|
|
|
|
|
|
feed = client.get("/subscription_manager?action_takeout=1", headers).body
|
|
|
|
|
|
|
|
videos = Array(Hash(String, String | Time)).new
|
|
|
|
|
|
|
|
feed = XML.parse_html(feed)
|
|
|
|
feed.xpath_nodes("//opml/outline/outline").each do |channel|
|
|
|
|
id = channel["xmlurl"][-24..-1]
|
|
|
|
rss = get_channel(id, client, PG_DB).rss
|
|
|
|
|
|
|
|
rss.xpath_nodes("//feed/entry").each do |entry|
|
|
|
|
video = {} of String => String | Time
|
|
|
|
|
|
|
|
video["id"] = entry.xpath_node("videoid").not_nil!.content
|
|
|
|
video["title"] = entry.xpath_node("title").not_nil!.content
|
|
|
|
video["published"] = Time.parse(entry.xpath_node("published").not_nil!.content, "%FT%X%z")
|
|
|
|
video["author"] = entry.xpath_node("author/name").not_nil!.content
|
|
|
|
video["ucid"] = entry.xpath_node("channelid").not_nil!.content
|
|
|
|
video["thumbnail"] = entry.xpath_node("group/thumbnail").not_nil!["url"].gsub(/hqdefault\.jpg$/, "mqdefault.jpg")
|
|
|
|
|
|
|
|
videos << video
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
youtube_pool << client
|
|
|
|
|
|
|
|
videos.sort_by! { |video| video["published"].as(Time).epoch }
|
|
|
|
videos.reverse!
|
|
|
|
|
|
|
|
start = (page - 1)*max_results
|
|
|
|
stop = start + max_results - 1
|
|
|
|
videos = videos[start..stop]
|
|
|
|
|
|
|
|
templated "subscriptions"
|
|
|
|
else
|
|
|
|
env.redirect "/"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-10 10:15:23 -05:00
|
|
|
error 404 do |env|
|
|
|
|
error_message = "404 Page not found"
|
|
|
|
templated "error"
|
2017-12-30 16:21:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
error 500 do |env|
|
2018-02-10 10:15:23 -05:00
|
|
|
error_message = "500 Server error"
|
|
|
|
templated "error"
|
2017-12-30 16:21:43 -05:00
|
|
|
end
|
|
|
|
|
2018-03-16 20:58:33 -04:00
|
|
|
# Add redirect if SSL is enabled
|
|
|
|
if Kemal.config.ssl
|
2018-03-09 14:22:04 -05:00
|
|
|
spawn do
|
|
|
|
server = HTTP::Server.new("0.0.0.0", 80) do |context|
|
2018-03-09 15:13:26 -05:00
|
|
|
redirect_url = "https://#{context.request.host}#{context.request.path}"
|
|
|
|
if context.request.query
|
|
|
|
redirect_url += "?#{context.request.query}"
|
|
|
|
end
|
2018-03-11 11:24:12 -04:00
|
|
|
context.response.headers.add("Location", redirect_url)
|
2018-03-09 15:11:30 -05:00
|
|
|
context.response.status_code = 301
|
2018-03-09 14:22:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
server.listen
|
|
|
|
end
|
2018-03-11 11:29:40 -04:00
|
|
|
|
|
|
|
before_all do |env|
|
|
|
|
env.response.headers.add("Strict-Transport-Security", "max-age=31536000; includeSubDomains; preload")
|
|
|
|
end
|
2018-03-09 14:22:04 -05:00
|
|
|
end
|
|
|
|
|
2018-03-09 12:28:57 -05:00
|
|
|
static_headers do |response, filepath, filestat|
|
|
|
|
response.headers.add("Cache-Control", "max-age=86400")
|
|
|
|
end
|
|
|
|
|
2017-11-23 02:48:55 -05:00
|
|
|
public_folder "assets"
|
|
|
|
|
|
|
|
Kemal.run
|