aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/StartupOptions.cs
blob: 4890ccbb2e89cbc1d9cc4f3625a216c8f7beb0e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
using System.Collections.Generic;
using CommandLine;
using Emby.Server.Implementations;
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
    {
        /// <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>
        [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>
        [Option('C', "cachedir", Required = false, HelpText = "Path to use for caching.")]
        public string? CacheDir { get; set; }

        /// <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 />
        [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; }

        /// <inheritdoc />
        [Option("package-name", Required = false, HelpText = "Used when packaging Jellyfin (example, synology).")]
        public string? PackageName { get; set; }

        /// <inheritdoc />
        [Option("published-server-url", Required = false, HelpText = "Jellyfin Server URL to publish via auto discover process")]
        public string? PublishedServerUrl { get; set; }

        /// <summary>
        /// Gets or sets a value indicating whether the server should not detect network status change.
        /// </summary>
        [Option("nonetchange", Required = false, HelpText = "Indicates that the server should not detect network status change.")]
        public bool NoDetectNetworkChange { get; set; }

        /// <summary>
        /// Gets or sets the path to an jellyfin backup archive to restore the application to.
        /// </summary>
        [Option("restore-archive", Required = false, HelpText = "Path to a Jellyfin backup archive to restore from")]
        public string? RestoreArchive { get; set; }

        /// <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()
        {
            var config = new Dictionary<string, string?>();

            if (NoWebClient)
            {
                config.Add(HostWebClientKey, bool.FalseString);
            }

            if (PublishedServerUrl is not null)
            {
                config.Add(AddressOverrideKey, PublishedServerUrl);
            }

            if (FFmpegPath is not null)
            {
                config.Add(FfmpegPathKey, FFmpegPath);
            }

            if (NoDetectNetworkChange)
            {
                config.Add(DetectNetworkChangeKey, bool.FalseString);
            }

            return config;
        }
    }
}