2018-09-04 14:22:10 +00:00
|
|
|
# "Invidious" (which is an alternative front-end to YouTube)
|
2019-03-15 16:44:53 +00:00
|
|
|
# Copyright (C) 2019 Omar Roth
|
2018-01-28 17:32:40 +00: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 19:26:08 +00:00
|
|
|
require "digest/md5"
|
2019-01-23 20:15:19 +00:00
|
|
|
require "file_utils"
|
2022-04-10 20:53:03 +00:00
|
|
|
|
|
|
|
# Require kemal, kilt, then our own overrides
|
2017-11-23 07:48:55 +00:00
|
|
|
require "kemal"
|
2022-04-10 20:53:03 +00:00
|
|
|
require "kilt"
|
|
|
|
require "./ext/kemal_content_for.cr"
|
2022-04-10 21:07:06 +00:00
|
|
|
require "./ext/kemal_static_file_handler.cr"
|
2022-04-10 20:53:03 +00:00
|
|
|
|
2021-08-24 19:59:27 +00:00
|
|
|
require "athena-negotiation"
|
2018-07-18 19:26:02 +00:00
|
|
|
require "openssl/hmac"
|
2018-02-03 22:13:14 +00:00
|
|
|
require "option_parser"
|
2018-11-21 23:12:13 +00:00
|
|
|
require "sqlite3"
|
2018-01-16 20:02:35 +00:00
|
|
|
require "xml"
|
2018-03-09 18:42:23 +00:00
|
|
|
require "yaml"
|
2020-06-15 22:57:20 +00:00
|
|
|
require "compress/zip"
|
2019-10-27 17:50:42 +00:00
|
|
|
require "protodec/utils"
|
2021-11-26 18:36:31 +00:00
|
|
|
|
|
|
|
require "./invidious/database/*"
|
2022-02-11 04:16:40 +00:00
|
|
|
require "./invidious/database/migrations/*"
|
2018-08-04 20:30:44 +00:00
|
|
|
require "./invidious/helpers/*"
|
2021-10-07 20:32:04 +00:00
|
|
|
require "./invidious/yt_backend/*"
|
2022-02-22 16:42:41 +00:00
|
|
|
require "./invidious/frontend/*"
|
|
|
|
|
2018-07-06 12:59:56 +00:00
|
|
|
require "./invidious/*"
|
2021-07-14 15:46:12 +00:00
|
|
|
require "./invidious/channels/*"
|
2021-10-07 20:00:50 +00:00
|
|
|
require "./invidious/user/*"
|
2022-03-06 23:52:54 +00:00
|
|
|
require "./invidious/search/*"
|
2020-10-06 04:41:18 +00:00
|
|
|
require "./invidious/routes/**"
|
|
|
|
require "./invidious/jobs/**"
|
2017-11-29 21:33:46 +00:00
|
|
|
|
2021-01-23 17:58:13 +00:00
|
|
|
CONFIG = Config.load
|
|
|
|
HMAC_KEY = CONFIG.hmac_key || Random::Secure.hex(32)
|
2018-03-09 18:42:23 +00:00
|
|
|
|
2022-02-04 02:44:10 +00: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 13:39:14 +00:00
|
|
|
|
2019-06-07 17:39:12 +00:00
|
|
|
CHARS_SAFE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"
|
|
|
|
TEST_IDS = {"AgbeGFYluEA", "BaW_jenozKc", "a9LDPn-MO4I", "ddFvjfvPnqk", "iqKdEhx-dD4"}
|
2019-06-08 21:04:55 +00:00
|
|
|
MAX_ITEMS_PER_PAGE = 1500
|
2018-03-05 04:25:03 +00:00
|
|
|
|
2019-11-24 18:41:47 +00: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 20:30:00 +00:00
|
|
|
HTTP_CHUNK_SIZE = 10485760 # ~10MB
|
2019-06-23 13:39:14 +00:00
|
|
|
|
2020-02-15 18:52:28 +00:00
|
|
|
CURRENT_BRANCH = {{ "#{`git branch | sed -n '/* /s///p'`.strip}" }}
|
2019-06-23 13:39:14 +00:00
|
|
|
CURRENT_COMMIT = {{ "#{`git rev-list HEAD --max-count=1 --abbrev-commit`.strip}" }}
|
2020-12-05 19:06:24 +00:00
|
|
|
CURRENT_VERSION = {{ "#{`git log -1 --format=%ci | awk '{print $1}' | sed s/-/./g`.strip}" }}
|
2019-06-23 13:39:14 +00:00
|
|
|
|
2019-05-09 16:52:37 +00: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 13:28:53 +00:00
|
|
|
SOFTWARE = {
|
|
|
|
"name" => "invidious",
|
|
|
|
"version" => "#{CURRENT_VERSION}-#{CURRENT_COMMIT}",
|
|
|
|
"branch" => "#{CURRENT_BRANCH}",
|
|
|
|
}
|
|
|
|
|
2021-09-26 21:03:45 +00:00
|
|
|
YT_POOL = YoutubeConnectionPool.new(YT_URL, capacity: CONFIG.pool_size, use_quic: CONFIG.use_quic)
|
2019-10-25 16:58:16 +00:00
|
|
|
|
2021-01-04 15:51:06 +00:00
|
|
|
# CLI
|
2019-04-06 13:28:53 +00:00
|
|
|
Kemal.config.extra_options do |parser|
|
|
|
|
parser.banner = "Usage: invidious [arguments]"
|
2021-01-04 15:51:06 +00:00
|
|
|
parser.on("-c THREADS", "--channel-threads=THREADS", "Number of threads for refreshing channels (default: #{CONFIG.channel_threads})") do |number|
|
2019-04-06 13:28:53 +00:00
|
|
|
begin
|
2021-01-04 15:51:06 +00:00
|
|
|
CONFIG.channel_threads = number.to_i
|
2019-04-06 13:28:53 +00:00
|
|
|
rescue ex
|
|
|
|
puts "THREADS must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2021-01-04 15:51:06 +00:00
|
|
|
parser.on("-f THREADS", "--feed-threads=THREADS", "Number of threads for refreshing feeds (default: #{CONFIG.feed_threads})") do |number|
|
2019-04-06 13:28:53 +00:00
|
|
|
begin
|
2021-01-04 15:51:06 +00:00
|
|
|
CONFIG.feed_threads = number.to_i
|
2019-04-06 13:28:53 +00:00
|
|
|
rescue ex
|
|
|
|
puts "THREADS must be integer"
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
2021-01-04 15:51:06 +00:00
|
|
|
parser.on("-o OUTPUT", "--output=OUTPUT", "Redirect output (default: #{CONFIG.output})") do |output|
|
|
|
|
CONFIG.output = output
|
2019-04-06 13:28:53 +00:00
|
|
|
end
|
2021-01-04 15:51:06 +00: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 15:05:35 +00:00
|
|
|
end
|
|
|
|
parser.on("-v", "--version", "Print version") do
|
2019-04-06 13:28:53 +00:00
|
|
|
puts SOFTWARE.to_pretty_json
|
|
|
|
exit
|
|
|
|
end
|
2022-03-11 19:51:12 +00:00
|
|
|
parser.on("--migrate", "Run any migrations (beta, use at your own risk!!") do
|
2022-02-12 04:43:16 +00:00
|
|
|
Invidious::Database::Migrator.new(PG_DB).migrate
|
|
|
|
exit
|
|
|
|
end
|
2019-04-06 13:28:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
Kemal::CLI.new ARGV
|
|
|
|
|
2021-01-04 15:51:06 +00:00
|
|
|
if CONFIG.output.upcase != "STDOUT"
|
|
|
|
FileUtils.mkdir_p(File.dirname(CONFIG.output))
|
2021-01-04 15:05:15 +00:00
|
|
|
end
|
2021-01-04 15:51:06 +00:00
|
|
|
OUTPUT = CONFIG.output.upcase == "STDOUT" ? STDOUT : File.open(CONFIG.output, mode: "a")
|
|
|
|
LOGGER = Invidious::LogHandler.new(OUTPUT, CONFIG.log_level)
|
2021-01-04 15:05:15 +00:00
|
|
|
|
2019-04-15 16:13:09 +00:00
|
|
|
# Check table integrity
|
2022-01-06 22:47:30 +00:00
|
|
|
Invidious::Database.check_integrity(CONFIG)
|
2018-03-26 03:18:29 +00:00
|
|
|
|
2022-02-08 02:05:49 +00:00
|
|
|
{% if !flag?(:skip_videojs_download) %}
|
2022-02-07 21:45:08 +00: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 08:38:22 +00:00
|
|
|
{% puts "\nChecking player dependencies, this may take more than 20 minutes... If it is stuck, check your internet connection.\n" %}
|
2022-02-07 21:45:08 +00: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 08:38:22 +00:00
|
|
|
{% puts "\nDone checking player dependencies, now compiling Invidious...\n" %}
|
2021-09-12 05:47:12 +00:00
|
|
|
{% end %}
|
|
|
|
|
2019-04-10 21:23:37 +00:00
|
|
|
# Start jobs
|
2019-05-15 17:26:29 +00:00
|
|
|
|
2021-01-23 18:41:50 +00: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 17:19:44 +00:00
|
|
|
|
|
|
|
DECRYPT_FUNCTION = DecryptFunction.new(CONFIG.decrypt_polling)
|
2021-01-23 18:39:04 +00:00
|
|
|
if CONFIG.decrypt_polling
|
2021-01-04 15:51:06 +00:00
|
|
|
Invidious::Jobs.register Invidious::Jobs::UpdateDecryptFunctionJob.new
|
2020-09-27 17:19:44 +00:00
|
|
|
end
|
2019-03-04 01:18:23 +00:00
|
|
|
|
2021-01-23 18:39:04 +00:00
|
|
|
if CONFIG.statistics_enabled
|
|
|
|
Invidious::Jobs.register Invidious::Jobs::StatisticsRefreshJob.new(PG_DB, SOFTWARE)
|
2020-10-17 12:25:57 +00:00
|
|
|
end
|
2019-08-27 13:08:26 +00:00
|
|
|
|
2021-01-23 18:39:04 +00: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 19:15:26 +00:00
|
|
|
end
|
|
|
|
|
2021-01-23 18:39:04 +00:00
|
|
|
if CONFIG.popular_enabled
|
2020-12-27 05:12:43 +00:00
|
|
|
Invidious::Jobs.register Invidious::Jobs::PullPopularVideosJob.new(PG_DB)
|
|
|
|
end
|
|
|
|
|
2022-02-23 05:20:09 +00: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 12:25:57 +00:00
|
|
|
|
2020-10-06 04:41:18 +00:00
|
|
|
Invidious::Jobs.start_all
|
|
|
|
|
|
|
|
def popular_videos
|
|
|
|
Invidious::Jobs::PullPopularVideosJob::POPULAR_VIDEOS.get
|
2018-11-09 02:08:03 +00:00
|
|
|
end
|
|
|
|
|
2022-08-09 22:52:09 +00:00
|
|
|
# Routing
|
2019-04-18 21:23:50 +00:00
|
|
|
|
2022-08-09 22:52:09 +00:00
|
|
|
before_all do |env|
|
|
|
|
Invidious::Routes::BeforeAll.handle(env)
|
2018-03-22 17:44:36 +00:00
|
|
|
end
|
|
|
|
|
2022-08-09 22:48:09 +00:00
|
|
|
Invidious::Routing.register_all
|
2021-07-22 04:34:16 +00:00
|
|
|
|
2018-02-10 15:15:23 +00:00
|
|
|
error 404 do |env|
|
2022-08-09 23:00:44 +00:00
|
|
|
Invidious::Routes::ErrorRoutes.error_404(env)
|
2017-12-30 21:21:43 +00:00
|
|
|
end
|
|
|
|
|
2020-11-30 09:59:21 +00:00
|
|
|
error 500 do |env, ex|
|
|
|
|
error_template(500, ex)
|
2017-12-30 21:21:43 +00:00
|
|
|
end
|
|
|
|
|
2021-09-25 02:15:23 +00:00
|
|
|
static_headers do |response|
|
2019-05-08 13:58:10 +00:00
|
|
|
response.headers.add("Cache-Control", "max-age=2629800")
|
2018-03-09 17:28:57 +00:00
|
|
|
end
|
|
|
|
|
2022-08-09 22:52:09 +00:00
|
|
|
# Init Kemal
|
|
|
|
|
2017-11-23 07:48:55 +00:00
|
|
|
public_folder "assets"
|
2018-04-16 03:56:58 +00:00
|
|
|
|
2018-07-30 23:42:45 +00:00
|
|
|
Kemal.config.powered_by_header = false
|
2018-04-16 03:56:58 +00:00
|
|
|
add_handler FilteredCompressHandler.new
|
2019-02-03 04:48:47 +00:00
|
|
|
add_handler APIHandler.new
|
2019-04-18 21:23:50 +00:00
|
|
|
add_handler AuthHandler.new
|
2019-03-23 15:24:30 +00:00
|
|
|
add_handler DenyFrame.new
|
2019-04-18 21:23:50 +00:00
|
|
|
add_context_storage_type(Array(String))
|
2019-02-24 15:49:48 +00:00
|
|
|
add_context_storage_type(Preferences)
|
2022-02-04 03:09:07 +00:00
|
|
|
add_context_storage_type(Invidious::User)
|
2017-11-23 07:48:55 +00:00
|
|
|
|
2021-01-04 15:51:06 +00:00
|
|
|
Kemal.config.logger = LOGGER
|
2019-09-23 17:05:29 +00: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 07:42:15 +00:00
|
|
|
Kemal.config.app_name = "Invidious"
|
2021-10-11 12:42:22 +00: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 07:48:55 +00:00
|
|
|
Kemal.run
|