2020-03-15 14:34:09 +00: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 14:34:09 +00: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 15:26:33 +00:00
{
2019-08-11 13:11:53 +00: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 21:58:23 +00:00
public string? DataDir { get ; set ; }
2019-01-28 13:41:37 +00:00
2020-03-15 14:31:43 +00:00
/// <summary>
/// Gets or sets a value indicating whether the server should not host static web content.
/// </summary>
2020-03-15 16:43:52 +00:00
[Option(ConfigurationExtensions.NoWebContentKey, Required = false, HelpText = "Indicates that the web server should not host any static web content.")]
2020-03-15 14:31:43 +00:00
public bool NoWebContent { get ; set ; }
2019-08-11 13:11:53 +00:00
/// <summary>
/// Gets or sets the path to the web directory.
/// </summary>
/// <value>The path to the web directory.</value>
2019-03-12 13:18:45 +00:00
[Option('w', "webdir", Required = false, HelpText = "Path to the Jellyfin web UI resources.")]
2019-10-26 21:58:23 +00:00
public string? WebDir { get ; set ; }
2019-03-10 20:17:48 +00:00
2019-08-11 13:11:53 +00:00
/// <summary>
/// Gets or sets the path to the cache directory.
/// </summary>
/// <value>The path to the cache directory.</value>
2019-02-01 18:52:39 +00:00
[Option('C', "cachedir", Required = false, HelpText = "Path to use for caching.")]
2019-10-26 21:58:23 +00:00
public string? CacheDir { get ; set ; }
2019-02-01 17:15:35 +00:00
2019-08-11 13:11:53 +00: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 21:58:23 +00:00
public string? ConfigDir { get ; set ; }
2019-01-28 13:41:37 +00:00
2019-08-11 13:11:53 +00: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 21:58:23 +00:00
public string? LogDir { get ; set ; }
2019-01-28 13:41:37 +00:00
2019-08-11 13:11:53 +00: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 21:58:23 +00:00
public string? FFmpegPath { get ; set ; }
2019-01-28 13:41:37 +00:00
2019-08-11 13:11:53 +00: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 21:06:00 +00:00
2019-08-11 13:11:53 +00: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 15:26:33 +00:00
2019-08-11 13:11:53 +00: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 21:58:23 +00:00
public string? PackageName { get ; set ; }
2014-09-14 15:26:33 +00:00
2019-08-11 13:11:53 +00:00
/// <inheritdoc />
2019-01-29 13:34:59 +00:00
[Option("restartpath", Required = false, HelpText = "Path to restart script.")]
2019-10-26 21:58:23 +00:00
public string? RestartPath { get ; set ; }
2014-09-14 15:26:33 +00:00
2019-08-11 13:11:53 +00:00
/// <inheritdoc />
2019-01-28 13:41:37 +00:00
[Option("restartargs", Required = false, HelpText = "Arguments for restart script.")]
2019-10-26 21:58:23 +00:00
public string? RestartArgs { get ; set ; }
2020-03-15 14:34:09 +00: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 ( )
2020-03-17 13:19:43 +00:00
{
var config = new Dictionary < string , string > ( ) ;
if ( NoWebContent )
2020-03-15 14:34:09 +00:00
{
2020-03-17 13:19:43 +00:00
config . Add ( ConfigurationExtensions . NoWebContentKey , bool . TrueString ) ;
}
return config ;
}
2014-09-14 15:26:33 +00:00
}
2019-01-28 20:58:47 +00:00
}