2019-01-28 13:58:47 -07:00
using CommandLine ;
2019-01-28 14:45:00 -07:00
using Emby.Server.Implementations ;
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-01-29 06:34:59 -07:00
[Option('d', "datadir", Required = false, HelpText = "Path to use for the data folder (database files, etc.).")]
2019-01-28 13:58:47 -07:00
public string DataDir { get ; set ; }
2019-01-28 06:41:37 -07:00
2019-02-01 11:52:39 -07:00
[Option('C', "cachedir", Required = false, HelpText = "Path to use for caching.")]
2019-02-01 10:15:35 -07:00
public string CacheDir { get ; set ; }
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-01-28 13:58:47 -07:00
public string ConfigDir { get ; set ; }
2019-01-28 06:41:37 -07:00
[Option('l', "logdir", Required = false, HelpText = "Path to use for writing log files.")]
2019-01-28 13:58:47 -07:00
public string LogDir { get ; set ; }
2019-01-28 06:41:37 -07:00
2019-01-29 06:34:59 -07:00
[Option("ffmpeg", Required = false, HelpText = "Path to external FFmpeg executable to use in place of default found in PATH. Must be specified along with --ffprobe.")]
2019-01-28 13:58:47 -07:00
public string FFmpegPath { get ; set ; }
2019-01-28 06:41:37 -07:00
2019-01-29 06:34:59 -07:00
[Option("ffprobe", Required = false, HelpText = "Path to external FFprobe executable to use in place of default found in PATH. Must be specified along with --ffmpeg.")]
2019-01-28 13:58:47 -07:00
public string FFprobePath { get ; set ; }
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-01-28 06:41:37 -07:00
[Option("noautorunwebapp", Required = false, HelpText = "Run headless if startup wizard is complete.")]
2019-01-28 14:45:00 -07:00
public bool NoAutoRunWebApp { get ; set ; }
2014-09-14 08:26:33 -07:00
2019-01-28 06:41:37 -07:00
[Option("package-name", Required = false, HelpText = "Used when packaging Jellyfin (example, synology).")]
public string PackageName { get ; set ; }
2014-09-14 08:26:33 -07:00
2019-01-29 06:34:59 -07:00
[Option("restartpath", Required = false, HelpText = "Path to restart script.")]
2019-01-28 06:41:37 -07:00
public string RestartPath { get ; set ; }
2014-09-14 08:26:33 -07:00
2019-01-28 06:41:37 -07:00
[Option("restartargs", Required = false, HelpText = "Arguments for restart script.")]
public string RestartArgs { get ; set ; }
2014-09-14 08:26:33 -07:00
}
2019-01-28 13:58:47 -07:00
}