2018-09-04 19:52:10 +05:30
|
|
|
# "Invidious" (which is an alternative front-end to YouTube)
|
2019-03-15 22:14:53 +05:30
|
|
|
# Copyright (C) 2019 Omar Roth
|
2018-01-28 23:02:40 +05:30
|
|
|
#
|
|
|
|
# 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-11-23 00:56:08 +05:30
|
|
|
require "digest/md5"
|
2019-01-24 01:45:19 +05:30
|
|
|
require "file_utils"
|
2017-11-23 13:18:55 +05:30
|
|
|
require "kemal"
|
2021-08-25 01:29:27 +05:30
|
|
|
require "athena-negotiation"
|
2018-07-19 00:56:02 +05:30
|
|
|
require "openssl/hmac"
|
2018-02-04 03:43:14 +05:30
|
|
|
require "option_parser"
|
2018-11-22 04:42:13 +05:30
|
|
|
require "sqlite3"
|
2018-01-17 01:32:35 +05:30
|
|
|
require "xml"
|
2018-03-10 00:12:23 +05:30
|
|
|
require "yaml"
|
2020-06-16 04:27:20 +05:30
|
|
|
require "compress/zip"
|
2019-10-27 23:20:42 +05:30
|
|
|
require "protodec/utils"
|
2021-11-27 00:06:31 +05:30
|
|
|
|
|
|
|
require "./invidious/database/*"
|
2018-08-05 02:00:44 +05:30
|
|
|
require "./invidious/helpers/*"
|
2021-10-08 02:02:04 +05:30
|
|
|
require "./invidious/yt_backend/*"
|
2018-07-06 18:29:56 +05:30
|
|
|
require "./invidious/*"
|
2021-07-14 21:16:12 +05:30
|
|
|
require "./invidious/channels/*"
|
2021-10-08 01:30:50 +05:30
|
|
|
require "./invidious/user/*"
|
2020-10-06 10:11:18 +05:30
|
|
|
require "./invidious/routes/**"
|
|
|
|
require "./invidious/jobs/**"
|
2017-11-30 03:03:46 +05:30
|
|
|
|
2021-01-23 23:28:13 +05:30
|
|
|
CONFIG = Config.load
|
|
|
|
HMAC_KEY = CONFIG.hmac_key || Random::Secure.hex(32)
|
2018-03-10 00:12:23 +05:30
|
|
|
|
2021-01-30 20:22:48 +05:30
|
|
|
PG_DB = DB.open CONFIG.database_url
|
2019-06-23 19:09:14 +05:30
|
|
|
ARCHIVE_URL = URI.parse("https://archive.org")
|
|
|
|
LOGIN_URL = URI.parse("https://accounts.google.com")
|
|
|
|
PUBSUB_URL = URI.parse("https://pubsubhubbub.appspot.com")
|
|
|
|
REDDIT_URL = URI.parse("https://www.reddit.com")
|
2020-03-10 20:42:11 +05:30
|
|
|
TEXTCAPTCHA_URL = URI.parse("https://textcaptcha.com")
|
2019-06-23 19:09:14 +05:30
|
|
|
YT_URL = URI.parse("https://www.youtube.com")
|
2021-01-24 00:09:04 +05:30
|
|
|
HOST_URL = make_host_url(Kemal.config)
|
2019-06-23 19:09:14 +05:30
|
|
|
|
2019-06-07 23:09:12 +05:30
|
|
|
CHARS_SAFE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"
|
|
|
|
TEST_IDS = {"AgbeGFYluEA", "BaW_jenozKc", "a9LDPn-MO4I", "ddFvjfvPnqk", "iqKdEhx-dD4"}
|
2019-06-09 02:34:55 +05:30
|
|
|
MAX_ITEMS_PER_PAGE = 1500
|
2018-03-05 09:55:03 +05:30
|
|
|
|
2019-11-25 00:11:47 +05:30
|
|
|
REQUEST_HEADERS_WHITELIST = {"accept", "accept-encoding", "cache-control", "content-length", "if-none-match", "range"}
|
|
|
|
RESPONSE_HEADERS_BLACKLIST = {"access-control-allow-origin", "alt-svc", "server"}
|
2019-07-05 02:00:00 +05:30
|
|
|
HTTP_CHUNK_SIZE = 10485760 # ~10MB
|
2019-06-23 19:09:14 +05:30
|
|
|
|
2020-02-16 00:22:28 +05:30
|
|
|
CURRENT_BRANCH = {{ "#{`git branch | sed -n '/* /s///p'`.strip}" }}
|
2019-06-23 19:09:14 +05:30
|
|
|
CURRENT_COMMIT = {{ "#{`git rev-list HEAD --max-count=1 --abbrev-commit`.strip}" }}
|
2020-12-06 00:36:24 +05:30
|
|
|
CURRENT_VERSION = {{ "#{`git log -1 --format=%ci | awk '{print $1}' | sed s/-/./g`.strip}" }}
|
2019-06-23 19:09:14 +05:30
|
|
|
|
2019-05-09 22:22:37 +05:30
|
|
|
# This is used to determine the `?v=` on the end of file URLs (for cache busting). We
|
|
|
|
# only need to expire modified assets, so we can use this to find the last commit that changes
|
|
|
|
# any assets
|
|
|
|
ASSET_COMMIT = {{ "#{`git rev-list HEAD --max-count=1 --abbrev-commit -- assets`.strip}" }}
|
|
|
|
|
2019-04-06 18:58:53 +05:30
|
|
|
SOFTWARE = {
|
|
|
|
"name" => "invidious",
|
|
|
|
"version" => "#{CURRENT_VERSION}-#{CURRENT_COMMIT}",
|
|
|
|
"branch" => "#{CURRENT_BRANCH}",
|
|
|
|
}
|
|
|
|
|
2021-09-27 02:33:45 +05:30
|
|
|
YT_POOL = YoutubeConnectionPool.new(YT_URL, capacity: CONFIG.pool_size, use_quic: CONFIG.use_quic)
|
2019-10-25 22:28:16 +05:30
|
|
|
|
2021-01-04 21:21:06 +05:30
|
|
|
# CLI
|
2019-04-06 18:58:53 +05:30
|
|
|
Kemal.config.extra_options do |parser|
|
|
|
|
parser.banner = "Usage: invidious [arguments]"
|
2021-01-04 21:21:06 +05:30
|
|
|
parser.on("-c THREADS", "--channel-threads=THREADS", "Number of threads for refreshing channels (default: #{CONFIG.channel_threads})") do |number|
|
2019-04-06 18:58:53 +05:30
|
|
|
begin
|
2021-01-04 21:21:06 +05:30
|
|
|
CONFIG.channel_threads = number.to_i
|
2019-04-06 18:58:53 +05:30
|
|
|
rescue ex
|
|
|
|
puts "THREADS must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2021-01-04 21:21:06 +05:30
|
|
|
parser.on("-f THREADS", "--feed-threads=THREADS", "Number of threads for refreshing feeds (default: #{CONFIG.feed_threads})") do |number|
|
2019-04-06 18:58:53 +05:30
|
|
|
begin
|
2021-01-04 21:21:06 +05:30
|
|
|
CONFIG.feed_threads = number.to_i
|
2019-04-06 18:58:53 +05:30
|
|
|
rescue ex
|
|
|
|
puts "THREADS must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2021-01-04 21:21:06 +05:30
|
|
|
parser.on("-o OUTPUT", "--output=OUTPUT", "Redirect output (default: #{CONFIG.output})") do |output|
|
|
|
|
CONFIG.output = output
|
2019-04-06 18:58:53 +05:30
|
|
|
end
|
2021-01-04 21:21:06 +05:30
|
|
|
parser.on("-l LEVEL", "--log-level=LEVEL", "Log level, one of #{LogLevel.values} (default: #{CONFIG.log_level})") do |log_level|
|
|
|
|
CONFIG.log_level = LogLevel.parse(log_level)
|
2020-12-21 20:35:35 +05:30
|
|
|
end
|
|
|
|
parser.on("-v", "--version", "Print version") do
|
2019-04-06 18:58:53 +05:30
|
|
|
puts SOFTWARE.to_pretty_json
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Kemal::CLI.new ARGV
|
|
|
|
|
2021-01-04 21:21:06 +05:30
|
|
|
if CONFIG.output.upcase != "STDOUT"
|
|
|
|
FileUtils.mkdir_p(File.dirname(CONFIG.output))
|
2021-01-04 20:35:15 +05:30
|
|
|
end
|
2021-01-04 21:21:06 +05:30
|
|
|
OUTPUT = CONFIG.output.upcase == "STDOUT" ? STDOUT : File.open(CONFIG.output, mode: "a")
|
|
|
|
LOGGER = Invidious::LogHandler.new(OUTPUT, CONFIG.log_level)
|
2021-01-04 20:35:15 +05:30
|
|
|
|
2019-04-15 21:43:09 +05:30
|
|
|
# Check table integrity
|
2022-01-07 04:17:30 +05:30
|
|
|
Invidious::Database.check_integrity(CONFIG)
|
2018-03-26 08:48:29 +05:30
|
|
|
|
2021-09-12 11:17:12 +05:30
|
|
|
# Resolve player dependencies. This is done at compile time.
|
|
|
|
#
|
|
|
|
# Running the script by itself would show some colorful feedback while this doesn't.
|
|
|
|
# Perhaps we should just move the script to runtime in order to get that feedback?
|
|
|
|
|
|
|
|
{% puts "\nChecking player dependencies...\n" %}
|
|
|
|
{% if flag?(:minified_player_dependencies) %}
|
2021-09-19 03:18:57 +05:30
|
|
|
{% puts run("../scripts/fetch-player-dependencies.cr", "--minified").stringify %}
|
2021-09-12 11:17:12 +05:30
|
|
|
{% else %}
|
2021-09-19 03:18:57 +05:30
|
|
|
{% puts run("../scripts/fetch-player-dependencies.cr").stringify %}
|
2021-09-12 11:17:12 +05:30
|
|
|
{% end %}
|
|
|
|
|
2019-04-11 02:53:37 +05:30
|
|
|
# Start jobs
|
2019-05-15 22:56:29 +05:30
|
|
|
|
2021-01-24 00:11:50 +05:30
|
|
|
if CONFIG.channel_threads > 0
|
|
|
|
Invidious::Jobs.register Invidious::Jobs::RefreshChannelsJob.new(PG_DB)
|
|
|
|
end
|
|
|
|
|
|
|
|
if CONFIG.feed_threads > 0
|
|
|
|
Invidious::Jobs.register Invidious::Jobs::RefreshFeedsJob.new(PG_DB)
|
|
|
|
end
|
2020-09-27 22:49:44 +05:30
|
|
|
|
|
|
|
DECRYPT_FUNCTION = DecryptFunction.new(CONFIG.decrypt_polling)
|
2021-01-24 00:09:04 +05:30
|
|
|
if CONFIG.decrypt_polling
|
2021-01-04 21:21:06 +05:30
|
|
|
Invidious::Jobs.register Invidious::Jobs::UpdateDecryptFunctionJob.new
|
2020-09-27 22:49:44 +05:30
|
|
|
end
|
2019-03-04 06:48:23 +05:30
|
|
|
|
2021-01-24 00:09:04 +05:30
|
|
|
if CONFIG.statistics_enabled
|
|
|
|
Invidious::Jobs.register Invidious::Jobs::StatisticsRefreshJob.new(PG_DB, SOFTWARE)
|
2020-10-17 17:55:57 +05:30
|
|
|
end
|
2019-08-27 18:38:26 +05:30
|
|
|
|
2021-01-24 00:09:04 +05:30
|
|
|
if (CONFIG.use_pubsub_feeds.is_a?(Bool) && CONFIG.use_pubsub_feeds.as(Bool)) || (CONFIG.use_pubsub_feeds.is_a?(Int32) && CONFIG.use_pubsub_feeds.as(Int32) > 0)
|
|
|
|
Invidious::Jobs.register Invidious::Jobs::SubscribeToFeedsJob.new(PG_DB, HMAC_KEY)
|
2021-01-08 00:45:26 +05:30
|
|
|
end
|
|
|
|
|
2021-01-24 00:09:04 +05:30
|
|
|
if CONFIG.popular_enabled
|
2020-12-27 10:42:43 +05:30
|
|
|
Invidious::Jobs.register Invidious::Jobs::PullPopularVideosJob.new(PG_DB)
|
|
|
|
end
|
|
|
|
|
2020-10-17 17:55:57 +05:30
|
|
|
connection_channel = Channel({Bool, Channel(PQ::Notification)}).new(32)
|
2021-01-30 20:22:48 +05:30
|
|
|
Invidious::Jobs.register Invidious::Jobs::NotificationJob.new(connection_channel, CONFIG.database_url)
|
2020-10-17 17:55:57 +05:30
|
|
|
|
2020-10-06 10:11:18 +05:30
|
|
|
Invidious::Jobs.start_all
|
|
|
|
|
|
|
|
def popular_videos
|
|
|
|
Invidious::Jobs::PullPopularVideosJob::POPULAR_VIDEOS.get
|
2018-11-09 07:38:03 +05:30
|
|
|
end
|
|
|
|
|
2018-03-25 09:26:41 +05:30
|
|
|
before_all do |env|
|
2021-08-25 01:29:27 +05:30
|
|
|
preferences = Preferences.from_json("{}")
|
|
|
|
|
|
|
|
begin
|
|
|
|
if prefs_cookie = env.request.cookies["PREFS"]?
|
|
|
|
preferences = Preferences.from_json(URI.decode_www_form(prefs_cookie.value))
|
|
|
|
else
|
|
|
|
if language_header = env.request.headers["Accept-Language"]?
|
|
|
|
if language = ANG.language_negotiator.best(language_header, LOCALES.keys)
|
|
|
|
preferences.locale = language.header
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-03-16 03:16:08 +05:30
|
|
|
rescue
|
2021-08-25 01:29:27 +05:30
|
|
|
preferences = Preferences.from_json("{}")
|
2020-03-16 03:16:08 +05:30
|
|
|
end
|
|
|
|
|
2020-10-16 15:53:18 +05:30
|
|
|
env.set "preferences", preferences
|
2019-05-11 03:18:38 +05:30
|
|
|
env.response.headers["X-XSS-Protection"] = "1; mode=block"
|
2018-09-06 08:21:40 +05:30
|
|
|
env.response.headers["X-Content-Type-Options"] = "nosniff"
|
2021-06-17 23:15:20 +05:30
|
|
|
|
2021-06-19 13:10:33 +05:30
|
|
|
# Allow media resources to be loaded from google servers
|
2021-06-17 23:15:20 +05:30
|
|
|
# TODO: check if *.youtube.com can be removed
|
2020-03-16 03:16:08 +05:30
|
|
|
if CONFIG.disabled?("local") || !preferences.local
|
2021-06-17 23:15:20 +05:30
|
|
|
extra_media_csp = " https://*.googlevideo.com:443 https://*.youtube.com:443"
|
|
|
|
else
|
|
|
|
extra_media_csp = ""
|
|
|
|
end
|
|
|
|
|
|
|
|
# Only allow the pages at /embed/* to be embedded
|
|
|
|
if env.request.resource.starts_with?("/embed")
|
|
|
|
frame_ancestors = "'self' http: https:"
|
|
|
|
else
|
2021-06-20 22:13:00 +05:30
|
|
|
frame_ancestors = "'none'"
|
2020-03-16 03:16:08 +05:30
|
|
|
end
|
2021-06-17 23:15:20 +05:30
|
|
|
|
|
|
|
# TODO: Remove style-src's 'unsafe-inline', requires to remove all
|
|
|
|
# inline styles (<style> [..] </style>, style=" [..] ")
|
|
|
|
env.response.headers["Content-Security-Policy"] = {
|
|
|
|
"default-src 'none'",
|
|
|
|
"script-src 'self'",
|
|
|
|
"style-src 'self' 'unsafe-inline'",
|
|
|
|
"img-src 'self' data:",
|
|
|
|
"font-src 'self' data:",
|
|
|
|
"connect-src 'self'",
|
|
|
|
"manifest-src 'self'",
|
|
|
|
"media-src 'self' blob:" + extra_media_csp,
|
|
|
|
"child-src 'self' blob:",
|
|
|
|
"frame-src 'self'",
|
|
|
|
"frame-ancestors " + frame_ancestors,
|
|
|
|
}.join("; ")
|
|
|
|
|
2019-04-08 00:31:08 +05:30
|
|
|
env.response.headers["Referrer-Policy"] = "same-origin"
|
|
|
|
|
2021-06-17 23:15:20 +05:30
|
|
|
# Ask the chrom*-based browsers to disable FLoC
|
|
|
|
# See: https://blog.runcloud.io/google-floc/
|
|
|
|
env.response.headers["Permissions-Policy"] = "interest-cohort=()"
|
|
|
|
|
2021-01-24 00:09:04 +05:30
|
|
|
if (Kemal.config.ssl || CONFIG.https_only) && CONFIG.hsts
|
2019-05-01 07:23:56 +05:30
|
|
|
env.response.headers["Strict-Transport-Security"] = "max-age=31536000; includeSubDomains; preload"
|
2019-04-08 00:31:08 +05:30
|
|
|
end
|
2019-03-29 00:13:40 +05:30
|
|
|
|
2019-11-20 22:33:52 +05:30
|
|
|
next if {
|
|
|
|
"/sb/",
|
|
|
|
"/vi/",
|
|
|
|
"/s_p/",
|
|
|
|
"/yts/",
|
|
|
|
"/ggpht/",
|
|
|
|
"/api/manifest/",
|
|
|
|
"/videoplayback",
|
|
|
|
"/latest_version",
|
|
|
|
}.any? { |r| env.request.resource.starts_with? r }
|
|
|
|
|
2018-07-16 21:54:24 +05:30
|
|
|
if env.request.cookies.has_key? "SID"
|
2018-04-01 05:39:27 +05:30
|
|
|
sid = env.request.cookies["SID"].value
|
2018-07-06 05:13:26 +05:30
|
|
|
|
2019-04-19 02:53:50 +05:30
|
|
|
if sid.starts_with? "v1:"
|
|
|
|
raise "Cannot use token as SID"
|
|
|
|
end
|
|
|
|
|
2018-07-19 00:56:02 +05:30
|
|
|
# Invidious users only have SID
|
|
|
|
if !env.request.cookies.has_key? "SSID"
|
2021-12-03 04:27:13 +05:30
|
|
|
if email = Invidious::Database::SessionIDs.select_email(sid)
|
2021-12-03 06:57:51 +05:30
|
|
|
user = Invidious::Database::Users.select!(email: email)
|
2019-08-06 05:19:13 +05:30
|
|
|
csrf_token = generate_response(sid, {
|
|
|
|
":authorize_token",
|
|
|
|
":playlist_ajax",
|
|
|
|
":signout",
|
|
|
|
":subscription_ajax",
|
|
|
|
":token_ajax",
|
|
|
|
":watch_ajax",
|
2021-12-07 02:58:16 +05:30
|
|
|
}, HMAC_KEY, 1.week)
|
2018-11-09 05:12:25 +05:30
|
|
|
|
2019-03-11 23:14:25 +05:30
|
|
|
preferences = user.preferences
|
2020-10-16 15:53:18 +05:30
|
|
|
env.set "preferences", preferences
|
2019-03-11 23:14:25 +05:30
|
|
|
|
2018-08-15 23:10:42 +05:30
|
|
|
env.set "sid", sid
|
2019-04-19 02:53:50 +05:30
|
|
|
env.set "csrf_token", csrf_token
|
2019-04-16 09:53:40 +05:30
|
|
|
env.set "user", user
|
2018-07-19 00:56:02 +05:30
|
|
|
end
|
|
|
|
else
|
2019-04-16 09:53:40 +05:30
|
|
|
headers = HTTP::Headers.new
|
|
|
|
headers["Cookie"] = env.request.headers["Cookie"]
|
|
|
|
|
2018-07-19 00:56:02 +05:30
|
|
|
begin
|
2021-12-07 02:58:16 +05:30
|
|
|
user, sid = get_user(sid, headers, false)
|
2019-08-06 05:19:13 +05:30
|
|
|
csrf_token = generate_response(sid, {
|
|
|
|
":authorize_token",
|
|
|
|
":playlist_ajax",
|
|
|
|
":signout",
|
|
|
|
":subscription_ajax",
|
|
|
|
":token_ajax",
|
|
|
|
":watch_ajax",
|
2021-12-07 02:58:16 +05:30
|
|
|
}, HMAC_KEY, 1.week)
|
2018-11-16 07:53:17 +05:30
|
|
|
|
2019-03-11 23:14:25 +05:30
|
|
|
preferences = user.preferences
|
2020-10-16 15:53:18 +05:30
|
|
|
env.set "preferences", preferences
|
2019-03-11 23:14:25 +05:30
|
|
|
|
2018-08-15 23:10:42 +05:30
|
|
|
env.set "sid", sid
|
2019-04-19 02:53:50 +05:30
|
|
|
env.set "csrf_token", csrf_token
|
2019-04-16 09:53:40 +05:30
|
|
|
env.set "user", user
|
2018-07-19 00:56:02 +05:30
|
|
|
rescue ex
|
|
|
|
end
|
2018-07-16 23:20:41 +05:30
|
|
|
end
|
2018-04-14 08:02:14 +05:30
|
|
|
end
|
2018-08-17 20:49:20 +05:30
|
|
|
|
2019-08-15 21:59:55 +05:30
|
|
|
dark_mode = convert_theme(env.params.query["dark_mode"]?) || preferences.dark_mode.to_s
|
2019-03-11 23:14:25 +05:30
|
|
|
thin_mode = env.params.query["thin_mode"]? || preferences.thin_mode.to_s
|
|
|
|
thin_mode = thin_mode == "true"
|
|
|
|
locale = env.params.query["hl"]? || preferences.locale
|
|
|
|
|
|
|
|
preferences.dark_mode = dark_mode
|
|
|
|
preferences.thin_mode = thin_mode
|
|
|
|
preferences.locale = locale
|
2021-03-18 00:37:38 +05:30
|
|
|
env.set "preferences", preferences
|
2018-12-21 03:02:09 +05:30
|
|
|
|
2018-08-17 20:49:20 +05:30
|
|
|
current_page = env.request.path
|
|
|
|
if env.request.query
|
|
|
|
query = HTTP::Params.parse(env.request.query.not_nil!)
|
|
|
|
|
|
|
|
if query["referer"]?
|
|
|
|
query["referer"] = get_referer(env, "/")
|
|
|
|
end
|
|
|
|
|
|
|
|
current_page += "?#{query}"
|
|
|
|
end
|
|
|
|
|
2019-09-24 23:01:33 +05:30
|
|
|
env.set "current_page", URI.encode_www_form(current_page)
|
2018-03-22 23:14:36 +05:30
|
|
|
end
|
|
|
|
|
2021-10-03 01:34:02 +05:30
|
|
|
{% unless flag?(:api_only) %}
|
|
|
|
Invidious::Routing.get "/", Invidious::Routes::Misc, :home
|
|
|
|
Invidious::Routing.get "/privacy", Invidious::Routes::Misc, :privacy
|
|
|
|
Invidious::Routing.get "/licenses", Invidious::Routes::Misc, :licenses
|
|
|
|
|
|
|
|
Invidious::Routing.get "/channel/:ucid", Invidious::Routes::Channels, :home
|
|
|
|
Invidious::Routing.get "/channel/:ucid/home", Invidious::Routes::Channels, :home
|
|
|
|
Invidious::Routing.get "/channel/:ucid/videos", Invidious::Routes::Channels, :videos
|
|
|
|
Invidious::Routing.get "/channel/:ucid/playlists", Invidious::Routes::Channels, :playlists
|
|
|
|
Invidious::Routing.get "/channel/:ucid/community", Invidious::Routes::Channels, :community
|
|
|
|
Invidious::Routing.get "/channel/:ucid/about", Invidious::Routes::Channels, :about
|
|
|
|
|
|
|
|
["", "/videos", "/playlists", "/community", "/about"].each do |path|
|
|
|
|
# /c/LinusTechTips
|
|
|
|
Invidious::Routing.get "/c/:user#{path}", Invidious::Routes::Channels, :brand_redirect
|
|
|
|
# /user/linustechtips | Not always the same as /c/
|
|
|
|
Invidious::Routing.get "/user/:user#{path}", Invidious::Routes::Channels, :brand_redirect
|
|
|
|
# /attribution_link?a=anything&u=/channel/UCZYTClx2T1of7BRZ86-8fow
|
|
|
|
Invidious::Routing.get "/attribution_link#{path}", Invidious::Routes::Channels, :brand_redirect
|
|
|
|
# /profile?user=linustechtips
|
|
|
|
Invidious::Routing.get "/profile/#{path}", Invidious::Routes::Channels, :profile
|
|
|
|
end
|
2021-08-04 03:16:15 +05:30
|
|
|
|
2021-10-03 01:34:02 +05:30
|
|
|
Invidious::Routing.get "/watch", Invidious::Routes::Watch, :handle
|
2021-11-27 12:46:09 +05:30
|
|
|
Invidious::Routing.post "/watch_ajax", Invidious::Routes::Watch, :mark_watched
|
2021-10-03 01:34:02 +05:30
|
|
|
Invidious::Routing.get "/watch/:id", Invidious::Routes::Watch, :redirect
|
|
|
|
Invidious::Routing.get "/shorts/:id", Invidious::Routes::Watch, :redirect
|
|
|
|
Invidious::Routing.get "/w/:id", Invidious::Routes::Watch, :redirect
|
|
|
|
Invidious::Routing.get "/v/:id", Invidious::Routes::Watch, :redirect
|
|
|
|
Invidious::Routing.get "/e/:id", Invidious::Routes::Watch, :redirect
|
|
|
|
Invidious::Routing.get "/redirect", Invidious::Routes::Misc, :cross_instance_redirect
|
|
|
|
|
|
|
|
Invidious::Routing.get "/embed/", Invidious::Routes::Embed, :redirect
|
|
|
|
Invidious::Routing.get "/embed/:id", Invidious::Routes::Embed, :show
|
|
|
|
|
|
|
|
Invidious::Routing.get "/create_playlist", Invidious::Routes::Playlists, :new
|
|
|
|
Invidious::Routing.post "/create_playlist", Invidious::Routes::Playlists, :create
|
|
|
|
Invidious::Routing.get "/subscribe_playlist", Invidious::Routes::Playlists, :subscribe
|
|
|
|
Invidious::Routing.get "/delete_playlist", Invidious::Routes::Playlists, :delete_page
|
|
|
|
Invidious::Routing.post "/delete_playlist", Invidious::Routes::Playlists, :delete
|
|
|
|
Invidious::Routing.get "/edit_playlist", Invidious::Routes::Playlists, :edit
|
|
|
|
Invidious::Routing.post "/edit_playlist", Invidious::Routes::Playlists, :update
|
|
|
|
Invidious::Routing.get "/add_playlist_items", Invidious::Routes::Playlists, :add_playlist_items_page
|
|
|
|
Invidious::Routing.post "/playlist_ajax", Invidious::Routes::Playlists, :playlist_ajax
|
|
|
|
Invidious::Routing.get "/playlist", Invidious::Routes::Playlists, :show
|
|
|
|
Invidious::Routing.get "/mix", Invidious::Routes::Playlists, :mix
|
|
|
|
|
|
|
|
Invidious::Routing.get "/opensearch.xml", Invidious::Routes::Search, :opensearch
|
|
|
|
Invidious::Routing.get "/results", Invidious::Routes::Search, :results
|
|
|
|
Invidious::Routing.get "/search", Invidious::Routes::Search, :search
|
|
|
|
|
|
|
|
Invidious::Routing.get "/login", Invidious::Routes::Login, :login_page
|
|
|
|
Invidious::Routing.post "/login", Invidious::Routes::Login, :login
|
|
|
|
Invidious::Routing.post "/signout", Invidious::Routes::Login, :signout
|
|
|
|
|
|
|
|
Invidious::Routing.get "/preferences", Invidious::Routes::PreferencesRoute, :show
|
|
|
|
Invidious::Routing.post "/preferences", Invidious::Routes::PreferencesRoute, :update
|
|
|
|
Invidious::Routing.get "/toggle_theme", Invidious::Routes::PreferencesRoute, :toggle_theme
|
2021-11-27 12:46:09 +05:30
|
|
|
Invidious::Routing.get "/data_control", Invidious::Routes::PreferencesRoute, :data_control
|
|
|
|
Invidious::Routing.post "/data_control", Invidious::Routes::PreferencesRoute, :update_data_control
|
2021-10-03 01:34:02 +05:30
|
|
|
|
|
|
|
# Feeds
|
|
|
|
Invidious::Routing.get "/view_all_playlists", Invidious::Routes::Feeds, :view_all_playlists_redirect
|
|
|
|
Invidious::Routing.get "/feed/playlists", Invidious::Routes::Feeds, :playlists
|
|
|
|
Invidious::Routing.get "/feed/popular", Invidious::Routes::Feeds, :popular
|
|
|
|
Invidious::Routing.get "/feed/trending", Invidious::Routes::Feeds, :trending
|
|
|
|
Invidious::Routing.get "/feed/subscriptions", Invidious::Routes::Feeds, :subscriptions
|
|
|
|
Invidious::Routing.get "/feed/history", Invidious::Routes::Feeds, :history
|
|
|
|
|
|
|
|
# RSS Feeds
|
|
|
|
Invidious::Routing.get "/feed/channel/:ucid", Invidious::Routes::Feeds, :rss_channel
|
|
|
|
Invidious::Routing.get "/feed/private", Invidious::Routes::Feeds, :rss_private
|
|
|
|
Invidious::Routing.get "/feed/playlist/:plid", Invidious::Routes::Feeds, :rss_playlist
|
|
|
|
Invidious::Routing.get "/feeds/videos.xml", Invidious::Routes::Feeds, :rss_videos
|
|
|
|
|
|
|
|
# Support push notifications via PubSubHubbub
|
|
|
|
Invidious::Routing.get "/feed/webhook/:token", Invidious::Routes::Feeds, :push_notifications_get
|
|
|
|
Invidious::Routing.post "/feed/webhook/:token", Invidious::Routes::Feeds, :push_notifications_post
|
2022-01-19 06:04:32 +05:30
|
|
|
|
|
|
|
Invidious::Routing.get "/modify_notifications", Invidious::Routes::Notifications, :modify
|
|
|
|
|
|
|
|
Invidious::Routing.post "/subscription_ajax", Invidious::Routes::Subscriptions, :toggle_subscription
|
|
|
|
Invidious::Routing.get "/subscription_manager", Invidious::Routes::Subscriptions, :subscription_manager
|
2021-10-03 01:34:02 +05:30
|
|
|
{% end %}
|
2021-08-30 20:28:24 +05:30
|
|
|
|
2021-10-12 01:52:11 +05:30
|
|
|
Invidious::Routing.get "/ggpht/*", Invidious::Routes::Images, :ggpht
|
|
|
|
Invidious::Routing.options "/sb/:authority/:id/:storyboard/:index", Invidious::Routes::Images, :options_storyboard
|
|
|
|
Invidious::Routing.get "/sb/:authority/:id/:storyboard/:index", Invidious::Routes::Images, :get_storyboard
|
|
|
|
Invidious::Routing.get "/s_p/:id/:name", Invidious::Routes::Images, :s_p_image
|
|
|
|
Invidious::Routing.get "/yts/img/:name", Invidious::Routes::Images, :yts_image
|
|
|
|
Invidious::Routing.get "/vi/:id/:name", Invidious::Routes::Images, :thumbnails
|
|
|
|
|
2021-08-30 21:47:20 +05:30
|
|
|
# API routes (macro)
|
2021-07-22 10:04:16 +05:30
|
|
|
define_v1_api_routes()
|
2021-08-30 21:47:20 +05:30
|
|
|
|
|
|
|
# Video playback (macros)
|
2021-08-13 12:01:12 +05:30
|
|
|
define_api_manifest_routes()
|
|
|
|
define_video_playback_routes()
|
2021-07-22 10:04:16 +05:30
|
|
|
|
2019-04-22 20:48:17 +05:30
|
|
|
get "/change_password" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2019-04-22 20:48:17 +05:30
|
|
|
|
|
|
|
user = env.get? "user"
|
|
|
|
sid = env.get? "sid"
|
|
|
|
referer = get_referer(env)
|
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if !user
|
|
|
|
next env.redirect referer
|
2019-04-22 20:48:17 +05:30
|
|
|
end
|
2019-07-13 07:30:50 +05:30
|
|
|
|
|
|
|
user = user.as(User)
|
|
|
|
sid = sid.as(String)
|
2021-12-07 02:58:16 +05:30
|
|
|
csrf_token = generate_response(sid, {":change_password"}, HMAC_KEY)
|
2019-07-13 07:30:50 +05:30
|
|
|
|
|
|
|
templated "change_password"
|
2019-04-22 20:48:17 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
post "/change_password" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2019-04-22 20:48:17 +05:30
|
|
|
|
|
|
|
user = env.get? "user"
|
|
|
|
sid = env.get? "sid"
|
|
|
|
referer = get_referer(env)
|
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if !user
|
|
|
|
next env.redirect referer
|
|
|
|
end
|
2019-04-22 20:48:17 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
user = user.as(User)
|
|
|
|
sid = sid.as(String)
|
|
|
|
token = env.params.body["csrf_token"]?
|
2019-04-22 20:48:17 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
# We don't store passwords for Google accounts
|
|
|
|
if !user.password
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(400, "Cannot change password for Google accounts")
|
2019-07-13 07:30:50 +05:30
|
|
|
end
|
2019-04-22 20:48:17 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
begin
|
2021-12-07 02:58:16 +05:30
|
|
|
validate_request(token, sid, env.request, HMAC_KEY, locale)
|
2019-07-13 07:30:50 +05:30
|
|
|
rescue ex
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(400, ex)
|
2019-07-13 07:30:50 +05:30
|
|
|
end
|
2019-04-22 20:48:17 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
password = env.params.body["password"]?
|
|
|
|
if !password
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(401, "Password is a required field")
|
2019-07-13 07:30:50 +05:30
|
|
|
end
|
2019-04-22 20:48:17 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
new_passwords = env.params.body.select { |k, v| k.match(/^new_password\[\d+\]$/) }.map { |k, v| v }
|
2019-04-22 20:48:17 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if new_passwords.size <= 1 || new_passwords.uniq.size != 1
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(400, "New passwords must match")
|
2019-07-13 07:30:50 +05:30
|
|
|
end
|
2019-04-22 20:48:17 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
new_password = new_passwords.uniq[0]
|
|
|
|
if new_password.empty?
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(401, "Password cannot be empty")
|
2019-07-13 07:30:50 +05:30
|
|
|
end
|
2019-04-22 20:48:17 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if new_password.bytesize > 55
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(400, "Password cannot be longer than 55 characters")
|
2019-07-13 07:30:50 +05:30
|
|
|
end
|
2019-04-22 20:48:17 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if !Crypto::Bcrypt::Password.new(user.password.not_nil!).verify(password.byte_slice(0, 55))
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(401, "Incorrect password")
|
2019-04-22 20:48:17 +05:30
|
|
|
end
|
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
new_password = Crypto::Bcrypt::Password.create(new_password, cost: 10)
|
2021-12-03 07:59:52 +05:30
|
|
|
Invidious::Database::Users.update_password(user, new_password.to_s)
|
2019-07-13 07:30:50 +05:30
|
|
|
|
2019-04-22 20:48:17 +05:30
|
|
|
env.redirect referer
|
|
|
|
end
|
|
|
|
|
2018-11-08 11:42:14 +05:30
|
|
|
get "/delete_account" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2018-12-21 03:02:09 +05:30
|
|
|
|
2018-11-08 11:42:14 +05:30
|
|
|
user = env.get? "user"
|
2019-04-16 09:53:40 +05:30
|
|
|
sid = env.get? "sid"
|
2018-11-08 11:42:14 +05:30
|
|
|
referer = get_referer(env)
|
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if !user
|
|
|
|
next env.redirect referer
|
2018-11-08 11:42:14 +05:30
|
|
|
end
|
2019-07-13 07:30:50 +05:30
|
|
|
|
|
|
|
user = user.as(User)
|
|
|
|
sid = sid.as(String)
|
2021-12-07 02:58:16 +05:30
|
|
|
csrf_token = generate_response(sid, {":delete_account"}, HMAC_KEY)
|
2019-07-13 07:30:50 +05:30
|
|
|
|
|
|
|
templated "delete_account"
|
2018-11-08 11:42:14 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
post "/delete_account" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2018-12-21 03:02:09 +05:30
|
|
|
|
2018-11-08 11:42:14 +05:30
|
|
|
user = env.get? "user"
|
2019-04-16 09:53:40 +05:30
|
|
|
sid = env.get? "sid"
|
2018-11-08 11:42:14 +05:30
|
|
|
referer = get_referer(env)
|
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if !user
|
|
|
|
next env.redirect referer
|
|
|
|
end
|
2018-11-08 11:42:14 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
user = user.as(User)
|
|
|
|
sid = sid.as(String)
|
|
|
|
token = env.params.body["csrf_token"]?
|
2018-11-08 11:42:14 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
begin
|
2021-12-07 02:58:16 +05:30
|
|
|
validate_request(token, sid, env.request, HMAC_KEY, locale)
|
2019-07-13 07:30:50 +05:30
|
|
|
rescue ex
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(400, ex)
|
2019-07-13 07:30:50 +05:30
|
|
|
end
|
2018-11-08 11:42:14 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
view_name = "subscriptions_#{sha256(user.email)}"
|
2021-12-03 06:57:51 +05:30
|
|
|
Invidious::Database::Users.delete(user)
|
2021-12-03 04:27:13 +05:30
|
|
|
Invidious::Database::SessionIDs.delete(email: user.email)
|
2019-07-13 07:30:50 +05:30
|
|
|
PG_DB.exec("DROP MATERIALIZED VIEW #{view_name}")
|
|
|
|
|
|
|
|
env.request.cookies.each do |cookie|
|
|
|
|
cookie.expires = Time.utc(1990, 1, 1)
|
|
|
|
env.response.cookies << cookie
|
2018-11-08 11:42:14 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
env.redirect referer
|
|
|
|
end
|
|
|
|
|
2018-08-05 02:00:44 +05:30
|
|
|
get "/clear_watch_history" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2018-12-21 03:02:09 +05:30
|
|
|
|
2018-08-05 02:00:44 +05:30
|
|
|
user = env.get? "user"
|
2019-04-16 09:53:40 +05:30
|
|
|
sid = env.get? "sid"
|
2018-11-08 11:42:14 +05:30
|
|
|
referer = get_referer(env)
|
2018-08-09 06:56:02 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if !user
|
|
|
|
next env.redirect referer
|
2018-11-08 11:42:14 +05:30
|
|
|
end
|
2019-07-13 07:30:50 +05:30
|
|
|
|
|
|
|
user = user.as(User)
|
|
|
|
sid = sid.as(String)
|
2021-12-07 02:58:16 +05:30
|
|
|
csrf_token = generate_response(sid, {":clear_watch_history"}, HMAC_KEY)
|
2019-07-13 07:30:50 +05:30
|
|
|
|
|
|
|
templated "clear_watch_history"
|
2018-11-08 11:42:14 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
post "/clear_watch_history" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2018-12-21 03:02:09 +05:30
|
|
|
|
2018-11-08 11:42:14 +05:30
|
|
|
user = env.get? "user"
|
2019-04-16 09:53:40 +05:30
|
|
|
sid = env.get? "sid"
|
2018-08-09 06:56:02 +05:30
|
|
|
referer = get_referer(env)
|
2018-03-16 22:10:29 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if !user
|
|
|
|
next env.redirect referer
|
|
|
|
end
|
2018-11-08 11:42:14 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
user = user.as(User)
|
|
|
|
sid = sid.as(String)
|
|
|
|
token = env.params.body["csrf_token"]?
|
2018-11-08 11:42:14 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
begin
|
2021-12-07 02:58:16 +05:30
|
|
|
validate_request(token, sid, env.request, HMAC_KEY, locale)
|
2019-07-13 07:30:50 +05:30
|
|
|
rescue ex
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(400, ex)
|
2018-08-05 02:00:44 +05:30
|
|
|
end
|
|
|
|
|
2021-12-03 06:57:51 +05:30
|
|
|
Invidious::Database::Users.clear_watch_history(user)
|
2018-08-05 02:00:44 +05:30
|
|
|
env.redirect referer
|
|
|
|
end
|
|
|
|
|
2019-05-15 22:56:29 +05:30
|
|
|
get "/authorize_token" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2019-05-15 22:56:29 +05:30
|
|
|
|
|
|
|
user = env.get? "user"
|
|
|
|
sid = env.get? "sid"
|
|
|
|
referer = get_referer(env)
|
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if !user
|
|
|
|
next env.redirect referer
|
|
|
|
end
|
2019-05-15 22:56:29 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
user = user.as(User)
|
|
|
|
sid = sid.as(String)
|
2021-12-07 02:58:16 +05:30
|
|
|
csrf_token = generate_response(sid, {":authorize_token"}, HMAC_KEY)
|
2019-05-15 22:56:29 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
scopes = env.params.query["scopes"]?.try &.split(",")
|
|
|
|
scopes ||= [] of String
|
2019-05-15 22:56:29 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
callback_url = env.params.query["callback_url"]?
|
|
|
|
if callback_url
|
|
|
|
callback_url = URI.parse(callback_url)
|
2019-05-15 22:56:29 +05:30
|
|
|
end
|
2019-07-13 07:30:50 +05:30
|
|
|
|
|
|
|
expire = env.params.query["expire"]?.try &.to_i?
|
|
|
|
|
|
|
|
templated "authorize_token"
|
2019-05-15 22:56:29 +05:30
|
|
|
end
|
2019-04-19 02:53:50 +05:30
|
|
|
|
|
|
|
post "/authorize_token" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2019-04-19 02:53:50 +05:30
|
|
|
|
|
|
|
user = env.get? "user"
|
|
|
|
sid = env.get? "sid"
|
|
|
|
referer = get_referer(env)
|
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if !user
|
|
|
|
next env.redirect referer
|
|
|
|
end
|
2019-04-19 02:53:50 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
user = env.get("user").as(User)
|
|
|
|
sid = sid.as(String)
|
|
|
|
token = env.params.body["csrf_token"]?
|
2019-04-19 02:53:50 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
begin
|
2021-12-07 02:58:16 +05:30
|
|
|
validate_request(token, sid, env.request, HMAC_KEY, locale)
|
2019-07-13 07:30:50 +05:30
|
|
|
rescue ex
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(400, ex)
|
2019-07-13 07:30:50 +05:30
|
|
|
end
|
2019-04-19 02:53:50 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
scopes = env.params.body.select { |k, v| k.match(/^scopes\[\d+\]$/) }.map { |k, v| v }
|
|
|
|
callback_url = env.params.body["callbackUrl"]?
|
|
|
|
expire = env.params.body["expire"]?.try &.to_i?
|
2019-04-19 02:53:50 +05:30
|
|
|
|
2021-12-07 02:58:16 +05:30
|
|
|
access_token = generate_token(user.email, scopes, expire, HMAC_KEY)
|
2019-04-19 02:53:50 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if callback_url
|
2019-09-24 23:01:33 +05:30
|
|
|
access_token = URI.encode_www_form(access_token)
|
2019-07-13 07:30:50 +05:30
|
|
|
url = URI.parse(callback_url)
|
2019-04-19 02:53:50 +05:30
|
|
|
|
2019-07-13 07:30:50 +05:30
|
|
|
if url.query
|
|
|
|
query = HTTP::Params.parse(url.query.not_nil!)
|
2019-04-19 02:53:50 +05:30
|
|
|
else
|
2019-07-13 07:30:50 +05:30
|
|
|
query = HTTP::Params.new
|
2019-04-19 02:53:50 +05:30
|
|
|
end
|
2019-07-13 07:30:50 +05:30
|
|
|
|
|
|
|
query["token"] = access_token
|
|
|
|
url.query = query.to_s
|
|
|
|
|
|
|
|
env.redirect url.to_s
|
|
|
|
else
|
|
|
|
csrf_token = ""
|
|
|
|
env.set "access_token", access_token
|
|
|
|
templated "authorize_token"
|
2019-04-19 02:53:50 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
get "/token_manager" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2019-04-19 02:53:50 +05:30
|
|
|
|
|
|
|
user = env.get? "user"
|
|
|
|
sid = env.get? "sid"
|
|
|
|
referer = get_referer(env, "/subscription_manager")
|
|
|
|
|
|
|
|
if !user
|
|
|
|
next env.redirect referer
|
|
|
|
end
|
|
|
|
|
|
|
|
user = user.as(User)
|
2021-12-03 04:27:13 +05:30
|
|
|
tokens = Invidious::Database::SessionIDs.select_all(user.email)
|
2019-04-19 02:53:50 +05:30
|
|
|
|
|
|
|
templated "token_manager"
|
|
|
|
end
|
|
|
|
|
|
|
|
post "/token_ajax" do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2019-04-19 02:53:50 +05:30
|
|
|
|
|
|
|
user = env.get? "user"
|
|
|
|
sid = env.get? "sid"
|
|
|
|
referer = get_referer(env)
|
|
|
|
|
|
|
|
redirect = env.params.query["redirect"]?
|
|
|
|
redirect ||= "true"
|
|
|
|
redirect = redirect == "true"
|
|
|
|
|
|
|
|
if !user
|
|
|
|
if redirect
|
|
|
|
next env.redirect referer
|
|
|
|
else
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_json(403, "No such user")
|
2019-04-19 02:53:50 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
user = user.as(User)
|
|
|
|
sid = sid.as(String)
|
|
|
|
token = env.params.body["csrf_token"]?
|
|
|
|
|
|
|
|
begin
|
2021-12-07 02:58:16 +05:30
|
|
|
validate_request(token, sid, env.request, HMAC_KEY, locale)
|
2019-04-19 02:53:50 +05:30
|
|
|
rescue ex
|
|
|
|
if redirect
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_template(400, ex)
|
2019-04-19 02:53:50 +05:30
|
|
|
else
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_json(400, ex)
|
2019-04-19 02:53:50 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if env.params.query["action_revoke_token"]?
|
|
|
|
action = "action_revoke_token"
|
|
|
|
else
|
|
|
|
next env.redirect referer
|
|
|
|
end
|
|
|
|
|
|
|
|
session = env.params.query["session"]?
|
|
|
|
session ||= ""
|
|
|
|
|
|
|
|
case action
|
|
|
|
when .starts_with? "action_revoke_token"
|
2021-12-03 04:27:13 +05:30
|
|
|
Invidious::Database::SessionIDs.delete(sid: session, email: user.email)
|
2020-04-09 22:48:09 +05:30
|
|
|
else
|
2020-11-30 15:29:21 +05:30
|
|
|
next error_json(400, "Unsupported action #{action}")
|
2019-04-19 02:53:50 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
if redirect
|
|
|
|
env.redirect referer
|
|
|
|
else
|
|
|
|
env.response.content_type = "application/json"
|
|
|
|
"{}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-05 02:00:44 +05:30
|
|
|
# Channels
|
|
|
|
|
2019-04-28 22:17:16 +05:30
|
|
|
{"/channel/:ucid/live", "/user/:user/live", "/c/:user/live"}.each do |route|
|
|
|
|
get route do |env|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2019-04-28 22:17:16 +05:30
|
|
|
|
|
|
|
# Appears to be a bug in routing, having several routes configured
|
|
|
|
# as `/a/:a`, `/b/:a`, `/c/:a` results in 404
|
|
|
|
value = env.request.resource.split("/")[2]
|
|
|
|
body = ""
|
|
|
|
{"channel", "user", "c"}.each do |type|
|
2019-10-25 22:28:16 +05:30
|
|
|
response = YT_POOL.client &.get("/#{type}/#{value}/live?disable_polymer=1")
|
2019-04-28 22:17:16 +05:30
|
|
|
if response.status_code == 200
|
|
|
|
body = response.body
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
video_id = body.match(/'VIDEO_ID': "(?<id>[a-zA-Z0-9_-]{11})"/).try &.["id"]?
|
|
|
|
if video_id
|
|
|
|
params = [] of String
|
|
|
|
env.params.query.each do |k, v|
|
|
|
|
params << "#{k}=#{v}"
|
|
|
|
end
|
|
|
|
params = params.join("&")
|
|
|
|
|
|
|
|
url = "/watch?v=#{video_id}"
|
|
|
|
if !params.empty?
|
|
|
|
url += "&#{params}"
|
|
|
|
end
|
|
|
|
|
|
|
|
env.redirect url
|
|
|
|
else
|
|
|
|
env.redirect "/channel/#{value}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-07 23:09:12 +05:30
|
|
|
# Authenticated endpoints
|
2018-03-31 20:21:14 +05:30
|
|
|
|
2021-08-14 12:38:46 +05:30
|
|
|
# The notification APIs can't be extracted yet
|
|
|
|
# due to the requirement of the `connection_channel`
|
|
|
|
# used by the `NotificationJob`
|
2018-09-05 05:57:10 +05:30
|
|
|
|
2019-04-11 04:28:42 +05:30
|
|
|
get "/api/v1/auth/notifications" do |env|
|
2019-06-02 18:11:53 +05:30
|
|
|
env.response.content_type = "text/event-stream"
|
2018-07-29 07:10:59 +05:30
|
|
|
|
2019-04-11 04:28:42 +05:30
|
|
|
topics = env.params.query["topics"]?.try &.split(",").uniq.first(1000)
|
|
|
|
topics ||= [] of String
|
2018-11-28 09:37:45 +05:30
|
|
|
|
2020-06-16 03:40:30 +05:30
|
|
|
create_notification_stream(env, topics, connection_channel)
|
2019-03-24 00:35:13 +05:30
|
|
|
end
|
2018-07-16 18:48:59 +05:30
|
|
|
|
2019-05-21 19:31:17 +05:30
|
|
|
post "/api/v1/auth/notifications" do |env|
|
2019-06-02 18:11:53 +05:30
|
|
|
env.response.content_type = "text/event-stream"
|
2018-12-21 03:02:09 +05:30
|
|
|
|
2019-05-21 19:31:17 +05:30
|
|
|
topics = env.params.body["topics"]?.try &.split(",").uniq.first(1000)
|
|
|
|
topics ||= [] of String
|
2019-04-11 04:28:42 +05:30
|
|
|
|
2020-06-16 03:40:30 +05:30
|
|
|
create_notification_stream(env, topics, connection_channel)
|
2019-04-11 04:28:42 +05:30
|
|
|
end
|
|
|
|
|
2019-10-27 09:49:05 +05:30
|
|
|
get "/Captcha" do |env|
|
2020-05-08 19:30:53 +05:30
|
|
|
headers = HTTP::Headers{":authority" => "accounts.google.com"}
|
|
|
|
response = YT_POOL.client &.get(env.request.resource, headers)
|
2019-10-27 09:49:05 +05:30
|
|
|
env.response.headers["Content-Type"] = response.headers["Content-Type"]
|
|
|
|
response.body
|
|
|
|
end
|
|
|
|
|
2019-08-22 04:53:20 +05:30
|
|
|
# Undocumented, creates anonymous playlist with specified 'video_ids', max 50 videos
|
2019-05-03 19:41:27 +05:30
|
|
|
get "/watch_videos" do |env|
|
2019-10-25 22:28:16 +05:30
|
|
|
response = YT_POOL.client &.get(env.request.resource)
|
2019-05-03 19:41:27 +05:30
|
|
|
if url = response.headers["Location"]?
|
2021-02-01 00:22:32 +05:30
|
|
|
url = URI.parse(url).request_target
|
2019-05-03 19:41:27 +05:30
|
|
|
next env.redirect url
|
|
|
|
end
|
|
|
|
|
|
|
|
env.response.status_code = response.status_code
|
|
|
|
end
|
|
|
|
|
2018-02-10 20:45:23 +05:30
|
|
|
error 404 do |env|
|
2019-03-27 15:58:53 +05:30
|
|
|
if md = env.request.path.match(/^\/(?<id>([a-zA-Z0-9_-]{11})|(\w+))$/)
|
2019-04-18 01:16:00 +05:30
|
|
|
item = md["id"]
|
2018-10-07 08:49:36 +05:30
|
|
|
|
2019-04-18 01:16:00 +05:30
|
|
|
# Check if item is branding URL e.g. https://youtube.com/gaming
|
2019-10-25 22:28:16 +05:30
|
|
|
response = YT_POOL.client &.get("/#{item}")
|
2019-03-27 15:58:53 +05:30
|
|
|
|
|
|
|
if response.status_code == 301
|
2021-02-01 00:22:32 +05:30
|
|
|
response = YT_POOL.client &.get(URI.parse(response.headers["Location"]).request_target)
|
2019-03-27 15:58:53 +05:30
|
|
|
end
|
|
|
|
|
2019-06-07 23:12:07 +05:30
|
|
|
if response.body.empty?
|
|
|
|
env.response.headers["Location"] = "/"
|
|
|
|
halt env, status_code: 302
|
|
|
|
end
|
|
|
|
|
2019-03-27 15:58:53 +05:30
|
|
|
html = XML.parse_html(response.body)
|
2020-01-14 18:51:17 +05:30
|
|
|
ucid = html.xpath_node(%q(//link[@rel="canonical"])).try &.["href"].split("/")[-1]
|
2019-03-27 15:58:53 +05:30
|
|
|
|
|
|
|
if ucid
|
2020-01-14 18:51:17 +05:30
|
|
|
env.response.headers["Location"] = "/channel/#{ucid}"
|
2019-03-27 15:58:53 +05:30
|
|
|
halt env, status_code: 302
|
|
|
|
end
|
|
|
|
|
2018-10-07 08:49:36 +05:30
|
|
|
params = [] of String
|
|
|
|
env.params.query.each do |k, v|
|
|
|
|
params << "#{k}=#{v}"
|
|
|
|
end
|
|
|
|
params = params.join("&")
|
|
|
|
|
2019-04-18 01:16:00 +05:30
|
|
|
url = "/watch?v=#{item}"
|
2018-10-07 08:49:36 +05:30
|
|
|
if !params.empty?
|
|
|
|
url += "&#{params}"
|
|
|
|
end
|
|
|
|
|
2019-04-18 01:16:00 +05:30
|
|
|
# Check if item is video ID
|
2019-10-25 22:28:16 +05:30
|
|
|
if item.match(/^[a-zA-Z0-9_-]{11}$/) && YT_POOL.client &.head("/watch?v=#{item}").status_code != 404
|
2019-02-22 02:37:22 +05:30
|
|
|
env.response.headers["Location"] = url
|
|
|
|
halt env, status_code: 302
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-13 00:48:08 +05:30
|
|
|
env.response.headers["Location"] = "/"
|
|
|
|
halt env, status_code: 302
|
2017-12-31 02:51:43 +05:30
|
|
|
end
|
|
|
|
|
2020-11-30 15:29:21 +05:30
|
|
|
error 500 do |env, ex|
|
2021-11-09 04:22:55 +05:30
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2020-11-30 15:29:21 +05:30
|
|
|
error_template(500, ex)
|
2017-12-31 02:51:43 +05:30
|
|
|
end
|
|
|
|
|
2021-09-25 07:45:23 +05:30
|
|
|
static_headers do |response|
|
2019-05-08 19:28:10 +05:30
|
|
|
response.headers.add("Cache-Control", "max-age=2629800")
|
2018-03-09 22:58:57 +05:30
|
|
|
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
|
2019-02-03 10:18:47 +05:30
|
|
|
add_handler APIHandler.new
|
2019-04-19 02:53:50 +05:30
|
|
|
add_handler AuthHandler.new
|
2019-03-23 20:54:30 +05:30
|
|
|
add_handler DenyFrame.new
|
2019-04-19 02:53:50 +05:30
|
|
|
add_context_storage_type(Array(String))
|
2019-02-24 21:19:48 +05:30
|
|
|
add_context_storage_type(Preferences)
|
2019-04-19 02:53:50 +05:30
|
|
|
add_context_storage_type(User)
|
2017-11-23 13:18:55 +05:30
|
|
|
|
2021-01-04 21:21:06 +05:30
|
|
|
Kemal.config.logger = LOGGER
|
2019-09-23 22:35:29 +05:30
|
|
|
Kemal.config.host_binding = Kemal.config.host_binding != "0.0.0.0" ? Kemal.config.host_binding : CONFIG.host_binding
|
|
|
|
Kemal.config.port = Kemal.config.port != 3000 ? Kemal.config.port : CONFIG.port
|
2021-09-10 13:12:15 +05:30
|
|
|
Kemal.config.app_name = "Invidious"
|
2021-10-11 18:12:22 +05:30
|
|
|
|
|
|
|
# Use in kemal's production mode.
|
|
|
|
# Users can also set the KEMAL_ENV environmental variable for this to be set automatically.
|
|
|
|
{% if flag?(:release) || flag?(:production) %}
|
|
|
|
Kemal.config.env = "production" if !ENV.has_key?("KEMAL_ENV")
|
|
|
|
{% end %}
|
|
|
|
|
2017-11-23 13:18:55 +05:30
|
|
|
Kemal.run
|