using System.Collections.Generic;
using CommandLine;
using Emby.Server.Implementations;
using Emby.Server.Implementations.Updates;
using MediaBrowser.Controller.Extensions;
namespace Jellyfin.Server
{
///
/// Class used by CommandLine package when parsing the command line arguments.
///
public class StartupOptions : IStartupOptions
{
///
/// Gets or sets the path to the data directory.
///
/// The path to the data directory.
[Option('d', "datadir", Required = false, HelpText = "Path to use for the data folder (database files, etc.).")]
public string? DataDir { get; set; }
///
/// Gets or sets a value indicating whether the server should not host the web client.
///
[Option("nowebclient", Required = false, HelpText = "Indicates that the web server should not host the web client.")]
public bool NoWebClient { get; set; }
///
/// Gets or sets the path to the web directory.
///
/// The path to the web directory.
[Option('w', "webdir", Required = false, HelpText = "Path to the Jellyfin web UI resources.")]
public string? WebDir { get; set; }
///
/// Gets or sets the path to the cache directory.
///
/// The path to the cache directory.
[Option('C', "cachedir", Required = false, HelpText = "Path to use for caching.")]
public string? CacheDir { get; set; }
///
/// Gets or sets the path to the config directory.
///
/// The path to the config directory.
[Option('c', "configdir", Required = false, HelpText = "Path to use for configuration data (user settings and pictures).")]
public string? ConfigDir { get; set; }
///
/// Gets or sets the path to the log directory.
///
/// The path to the log directory.
[Option('l', "logdir", Required = false, HelpText = "Path to use for writing log files.")]
public string? LogDir { get; set; }
///
[Option("ffmpeg", Required = false, HelpText = "Path to external FFmpeg executable to use in place of default found in PATH.")]
public string? FFmpegPath { get; set; }
///
[Option("service", Required = false, HelpText = "Run as headless service.")]
public bool IsService { get; set; }
///
[Option("noautorunwebapp", Required = false, HelpText = "Run headless if startup wizard is complete.")]
public bool NoAutoRunWebApp { get; set; }
///
[Option("package-name", Required = false, HelpText = "Used when packaging Jellyfin (example, synology).")]
public string? PackageName { get; set; }
///
[Option("restartpath", Required = false, HelpText = "Path to restart script.")]
public string? RestartPath { get; set; }
///
[Option("restartargs", Required = false, HelpText = "Arguments for restart script.")]
public string? RestartArgs { get; set; }
///
[Option("plugin-manifest-url", Required = false, HelpText = "A custom URL for the plugin repository JSON manifest")]
public string? PluginManifestUrl { get; set; }
///
/// Gets the command line options as a dictionary that can be used in the .NET configuration system.
///
/// The configuration dictionary.
public Dictionary ConvertToConfig()
{
var config = new Dictionary();
if (PluginManifestUrl != null)
{
config.Add(InstallationManager.PluginManifestUrlKey, PluginManifestUrl);
}
if (NoWebClient)
{
config.Add(ConfigurationExtensions.HostWebClientKey, bool.FalseString);
}
return config;
}
}
}