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"
|
2022-04-11 02:23:03 +05:30
|
|
|
|
|
|
|
# Require kemal, kilt, then our own overrides
|
2017-11-23 13:18:55 +05:30
|
|
|
require "kemal"
|
2022-04-11 02:23:03 +05:30
|
|
|
require "kilt"
|
|
|
|
require "./ext/kemal_content_for.cr"
|
2022-04-11 02:37:06 +05:30
|
|
|
require "./ext/kemal_static_file_handler.cr"
|
2022-04-11 02:23:03 +05:30
|
|
|
|
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/*"
|
2022-02-11 09:46:40 +05:30
|
|
|
require "./invidious/database/migrations/*"
|
2018-08-05 02:00:44 +05:30
|
|
|
require "./invidious/helpers/*"
|
2021-10-08 02:02:04 +05:30
|
|
|
require "./invidious/yt_backend/*"
|
2022-02-22 22:12:41 +05:30
|
|
|
require "./invidious/frontend/*"
|
|
|
|
|
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/*"
|
2022-03-07 05:22:54 +05:30
|
|
|
require "./invidious/search/*"
|
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
|
|
|
|
2022-02-04 08:14:10 +05:30
|
|
|
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 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
|
2022-03-12 01:21:12 +05:30
|
|
|
parser.on("--migrate", "Run any migrations (beta, use at your own risk!!") do
|
2022-02-12 10:13:16 +05:30
|
|
|
Invidious::Database::Migrator.new(PG_DB).migrate
|
|
|
|
exit
|
|
|
|
end
|
2019-04-06 18:58:53 +05:30
|
|
|
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
|
|
|
|
2022-02-08 07:35:49 +05:30
|
|
|
{% if !flag?(:skip_videojs_download) %}
|
2022-02-08 03:15:08 +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?
|
|
|
|
|
2022-07-12 14:08:22 +05:30
|
|
|
{% puts "\nChecking player dependencies, this may take more than 20 minutes... If it is stuck, check your internet connection.\n" %}
|
2022-02-08 03:15:08 +05:30
|
|
|
{% 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 14:08:22 +05:30
|
|
|
{% puts "\nDone checking player dependencies, now compiling Invidious...\n" %}
|
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
|
|
|
|
|
2022-02-23 10:50:09 +05:30
|
|
|
CONNECTION_CHANNEL = Channel({Bool, Channel(PQ::Notification)}).new(32)
|
|
|
|
Invidious::Jobs.register Invidious::Jobs::NotificationJob.new(CONNECTION_CHANNEL, CONFIG.database_url)
|
2020-10-17 17:55:57 +05:30
|
|
|
|
2022-10-12 13:36:36 +05:30
|
|
|
Invidious::Jobs.register Invidious::Jobs::ClearExpiredItemsJob.new
|
|
|
|
|
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
|
|
|
|
|
2022-08-10 04:22:09 +05:30
|
|
|
# Routing
|
2019-04-19 02:53:50 +05:30
|
|
|
|
2022-08-10 04:22:09 +05:30
|
|
|
before_all do |env|
|
|
|
|
Invidious::Routes::BeforeAll.handle(env)
|
2018-03-22 23:14:36 +05:30
|
|
|
end
|
|
|
|
|
2022-08-10 04:18:09 +05:30
|
|
|
Invidious::Routing.register_all
|
2021-07-22 10:04:16 +05:30
|
|
|
|
2018-02-10 20:45:23 +05:30
|
|
|
error 404 do |env|
|
2022-08-10 04:30:44 +05:30
|
|
|
Invidious::Routes::ErrorRoutes.error_404(env)
|
2017-12-31 02:51:43 +05:30
|
|
|
end
|
|
|
|
|
2020-11-30 15:29:21 +05:30
|
|
|
error 500 do |env, ex|
|
|
|
|
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
|
|
|
|
|
2022-08-10 04:22:09 +05:30
|
|
|
# Init Kemal
|
|
|
|
|
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)
|
2022-02-04 08:39:07 +05:30
|
|
|
add_context_storage_type(Invidious::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
|