|
|
@ -107,8 +107,6 @@ LOCALES = {
|
|
|
|
YT_POOL = QUICPool.new(YT_URL, capacity: CONFIG.pool_size, timeout: 2.0)
|
|
|
|
YT_POOL = QUICPool.new(YT_URL, capacity: CONFIG.pool_size, timeout: 2.0)
|
|
|
|
|
|
|
|
|
|
|
|
config = CONFIG
|
|
|
|
config = CONFIG
|
|
|
|
output = STDOUT
|
|
|
|
|
|
|
|
loglvl = LogLevel::Debug
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Kemal.config.extra_options do |parser|
|
|
|
|
Kemal.config.extra_options do |parser|
|
|
|
|
parser.banner = "Usage: invidious [arguments]"
|
|
|
|
parser.banner = "Usage: invidious [arguments]"
|
|
|
@ -128,12 +126,11 @@ Kemal.config.extra_options do |parser|
|
|
|
|
exit
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
parser.on("-o OUTPUT", "--output=OUTPUT", "Redirect output (default: STDOUT)") do |output_arg|
|
|
|
|
parser.on("-o OUTPUT", "--output=OUTPUT", "Redirect output (default: #{config.output})") do |output|
|
|
|
|
FileUtils.mkdir_p(File.dirname(output_arg))
|
|
|
|
config.output = output
|
|
|
|
output = File.open(output_arg, mode: "a")
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
parser.on("-l LEVEL", "--log-level=LEVEL", "Log level, one of #{LogLevel.values} (default: #{loglvl})") do |loglvl_arg|
|
|
|
|
parser.on("-l LEVEL", "--log-level=LEVEL", "Log level, one of #{LogLevel.values} (default: #{config.log_level})") do |log_level|
|
|
|
|
loglvl = LogLevel.parse(loglvl_arg)
|
|
|
|
config.log_level = LogLevel.parse(log_level)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
parser.on("-v", "--version", "Print version") do
|
|
|
|
parser.on("-v", "--version", "Print version") do
|
|
|
|
puts SOFTWARE.to_pretty_json
|
|
|
|
puts SOFTWARE.to_pretty_json
|
|
|
@ -143,7 +140,14 @@ end
|
|
|
|
|
|
|
|
|
|
|
|
Kemal::CLI.new ARGV
|
|
|
|
Kemal::CLI.new ARGV
|
|
|
|
|
|
|
|
|
|
|
|
logger = Invidious::LogHandler.new(output, loglvl)
|
|
|
|
if config.output.upcase == "STDOUT"
|
|
|
|
|
|
|
|
output = STDOUT
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
FileUtils.mkdir_p(File.dirname(config.output))
|
|
|
|
|
|
|
|
output = File.open(config.output, mode: "a")
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logger = Invidious::LogHandler.new(output, config.log_level)
|
|
|
|
|
|
|
|
|
|
|
|
# Check table integrity
|
|
|
|
# Check table integrity
|
|
|
|
if CONFIG.check_tables
|
|
|
|
if CONFIG.check_tables
|
|
|
|