jellyfin/Jellyfin.Server/StartupOptions.cs

97 lines
3.7 KiB
C#
Raw Normal View History

using System.Collections.Generic;
using CommandLine;
using Emby.Server.Implementations;
2022-02-14 08:39:33 -05:00
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
namespace Jellyfin.Server
{
/// <summary>
/// Class used by CommandLine package when parsing the command line arguments.
/// </summary>
public class StartupOptions : IStartupOptions
2014-09-14 11:26:33 -04:00
{
/// <summary>
/// Gets or sets the path to the data directory.
/// </summary>
/// <value>The path to the data directory.</value>
[Option('d', "datadir", Required = false, HelpText = "Path to use for the data folder (database files, etc.).")]
public string? DataDir { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the server should not host the web client.
/// </summary>
[Option("nowebclient", Required = false, HelpText = "Indicates that the web server should not host the web client.")]
public bool NoWebClient { get; set; }
/// <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.")]
public string? WebDir { get; set; }
/// <summary>
/// Gets or sets the path to the cache directory.
/// </summary>
/// <value>The path to the cache directory.</value>
2019-02-01 13:52:39 -05:00
[Option('C', "cachedir", Required = false, HelpText = "Path to use for caching.")]
public string? CacheDir { get; set; }
2019-02-01 12:15:35 -05:00
/// <summary>
/// Gets or sets the path to the config directory.
/// </summary>
/// <value>The path to the config directory.</value>
[Option('c', "configdir", Required = false, HelpText = "Path to use for configuration data (user settings and pictures).")]
public string? ConfigDir { get; set; }
/// <summary>
/// Gets or sets the path to the log directory.
/// </summary>
/// <value>The path to the log directory.</value>
[Option('l', "logdir", Required = false, HelpText = "Path to use for writing log files.")]
public string? LogDir { get; set; }
/// <inheritdoc />
2019-02-28 17:06:56 -05:00
[Option("ffmpeg", Required = false, HelpText = "Path to external FFmpeg executable to use in place of default found in PATH.")]
public string? FFmpegPath { get; set; }
/// <inheritdoc />
[Option("service", Required = false, HelpText = "Run as headless service.")]
public bool IsService { get; set; }
2016-11-18 16:06:00 -05:00
/// <inheritdoc />
[Option("package-name", Required = false, HelpText = "Used when packaging Jellyfin (example, synology).")]
public string? PackageName { get; set; }
2014-09-14 11:26:33 -04:00
2020-05-02 12:56:09 -04:00
/// <inheritdoc />
[Option("published-server-url", Required = false, HelpText = "Jellyfin Server URL to publish via auto discover process")]
2021-02-27 15:12:55 -05:00
public string? PublishedServerUrl { get; set; }
2020-05-02 12:56:09 -04: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>
2022-10-13 12:10:55 -04:00
public Dictionary<string, string?> ConvertToConfig()
{
2022-10-13 12:10:55 -04:00
var config = new Dictionary<string, string?>();
if (NoWebClient)
{
2022-02-14 08:39:33 -05:00
config.Add(HostWebClientKey, bool.FalseString);
}
2022-12-05 09:01:13 -05:00
if (PublishedServerUrl is not null)
2020-05-02 12:56:09 -04:00
{
2022-02-14 08:39:33 -05:00
config.Add(AddressOverrideKey, PublishedServerUrl);
2020-05-02 12:56:09 -04:00
}
2022-12-05 09:01:13 -05:00
if (FFmpegPath is not null)
{
2022-02-14 08:39:33 -05:00
config.Add(FfmpegPathKey, FFmpegPath);
}
return config;
}
2014-09-14 11:26:33 -04:00
}
}