2019-01-28 20:58:47 +00:00
|
|
|
using CommandLine;
|
|
|
|
using Emby.Server.Implementations.ParsedStartupOptions;
|
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-01-28 14:51:31 +00:00
|
|
|
[Option('d', "datadir", Required = false, HelpText = "Path to use for the data folder (databases files etc.).")]
|
2019-01-28 20:58:47 +00:00
|
|
|
public string DataDir { get; set; }
|
2019-01-28 13:41:37 +00:00
|
|
|
|
|
|
|
[Option('c', "configdir", Required = false, HelpText = "Path to use for config data (user policies and puctures).")]
|
2019-01-28 20:58:47 +00:00
|
|
|
public string ConfigDir { get; set; }
|
2019-01-28 13:41:37 +00:00
|
|
|
|
|
|
|
[Option('l', "logdir", Required = false, HelpText = "Path to use for writing log files.")]
|
2019-01-28 20:58:47 +00:00
|
|
|
public string LogDir { get; set; }
|
2019-01-28 13:41:37 +00:00
|
|
|
|
|
|
|
[Option("ffmpeg", Required = false, HelpText = "Path to external FFmpeg exe to use in place of built-in.")]
|
2019-01-28 20:58:47 +00:00
|
|
|
public string FFmpegPath { get; set; }
|
2019-01-28 13:41:37 +00:00
|
|
|
|
|
|
|
[Option("ffprobe", Required = false, HelpText = "ffmpeg and ffprobe switches must be supplied together.")]
|
2019-01-28 20:58:47 +00:00
|
|
|
public string FFprobePath { get; set; }
|
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-01-28 13:41:37 +00:00
|
|
|
[Option("noautorunwebapp", Required = false, HelpText = "Run headless if startup wizard is complete.")]
|
2019-01-28 20:58:47 +00:00
|
|
|
public bool AutoRunWebApp { get => !NoautoRunWebApp; set => NoautoRunWebApp = value; }
|
2014-09-14 15:26:33 +00:00
|
|
|
|
2019-01-28 13:41:37 +00:00
|
|
|
[Option("package-name", Required = false, HelpText = "Used when packaging Jellyfin (example, synology).")]
|
|
|
|
public string PackageName { get; set; }
|
2014-09-14 15:26:33 +00:00
|
|
|
|
2019-01-28 13:41:37 +00:00
|
|
|
[Option("restartpath", Required = false, HelpText = "Path to reset script.")]
|
|
|
|
public string RestartPath { get; set; }
|
2014-09-14 15:26:33 +00:00
|
|
|
|
2019-01-28 13:41:37 +00:00
|
|
|
[Option("restartargs", Required = false, HelpText = "Arguments for restart script.")]
|
|
|
|
public string RestartArgs { get; set; }
|
2019-01-28 20:58:47 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether to run not run the web app.
|
|
|
|
/// Command line switch is --noautorunwebapp, which we store privately here, but provide inverse (AutoRunWebApp) for users.
|
|
|
|
/// </summary>
|
|
|
|
private bool NoautoRunWebApp { get; set; }
|
2014-09-14 15:26:33 +00:00
|
|
|
}
|
2019-01-28 20:58:47 +00:00
|
|
|
}
|