2020-03-15 07:34:09 -07:00
|
|
|
using System.Collections.Generic;
|
2019-01-28 13:58:47 -07:00
|
|
|
using CommandLine;
|
2019-01-28 14:45:00 -07:00
|
|
|
using Emby.Server.Implementations;
|
2022-02-14 06:39:33 -07:00
|
|
|
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
|
2019-01-28 06:41:37 -07:00
|
|
|
|
2019-01-28 13:58:47 -07:00
|
|
|
namespace Jellyfin.Server
|
|
|
|
{
|
2019-01-28 06:41:37 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Class used by CommandLine package when parsing the command line arguments.
|
|
|
|
/// </summary>
|
2019-01-28 13:58:47 -07:00
|
|
|
public class StartupOptions : IStartupOptions
|
2014-09-14 08:26:33 -07:00
|
|
|
{
|
2019-08-11 06:11:53 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the path to the data directory.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The path to the data directory.</value>
|
2019-01-29 06:34:59 -07:00
|
|
|
[Option('d', "datadir", Required = false, HelpText = "Path to use for the data folder (database files, etc.).")]
|
2019-10-26 14:58:23 -07:00
|
|
|
public string? DataDir { get; set; }
|
2019-01-28 06:41:37 -07:00
|
|
|
|
2020-03-15 07:31:43 -07:00
|
|
|
/// <summary>
|
2020-03-21 10:25:09 -07:00
|
|
|
/// Gets or sets a value indicating whether the server should not host the web client.
|
2020-03-15 07:31:43 -07:00
|
|
|
/// </summary>
|
2020-03-21 10:25:09 -07:00
|
|
|
[Option("nowebclient", Required = false, HelpText = "Indicates that the web server should not host the web client.")]
|
|
|
|
public bool NoWebClient { get; set; }
|
2020-03-15 07:31:43 -07:00
|
|
|
|
2019-08-11 06:11:53 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the path to the web directory.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The path to the web directory.</value>
|
2019-03-12 06:18:45 -07:00
|
|
|
[Option('w', "webdir", Required = false, HelpText = "Path to the Jellyfin web UI resources.")]
|
2019-10-26 14:58:23 -07:00
|
|
|
public string? WebDir { get; set; }
|
2019-03-10 13:17:48 -07:00
|
|
|
|
2019-08-11 06:11:53 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the path to the cache directory.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The path to the cache directory.</value>
|
2019-02-01 11:52:39 -07:00
|
|
|
[Option('C', "cachedir", Required = false, HelpText = "Path to use for caching.")]
|
2019-10-26 14:58:23 -07:00
|
|
|
public string? CacheDir { get; set; }
|
2019-02-01 10:15:35 -07:00
|
|
|
|
2019-08-11 06:11:53 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the path to the config directory.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The path to the config directory.</value>
|
2019-01-29 06:34:59 -07:00
|
|
|
[Option('c', "configdir", Required = false, HelpText = "Path to use for configuration data (user settings and pictures).")]
|
2019-10-26 14:58:23 -07:00
|
|
|
public string? ConfigDir { get; set; }
|
2019-01-28 06:41:37 -07:00
|
|
|
|
2019-08-11 06:11:53 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the path to the log directory.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The path to the log directory.</value>
|
2019-01-28 06:41:37 -07:00
|
|
|
[Option('l', "logdir", Required = false, HelpText = "Path to use for writing log files.")]
|
2019-10-26 14:58:23 -07:00
|
|
|
public string? LogDir { get; set; }
|
2019-01-28 06:41:37 -07:00
|
|
|
|
2019-08-11 06:11:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-02-28 15:06:56 -07:00
|
|
|
[Option("ffmpeg", Required = false, HelpText = "Path to external FFmpeg executable to use in place of default found in PATH.")]
|
2019-10-26 14:58:23 -07:00
|
|
|
public string? FFmpegPath { get; set; }
|
2019-01-28 06:41:37 -07:00
|
|
|
|
2019-08-11 06:11:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-28 06:41:37 -07:00
|
|
|
[Option("service", Required = false, HelpText = "Run as headless service.")]
|
2019-01-28 13:58:47 -07:00
|
|
|
public bool IsService { get; set; }
|
2016-11-18 14:06:00 -07:00
|
|
|
|
2019-08-11 06:11:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-28 06:41:37 -07:00
|
|
|
[Option("package-name", Required = false, HelpText = "Used when packaging Jellyfin (example, synology).")]
|
2019-10-26 14:58:23 -07:00
|
|
|
public string? PackageName { get; set; }
|
2014-09-14 08:26:33 -07:00
|
|
|
|
2020-05-02 09:56:09 -07:00
|
|
|
/// <inheritdoc />
|
2020-05-20 01:05:51 -07:00
|
|
|
[Option("published-server-url", Required = false, HelpText = "Jellyfin Server URL to publish via auto discover process")]
|
2021-02-27 13:12:55 -07:00
|
|
|
public string? PublishedServerUrl { get; set; }
|
2020-05-02 09:56:09 -07:00
|
|
|
|
2024-09-09 12:17:10 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether the server should not detect network status change.
|
|
|
|
/// </summary>
|
|
|
|
[Option("nonetchange", Required = false, HelpText = "Indicates that the server should not detect network status change.")]
|
|
|
|
public bool NoDetectNetworkChange { get; set; }
|
|
|
|
|
2020-03-15 07:34:09 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the command line options as a dictionary that can be used in the .NET configuration system.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>The configuration dictionary.</returns>
|
2022-10-13 09:10:55 -07:00
|
|
|
public Dictionary<string, string?> ConvertToConfig()
|
2020-03-17 06:19:43 -07:00
|
|
|
{
|
2022-10-13 09:10:55 -07:00
|
|
|
var config = new Dictionary<string, string?>();
|
2020-03-17 06:19:43 -07:00
|
|
|
|
2020-03-21 10:25:09 -07:00
|
|
|
if (NoWebClient)
|
2020-03-15 07:34:09 -07:00
|
|
|
{
|
2022-02-14 06:39:33 -07:00
|
|
|
config.Add(HostWebClientKey, bool.FalseString);
|
2020-03-17 06:19:43 -07:00
|
|
|
}
|
|
|
|
|
2022-12-05 07:01:13 -07:00
|
|
|
if (PublishedServerUrl is not null)
|
2020-05-02 09:56:09 -07:00
|
|
|
{
|
2022-02-14 06:39:33 -07:00
|
|
|
config.Add(AddressOverrideKey, PublishedServerUrl);
|
2020-05-02 09:56:09 -07:00
|
|
|
}
|
|
|
|
|
2022-12-05 07:01:13 -07:00
|
|
|
if (FFmpegPath is not null)
|
2020-06-29 09:08:20 -07:00
|
|
|
{
|
2022-02-14 06:39:33 -07:00
|
|
|
config.Add(FfmpegPathKey, FFmpegPath);
|
2020-06-29 09:08:20 -07:00
|
|
|
}
|
|
|
|
|
2024-09-09 12:17:10 -07:00
|
|
|
if (NoDetectNetworkChange)
|
|
|
|
{
|
|
|
|
config.Add(DetectNetworkChangeKey, bool.FalseString);
|
|
|
|
}
|
|
|
|
|
2020-03-17 06:19:43 -07:00
|
|
|
return config;
|
|
|
|
}
|
2014-09-14 08:26:33 -07:00
|
|
|
}
|
2019-01-28 13:58:47 -07:00
|
|
|
}
|