2020-03-15 15:34:09 +01:00
using System.Collections.Generic ;
using System.Globalization ;
2019-01-28 20:58:47 +00:00
using CommandLine ;
2019-01-28 21:45:00 +00:00
using Emby.Server.Implementations ;
2020-03-15 15:34:09 +01:00
using MediaBrowser.Controller.Extensions ;
2019-01-28 13:41:37 +00:00
2019-01-28 20:58:47 +00:00
namespace Jellyfin.Server
{
2019-01-28 13:41:37 +00:00
/// <summary>
/// Class used by CommandLine package when parsing the command line arguments.
/// </summary>
2019-01-28 20:58:47 +00:00
public class StartupOptions : IStartupOptions
2014-09-14 11:26:33 -04:00
{
2019-08-11 15:11:53 +02:00
/// <summary>
/// Gets or sets the path to the data directory.
/// </summary>
/// <value>The path to the data directory.</value>
2019-01-29 13:34:59 +00:00
[Option('d', "datadir", Required = false, HelpText = "Path to use for the data folder (database files, etc.).")]
2019-10-26 23:58:23 +02:00
public string? DataDir { get ; set ; }
2019-01-28 13:41:37 +00:00
2020-03-15 15:31:43 +01:00
/// <summary>
/// Gets or sets a value indicating whether the server should not host static web content.
/// </summary>
2020-03-15 17:43:52 +01:00
[Option(ConfigurationExtensions.NoWebContentKey, Required = false, HelpText = "Indicates that the web server should not host any static web content.")]
2020-03-15 15:31:43 +01:00
public bool NoWebContent { get ; set ; }
2019-08-11 15:11:53 +02:00
/// <summary>
/// Gets or sets the path to the web directory.
/// </summary>
/// <value>The path to the web directory.</value>
2019-03-12 09:18:45 -04:00
[Option('w', "webdir", Required = false, HelpText = "Path to the Jellyfin web UI resources.")]
2019-10-26 23:58:23 +02:00
public string? WebDir { get ; set ; }
2019-03-10 16:17:48 -04:00
2019-08-11 15:11:53 +02:00
/// <summary>
/// Gets or sets the path to the cache directory.
/// </summary>
/// <value>The path to the cache directory.</value>
2019-02-01 19:52:39 +01:00
[Option('C', "cachedir", Required = false, HelpText = "Path to use for caching.")]
2019-10-26 23:58:23 +02:00
public string? CacheDir { get ; set ; }
2019-02-01 18:15:35 +01:00
2019-08-11 15:11:53 +02:00
/// <summary>
/// Gets or sets the path to the config directory.
/// </summary>
/// <value>The path to the config directory.</value>
2019-01-29 13:34:59 +00:00
[Option('c', "configdir", Required = false, HelpText = "Path to use for configuration data (user settings and pictures).")]
2019-10-26 23:58:23 +02:00
public string? ConfigDir { get ; set ; }
2019-01-28 13:41:37 +00:00
2019-08-11 15:11:53 +02:00
/// <summary>
/// Gets or sets the path to the log directory.
/// </summary>
/// <value>The path to the log directory.</value>
2019-01-28 13:41:37 +00:00
[Option('l', "logdir", Required = false, HelpText = "Path to use for writing log files.")]
2019-10-26 23:58:23 +02:00
public string? LogDir { get ; set ; }
2019-01-28 13:41:37 +00:00
2019-08-11 15:11:53 +02:00
/// <inheritdoc />
2019-02-28 22:06:56 +00:00
[Option("ffmpeg", Required = false, HelpText = "Path to external FFmpeg executable to use in place of default found in PATH.")]
2019-10-26 23:58:23 +02:00
public string? FFmpegPath { get ; set ; }
2019-01-28 13:41:37 +00:00
2019-08-11 15:11:53 +02:00
/// <inheritdoc />
2019-01-28 13:41:37 +00:00
[Option("service", Required = false, HelpText = "Run as headless service.")]
2019-01-28 20:58:47 +00:00
public bool IsService { get ; set ; }
2016-11-18 16:06:00 -05:00
2019-08-11 15:11:53 +02:00
/// <inheritdoc />
2019-01-28 13:41:37 +00:00
[Option("noautorunwebapp", Required = false, HelpText = "Run headless if startup wizard is complete.")]
2019-01-28 21:45:00 +00:00
public bool NoAutoRunWebApp { get ; set ; }
2014-09-14 11:26:33 -04:00
2019-08-11 15:11:53 +02:00
/// <inheritdoc />
2019-01-28 13:41:37 +00:00
[Option("package-name", Required = false, HelpText = "Used when packaging Jellyfin (example, synology).")]
2019-10-26 23:58:23 +02:00
public string? PackageName { get ; set ; }
2014-09-14 11:26:33 -04:00
2019-08-11 15:11:53 +02:00
/// <inheritdoc />
2019-01-29 13:34:59 +00:00
[Option("restartpath", Required = false, HelpText = "Path to restart script.")]
2019-10-26 23:58:23 +02:00
public string? RestartPath { get ; set ; }
2014-09-14 11:26:33 -04:00
2019-08-11 15:11:53 +02:00
/// <inheritdoc />
2019-01-28 13:41:37 +00:00
[Option("restartargs", Required = false, HelpText = "Arguments for restart script.")]
2019-10-26 23:58:23 +02:00
public string? RestartArgs { get ; set ; }
2020-03-15 15:34:09 +01: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>
public Dictionary < string , string > ConvertToConfig ( )
= > new Dictionary < string , string >
{
{ ConfigurationExtensions . NoWebContentKey , NoWebContent . ToString ( CultureInfo . InvariantCulture ) }
} ;
2014-09-14 11:26:33 -04:00
}
2019-01-28 20:58:47 +00:00
}