2018-09-04 10:22:10 -04:00
|
|
|
# "Invidious" (which is an alternative front-end to YouTube)
|
2019-03-15 12:44:53 -04:00
|
|
|
# Copyright (C) 2019 Omar Roth
|
2018-01-28 12:32:40 -05:00
|
|
|
#
|
|
|
|
# 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-22 14:26:08 -05:00
|
|
|
require "digest/md5"
|
2019-01-23 15:15:19 -05:00
|
|
|
require "file_utils"
|
2022-04-10 16:53:03 -04:00
|
|
|
|
|
|
|
# Require kemal, kilt, then our own overrides
|
2017-11-23 02:48:55 -05:00
|
|
|
require "kemal"
|
2022-04-10 16:53:03 -04:00
|
|
|
require "kilt"
|
|
|
|
require "./ext/kemal_content_for.cr"
|
2022-04-10 17:07:06 -04:00
|
|
|
require "./ext/kemal_static_file_handler.cr"
|
2022-04-10 16:53:03 -04:00
|
|
|
|
2021-08-24 15:59:27 -04:00
|
|
|
require "athena-negotiation"
|
2018-07-18 15:26:02 -04:00
|
|
|
require "openssl/hmac"
|
2018-02-03 17:13:14 -05:00
|
|
|
require "option_parser"
|
2018-11-21 18:12:13 -05:00
|
|
|
require "sqlite3"
|
2018-01-16 15:02:35 -05:00
|
|
|
require "xml"
|
2018-03-09 13:42:23 -05:00
|
|
|
require "yaml"
|
2020-06-15 18:57:20 -04:00
|
|
|
require "compress/zip"
|
2019-10-27 13:50:42 -04:00
|
|
|
require "protodec/utils"
|
2021-11-26 13:36:31 -05:00
|
|
|
|
|
|
|
require "./invidious/database/*"
|
2022-02-10 23:16:40 -05:00
|
|
|
require "./invidious/database/migrations/*"
|
2018-08-04 16:30:44 -04:00
|
|
|
require "./invidious/helpers/*"
|
2021-10-07 16:32:04 -04:00
|
|
|
require "./invidious/yt_backend/*"
|
2022-02-22 11:42:41 -05:00
|
|
|
require "./invidious/frontend/*"
|
|
|
|
|
2018-07-06 08:59:56 -04:00
|
|
|
require "./invidious/*"
|
2021-07-14 11:46:12 -04:00
|
|
|
require "./invidious/channels/*"
|
2021-10-07 16:00:50 -04:00
|
|
|
require "./invidious/user/*"
|
2022-03-06 18:52:54 -05:00
|
|
|
require "./invidious/search/*"
|
2020-10-06 00:41:18 -04:00
|
|
|
require "./invidious/routes/**"
|
|
|
|
require "./invidious/jobs/**"
|
2017-11-29 16:33:46 -05:00
|
|
|
|
2021-01-23 12:58:13 -05:00
|
|
|
CONFIG = Config.load
|
|
|
|
HMAC_KEY = CONFIG.hmac_key || Random::Secure.hex(32)
|
2018-03-09 13:42:23 -05:00
|
|
|
|
2022-02-03 21:44:10 -05:00
|
|
|
PG_DB = DB.open CONFIG.database_url
|
|
|
|
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")
|
|
|
|
YT_URL = URI.parse("https://www.youtube.com")
|
|
|
|
HOST_URL = make_host_url(Kemal.config)
|
2019-06-23 09:39:14 -04:00
|
|
|
|
2019-06-07 13:39:12 -04:00
|
|
|
CHARS_SAFE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"
|
|
|
|
TEST_IDS = {"AgbeGFYluEA", "BaW_jenozKc", "a9LDPn-MO4I", "ddFvjfvPnqk", "iqKdEhx-dD4"}
|
2019-06-08 17:04:55 -04:00
|
|
|
MAX_ITEMS_PER_PAGE = 1500
|
2018-03-04 23:25:03 -05:00
|
|
|
|
2019-11-24 13:41:47 -05:00
|
|
|
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-04 16:30:00 -04:00
|
|
|
HTTP_CHUNK_SIZE = 10485760 # ~10MB
|
2019-06-23 09:39:14 -04:00
|
|
|
|
2020-02-15 13:52:28 -05:00
|
|
|
CURRENT_BRANCH = {{ "#{`git branch | sed -n '/* /s///p'`.strip}" }}
|
2019-06-23 09:39:14 -04:00
|
|
|
CURRENT_COMMIT = {{ "#{`git rev-list HEAD --max-count=1 --abbrev-commit`.strip}" }}
|
2020-12-05 14:06:24 -05:00
|
|
|
CURRENT_VERSION = {{ "#{`git log -1 --format=%ci | awk '{print $1}' | sed s/-/./g`.strip}" }}
|
2019-06-23 09:39:14 -04:00
|
|
|
|
2019-05-09 12:52:37 -04:00
|
|
|
# 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 09:28:53 -04:00
|
|
|
SOFTWARE = {
|
|
|
|
"name" => "invidious",
|
|
|
|
"version" => "#{CURRENT_VERSION}-#{CURRENT_COMMIT}",
|
|
|
|
"branch" => "#{CURRENT_BRANCH}",
|
|
|
|
}
|
|
|
|
|
2021-09-26 17:03:45 -04:00
|
|
|
YT_POOL = YoutubeConnectionPool.new(YT_URL, capacity: CONFIG.pool_size, use_quic: CONFIG.use_quic)
|
2019-10-25 12:58:16 -04:00
|
|
|
|
2021-01-04 10:51:06 -05:00
|
|
|
# CLI
|
2019-04-06 09:28:53 -04:00
|
|
|
Kemal.config.extra_options do |parser|
|
|
|
|
parser.banner = "Usage: invidious [arguments]"
|
2021-01-04 10:51:06 -05:00
|
|
|
parser.on("-c THREADS", "--channel-threads=THREADS", "Number of threads for refreshing channels (default: #{CONFIG.channel_threads})") do |number|
|
2019-04-06 09:28:53 -04:00
|
|
|
begin
|
2021-01-04 10:51:06 -05:00
|
|
|
CONFIG.channel_threads = number.to_i
|
2019-04-06 09:28:53 -04:00
|
|
|
rescue ex
|
|
|
|
puts "THREADS must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2021-01-04 10:51:06 -05:00
|
|
|
parser.on("-f THREADS", "--feed-threads=THREADS", "Number of threads for refreshing feeds (default: #{CONFIG.feed_threads})") do |number|
|
2019-04-06 09:28:53 -04:00
|
|
|
begin
|
2021-01-04 10:51:06 -05:00
|
|
|
CONFIG.feed_threads = number.to_i
|
2019-04-06 09:28:53 -04:00
|
|
|
rescue ex
|
|
|
|
puts "THREADS must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2021-01-04 10:51:06 -05:00
|
|
|
parser.on("-o OUTPUT", "--output=OUTPUT", "Redirect output (default: #{CONFIG.output})") do |output|
|
|
|
|
CONFIG.output = output
|
2019-04-06 09:28:53 -04:00
|
|
|
end
|
2021-01-04 10:51:06 -05:00
|
|
|
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 10:05:35 -05:00
|
|
|
end
|
|
|
|
parser.on("-v", "--version", "Print version") do
|
2019-04-06 09:28:53 -04:00
|
|
|
puts SOFTWARE.to_pretty_json
|
|
|
|
exit
|
|
|
|
end
|
2022-03-11 14:51:12 -05:00
|
|
|
parser.on("--migrate", "Run any migrations (beta, use at your own risk!!") do
|
2022-02-11 23:43:16 -05:00
|
|
|
Invidious::Database::Migrator.new(PG_DB).migrate
|
|
|
|
exit
|
|
|
|
end
|
2019-04-06 09:28:53 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
Kemal::CLI.new ARGV
|
|
|
|
|
2021-01-04 10:51:06 -05:00
|
|
|
if CONFIG.output.upcase != "STDOUT"
|
|
|
|
FileUtils.mkdir_p(File.dirname(CONFIG.output))
|
2021-01-04 10:05:15 -05:00
|
|
|
end
|
2021-01-04 10:51:06 -05:00
|
|
|
OUTPUT = CONFIG.output.upcase == "STDOUT" ? STDOUT : File.open(CONFIG.output, mode: "a")
|
|
|
|
LOGGER = Invidious::LogHandler.new(OUTPUT, CONFIG.log_level)
|
2021-01-04 10:05:15 -05:00
|
|
|
|
2019-04-15 12:13:09 -04:00
|
|
|
# Check table integrity
|
2022-01-06 17:47:30 -05:00
|
|
|
Invidious::Database.check_integrity(CONFIG)
|
2018-03-25 23:18:29 -04:00
|
|
|
|
2022-02-07 21:05:49 -05:00
|
|
|
{% if !flag?(:skip_videojs_download) %}
|
2022-02-07 16:45:08 -05:00
|
|
|
# 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?
|
|
|
|
|
2022-07-12 04:38:22 -04:00
|
|
|
{% puts "\nChecking player dependencies, this may take more than 20 minutes... If it is stuck, check your internet connection.\n" %}
|
2022-02-07 16:45:08 -05:00
|
|
|
{% if flag?(:minified_player_dependencies) %}
|
|
|
|
{% puts run("../scripts/fetch-player-dependencies.cr", "--minified").stringify %}
|
|
|
|
{% else %}
|
|
|
|
{% puts run("../scripts/fetch-player-dependencies.cr").stringify %}
|
|
|
|
{% end %}
|
2022-07-12 04:38:22 -04:00
|
|
|
{% puts "\nDone checking player dependencies, now compiling Invidious...\n" %}
|
2021-09-12 01:47:12 -04:00
|
|
|
{% end %}
|
|
|
|
|
2019-04-10 17:23:37 -04:00
|
|
|
# Start jobs
|
2019-05-15 13:26:29 -04:00
|
|
|
|
2021-01-23 13:41:50 -05:00
|
|
|
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 13:19:44 -04:00
|
|
|
|
|
|
|
DECRYPT_FUNCTION = DecryptFunction.new(CONFIG.decrypt_polling)
|
2021-01-23 13:39:04 -05:00
|
|
|
if CONFIG.decrypt_polling
|
2021-01-04 10:51:06 -05:00
|
|
|
Invidious::Jobs.register Invidious::Jobs::UpdateDecryptFunctionJob.new
|
2020-09-27 13:19:44 -04:00
|
|
|
end
|
2019-03-03 20:18:23 -05:00
|
|
|
|
2021-01-23 13:39:04 -05:00
|
|
|
if CONFIG.statistics_enabled
|
|
|
|
Invidious::Jobs.register Invidious::Jobs::StatisticsRefreshJob.new(PG_DB, SOFTWARE)
|
2020-10-17 08:25:57 -04:00
|
|
|
end
|
2019-08-27 09:08:26 -04:00
|
|
|
|
2021-01-23 13:39:04 -05:00
|
|
|
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-07 14:15:26 -05:00
|
|
|
end
|
|
|
|
|
2021-01-23 13:39:04 -05:00
|
|
|
if CONFIG.popular_enabled
|
2020-12-27 00:12:43 -05:00
|
|
|
Invidious::Jobs.register Invidious::Jobs::PullPopularVideosJob.new(PG_DB)
|
|
|
|
end
|
|
|
|
|
2022-02-23 00:20:09 -05:00
|
|
|
CONNECTION_CHANNEL = Channel({Bool, Channel(PQ::Notification)}).new(32)
|
|
|
|
Invidious::Jobs.register Invidious::Jobs::NotificationJob.new(CONNECTION_CHANNEL, CONFIG.database_url)
|
2020-10-17 08:25:57 -04:00
|
|
|
|
2020-10-06 00:41:18 -04:00
|
|
|
Invidious::Jobs.start_all
|
|
|
|
|
|
|
|
def popular_videos
|
|
|
|
Invidious::Jobs::PullPopularVideosJob::POPULAR_VIDEOS.get
|
2018-11-08 21:08:03 -05:00
|
|
|
end
|
|
|
|
|
2018-03-24 23:56:41 -04:00
|
|
|
before_all do |env|
|
2021-08-24 15:59:27 -04:00
|
|
|
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-15 17:46:08 -04:00
|
|
|
rescue
|
2021-08-24 15:59:27 -04:00
|
|
|
preferences = Preferences.from_json("{}")
|
2020-03-15 17:46:08 -04:00
|
|
|
end
|
|
|
|
|
2020-10-16 06:23:18 -04:00
|
|
|
env.set "preferences", preferences
|
2019-05-10 17:48:38 -04:00
|
|
|
env.response.headers["X-XSS-Protection"] = "1; mode=block"
|
2018-09-05 22:51:40 -04:00
|
|
|
env.response.headers["X-Content-Type-Options"] = "nosniff"
|
2021-06-17 13:45:20 -04:00
|
|
|
|
2021-06-19 03:40:33 -04:00
|
|
|
# Allow media resources to be loaded from google servers
|
2021-06-17 13:45:20 -04:00
|
|
|
# TODO: check if *.youtube.com can be removed
|
2020-03-15 17:46:08 -04:00
|
|
|
if CONFIG.disabled?("local") || !preferences.local
|
2021-06-17 13:45:20 -04:00
|
|
|
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 12:43:00 -04:00
|
|
|
frame_ancestors = "'none'"
|
2020-03-15 17:46:08 -04:00
|
|
|
end
|
2021-06-17 13:45:20 -04:00
|
|
|
|
|
|
|
# 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-07 15:01:08 -04:00
|
|
|
env.response.headers["Referrer-Policy"] = "same-origin"
|
|
|
|
|
2021-06-17 13:45:20 -04:00
|
|
|
# Ask the chrom*-based browsers to disable FLoC
|
|
|
|
# See: https://blog.runcloud.io/google-floc/
|
|
|
|
env.response.headers["Permissions-Policy"] = "interest-cohort=()"
|
|
|
|
|
2021-01-23 13:39:04 -05:00
|
|
|
if (Kemal.config.ssl || CONFIG.https_only) && CONFIG.hsts
|
2019-04-30 21:53:56 -04:00
|
|
|
env.response.headers["Strict-Transport-Security"] = "max-age=31536000; includeSubDomains; preload"
|
2019-04-07 15:01:08 -04:00
|
|
|
end
|
2019-03-28 14:43:40 -04:00
|
|
|
|
2019-11-20 12:03:52 -05:00
|
|
|
next if {
|
|
|
|
"/sb/",
|
|
|
|
"/vi/",
|
|
|
|
"/s_p/",
|
|
|
|
"/yts/",
|
|
|
|
"/ggpht/",
|
|
|
|
"/api/manifest/",
|
|
|
|
"/videoplayback",
|
|
|
|
"/latest_version",
|
2022-02-22 12:11:11 -05:00
|
|
|
"/download",
|
2019-11-20 12:03:52 -05:00
|
|
|
}.any? { |r| env.request.resource.starts_with? r }
|
|
|
|
|
2018-07-16 12:24:24 -04:00
|
|
|
if env.request.cookies.has_key? "SID"
|
2018-03-31 20:09:27 -04:00
|
|
|
sid = env.request.cookies["SID"].value
|
2018-07-05 19:43:26 -04:00
|
|
|
|
2019-04-18 17:23:50 -04:00
|
|
|
if sid.starts_with? "v1:"
|
|
|
|
raise "Cannot use token as SID"
|
|
|
|
end
|
|
|
|
|
2018-07-18 15:26:02 -04:00
|
|
|
# Invidious users only have SID
|
|
|
|
if !env.request.cookies.has_key? "SSID"
|
2021-12-02 17:57:13 -05:00
|
|
|
if email = Invidious::Database::SessionIDs.select_email(sid)
|
2021-12-02 20:27:51 -05:00
|
|
|
user = Invidious::Database::Users.select!(email: email)
|
2019-08-05 19:49:13 -04:00
|
|
|
csrf_token = generate_response(sid, {
|
|
|
|
":authorize_token",
|
|
|
|
":playlist_ajax",
|
|
|
|
":signout",
|
|
|
|
":subscription_ajax",
|
|
|
|
":token_ajax",
|
|
|
|
":watch_ajax",
|
2021-12-06 16:28:16 -05:00
|
|
|
}, HMAC_KEY, 1.week)
|
2018-11-08 18:42:25 -05:00
|
|
|
|
2019-03-11 13:44:25 -04:00
|
|
|
preferences = user.preferences
|
2020-10-16 06:23:18 -04:00
|
|
|
env.set "preferences", preferences
|
2019-03-11 13:44:25 -04:00
|
|
|
|
2018-08-15 13:40:42 -04:00
|
|
|
env.set "sid", sid
|
2019-04-18 17:23:50 -04:00
|
|
|
env.set "csrf_token", csrf_token
|
2019-04-16 00:23:40 -04:00
|
|
|
env.set "user", user
|
2018-07-18 15:26:02 -04:00
|
|
|
end
|
|
|
|
else
|
2019-04-16 00:23:40 -04:00
|
|
|
headers = HTTP::Headers.new
|
|
|
|
headers["Cookie"] = env.request.headers["Cookie"]
|
|
|
|
|
2018-07-18 15:26:02 -04:00
|
|
|
begin
|
2021-12-06 16:28:16 -05:00
|
|
|
user, sid = get_user(sid, headers, false)
|
2019-08-05 19:49:13 -04:00
|
|
|
csrf_token = generate_response(sid, {
|
|
|
|
":authorize_token",
|
|
|
|
":playlist_ajax",
|
|
|
|
":signout",
|
|
|
|
":subscription_ajax",
|
|
|
|
":token_ajax",
|
|
|
|
":watch_ajax",
|
2021-12-06 16:28:16 -05:00
|
|
|
}, HMAC_KEY, 1.week)
|
2018-11-15 21:23:17 -05:00
|
|
|
|
2019-03-11 13:44:25 -04:00
|
|
|
preferences = user.preferences
|
2020-10-16 06:23:18 -04:00
|
|
|
env.set "preferences", preferences
|
2019-03-11 13:44:25 -04:00
|
|
|
|
2018-08-15 13:40:42 -04:00
|
|
|
env.set "sid", sid
|
2019-04-18 17:23:50 -04:00
|
|
|
env.set "csrf_token", csrf_token
|
2019-04-16 00:23:40 -04:00
|
|
|
env.set "user", user
|
2018-07-18 15:26:02 -04:00
|
|
|
rescue ex
|
|
|
|
end
|
2018-07-16 13:50:41 -04:00
|
|
|
end
|
2018-04-13 22:32:14 -04:00
|
|
|
end
|
2018-08-17 11:19:20 -04:00
|
|
|
|
2019-08-15 12:29:55 -04:00
|
|
|
dark_mode = convert_theme(env.params.query["dark_mode"]?) || preferences.dark_mode.to_s
|
2019-03-11 13:44:25 -04:00
|
|
|
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-17 15:07:38 -04:00
|
|
|
env.set "preferences", preferences
|
2018-12-20 16:32:09 -05:00
|
|
|
|
2018-08-17 11:19:20 -04:00
|
|
|
current_page = env.request.path
|
|
|
|
if env.request.query
|
|
|
|
query = HTTP::Params.parse(env.request.query.not_nil!)
|
|
|
|
|
|
|
|
if query["referer"]?
|
|
|
|
query["referer"] = get_referer(env, "/")
|
|
|
|
end
|
|
|
|
|
|
|
|
current_page += "?#{query}"
|
|
|
|
end
|
|
|
|
|
2019-09-24 13:31:33 -04:00
|
|
|
env.set "current_page", URI.encode_www_form(current_page)
|
2018-03-22 13:44:36 -04:00
|
|
|
end
|
|
|
|
|
2021-10-02 16:04:02 -04:00
|
|
|
{% 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 "/redirect", Invidious::Routes::Misc, :cross_instance_redirect
|
|
|
|
|
2022-08-09 18:22:40 -04:00
|
|
|
Invidious::Routing.register_channel_routes
|
|
|
|
Invidious::Routing.register_watch_routes
|
2021-10-02 16:04:02 -04:00
|
|
|
|
2022-08-09 18:26:41 -04:00
|
|
|
Invidious::Routing.register_iv_playlist_routes
|
|
|
|
Invidious::Routing.register_yt_playlist_routes
|
2021-10-02 16:04:02 -04:00
|
|
|
|
2022-08-09 18:31:15 -04:00
|
|
|
Invidious::Routing.register_search_routes
|
2021-10-02 16:04:02 -04:00
|
|
|
|
2022-02-03 22:55:50 -05:00
|
|
|
# User routes
|
2022-08-09 17:56:34 -04:00
|
|
|
Invidious::Routing.register_user_routes
|
2021-10-02 16:04:02 -04:00
|
|
|
|
2022-08-09 18:44:21 -04:00
|
|
|
Invidious::Routing.register_feed_routes
|
2021-10-02 16:04:02 -04:00
|
|
|
|
|
|
|
# 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-18 19:34:32 -05:00
|
|
|
|
|
|
|
Invidious::Routing.get "/modify_notifications", Invidious::Routes::Notifications, :modify
|
2021-10-02 16:04:02 -04:00
|
|
|
{% end %}
|
2021-08-30 10:58:24 -04:00
|
|
|
|
2022-08-09 18:20:04 -04:00
|
|
|
Invidious::Routing.register_image_routes
|
2021-10-11 16:22:11 -04:00
|
|
|
|
2021-08-30 12:17:20 -04:00
|
|
|
# API routes (macro)
|
2022-08-09 18:07:47 -04:00
|
|
|
Invidious::Routing.register_api_v1_routes
|
2021-08-30 12:17:20 -04:00
|
|
|
|
|
|
|
# Video playback (macros)
|
2022-08-09 18:09:58 -04:00
|
|
|
Invidious::Routing.register_api_manifest_routes
|
|
|
|
Invidious::Routing.register_video_playback_routes
|
2021-07-22 00:34:16 -04:00
|
|
|
|
2018-02-10 10:15:23 -05:00
|
|
|
error 404 do |env|
|
2019-03-27 06:28:53 -04:00
|
|
|
if md = env.request.path.match(/^\/(?<id>([a-zA-Z0-9_-]{11})|(\w+))$/)
|
2019-04-17 15:46:00 -04:00
|
|
|
item = md["id"]
|
2018-10-06 23:19:36 -04:00
|
|
|
|
2019-04-17 15:46:00 -04:00
|
|
|
# Check if item is branding URL e.g. https://youtube.com/gaming
|
2019-10-25 12:58:16 -04:00
|
|
|
response = YT_POOL.client &.get("/#{item}")
|
2019-03-27 06:28:53 -04:00
|
|
|
|
|
|
|
if response.status_code == 301
|
2021-01-31 13:52:32 -05:00
|
|
|
response = YT_POOL.client &.get(URI.parse(response.headers["Location"]).request_target)
|
2019-03-27 06:28:53 -04:00
|
|
|
end
|
|
|
|
|
2019-06-07 13:42:07 -04:00
|
|
|
if response.body.empty?
|
|
|
|
env.response.headers["Location"] = "/"
|
|
|
|
halt env, status_code: 302
|
|
|
|
end
|
|
|
|
|
2019-03-27 06:28:53 -04:00
|
|
|
html = XML.parse_html(response.body)
|
2020-01-14 08:21:17 -05:00
|
|
|
ucid = html.xpath_node(%q(//link[@rel="canonical"])).try &.["href"].split("/")[-1]
|
2019-03-27 06:28:53 -04:00
|
|
|
|
|
|
|
if ucid
|
2020-01-14 08:21:17 -05:00
|
|
|
env.response.headers["Location"] = "/channel/#{ucid}"
|
2019-03-27 06:28:53 -04:00
|
|
|
halt env, status_code: 302
|
|
|
|
end
|
|
|
|
|
2018-10-06 23:19:36 -04:00
|
|
|
params = [] of String
|
|
|
|
env.params.query.each do |k, v|
|
|
|
|
params << "#{k}=#{v}"
|
|
|
|
end
|
|
|
|
params = params.join("&")
|
|
|
|
|
2019-04-17 15:46:00 -04:00
|
|
|
url = "/watch?v=#{item}"
|
2018-10-06 23:19:36 -04:00
|
|
|
if !params.empty?
|
|
|
|
url += "&#{params}"
|
|
|
|
end
|
|
|
|
|
2019-04-17 15:46:00 -04:00
|
|
|
# Check if item is video ID
|
2019-10-25 12:58:16 -04:00
|
|
|
if item.match(/^[a-zA-Z0-9_-]{11}$/) && YT_POOL.client &.head("/watch?v=#{item}").status_code != 404
|
2019-02-21 16:07:22 -05:00
|
|
|
env.response.headers["Location"] = url
|
|
|
|
halt env, status_code: 302
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-12 14:18:08 -05:00
|
|
|
env.response.headers["Location"] = "/"
|
|
|
|
halt env, status_code: 302
|
2017-12-30 16:21:43 -05:00
|
|
|
end
|
|
|
|
|
2020-11-30 04:59:21 -05:00
|
|
|
error 500 do |env, ex|
|
2021-11-08 17:52:55 -05:00
|
|
|
locale = env.get("preferences").as(Preferences).locale
|
2020-11-30 04:59:21 -05:00
|
|
|
error_template(500, ex)
|
2017-12-30 16:21:43 -05:00
|
|
|
end
|
|
|
|
|
2021-09-24 22:15:23 -04:00
|
|
|
static_headers do |response|
|
2019-05-08 09:58:10 -04:00
|
|
|
response.headers.add("Cache-Control", "max-age=2629800")
|
2018-03-09 12:28:57 -05:00
|
|
|
end
|
|
|
|
|
2017-11-23 02:48:55 -05:00
|
|
|
public_folder "assets"
|
2018-04-15 23:56:58 -04:00
|
|
|
|
2018-07-30 19:42:45 -04:00
|
|
|
Kemal.config.powered_by_header = false
|
2018-04-15 23:56:58 -04:00
|
|
|
add_handler FilteredCompressHandler.new
|
2019-02-02 23:48:47 -05:00
|
|
|
add_handler APIHandler.new
|
2019-04-18 17:23:50 -04:00
|
|
|
add_handler AuthHandler.new
|
2019-03-23 11:24:30 -04:00
|
|
|
add_handler DenyFrame.new
|
2019-04-18 17:23:50 -04:00
|
|
|
add_context_storage_type(Array(String))
|
2019-02-24 10:49:48 -05:00
|
|
|
add_context_storage_type(Preferences)
|
2022-02-03 22:09:07 -05:00
|
|
|
add_context_storage_type(Invidious::User)
|
2017-11-23 02:48:55 -05:00
|
|
|
|
2021-01-04 10:51:06 -05:00
|
|
|
Kemal.config.logger = LOGGER
|
2019-09-23 13:05:29 -04:00
|
|
|
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 03:42:15 -04:00
|
|
|
Kemal.config.app_name = "Invidious"
|
2021-10-11 08:42:22 -04:00
|
|
|
|
|
|
|
# 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 02:48:55 -05:00
|
|
|
Kemal.run
|