#pragma warning disable CS1591 #pragma warning disable SA1600 using System; using MediaBrowser.Model.Dto; namespace MediaBrowser.Model.Configuration { /// /// Represents the server configuration. /// public class ServerConfiguration : BaseApplicationConfiguration { public const int DefaultHttpPort = 8096; public const int DefaultHttpsPort = 8920; private string _baseUrl; /// /// Gets or sets a value indicating whether [enable u pn p]. /// /// true if [enable u pn p]; otherwise, false. public bool EnableUPnP { get; set; } /// /// Gets or sets the public mapped port. /// /// The public mapped port. public int PublicPort { get; set; } /// /// Gets or sets the public HTTPS port. /// /// The public HTTPS port. public int PublicHttpsPort { get; set; } /// /// Gets or sets the HTTP server port number. /// /// The HTTP server port number. public int HttpServerPortNumber { get; set; } /// /// Gets or sets the HTTPS server port number. /// /// The HTTPS server port number. public int HttpsPortNumber { get; set; } /// /// Gets or sets a value indicating whether [use HTTPS]. /// /// true if [use HTTPS]; otherwise, false. public bool EnableHttps { get; set; } public bool EnableNormalizedItemByNameIds { get; set; } /// /// Gets or sets the value pointing to the file system where the ssl certificate is located.. /// /// The value pointing to the file system where the ssl certificate is located.. public string CertificatePath { get; set; } public string CertificatePassword { get; set; } /// /// Gets or sets a value indicating whether this instance is port authorized. /// /// true if this instance is port authorized; otherwise, false. public bool IsPortAuthorized { get; set; } public bool AutoRunWebApp { get; set; } public bool EnableRemoteAccess { get; set; } public bool CameraUploadUpgraded { get; set; } public bool CollectionsUpgraded { get; set; } /// /// Gets or sets a value indicating whether [enable case sensitive item ids]. /// /// true if [enable case sensitive item ids]; otherwise, false. public bool EnableCaseSensitiveItemIds { get; set; } public bool DisableLiveTvChannelUserDataName { get; set; } /// /// Gets or sets the metadata path. /// /// The metadata path. public string MetadataPath { get; set; } public string MetadataNetworkPath { get; set; } /// /// Gets or sets the preferred metadata language. /// /// The preferred metadata language. public string PreferredMetadataLanguage { get; set; } /// /// Gets or sets the metadata country code. /// /// The metadata country code. public string MetadataCountryCode { get; set; } /// /// Characters to be replaced with a ' ' in strings to create a sort name /// /// The sort replace characters. public string[] SortReplaceCharacters { get; set; } /// /// Characters to be removed from strings to create a sort name /// /// The sort remove characters. public string[] SortRemoveCharacters { get; set; } /// /// Words to be removed from strings to create a sort name /// /// The sort remove words. public string[] SortRemoveWords { get; set; } /// /// Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated. /// /// The min resume PCT. public int MinResumePct { get; set; } /// /// Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. /// /// The max resume PCT. public int MaxResumePct { get; set; } /// /// Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.. /// /// The min resume duration seconds. public int MinResumeDurationSeconds { get; set; } /// /// The delay in seconds that we will wait after a file system change to try and discover what has been added/removed /// Some delay is necessary with some items because their creation is not atomic. It involves the creation of several /// different directories and files. /// /// The file watcher delay. public int LibraryMonitorDelay { get; set; } /// /// Gets or sets a value indicating whether [enable dashboard response caching]. /// Allows potential contributors without visual studio to modify production dashboard code and test changes. /// /// true if [enable dashboard response caching]; otherwise, false. public bool EnableDashboardResponseCaching { get; set; } /// /// Allows the dashboard to be served from a custom path. /// /// The dashboard source path. public string DashboardSourcePath { get; set; } /// /// Gets or sets the image saving convention. /// /// The image saving convention. public ImageSavingConvention ImageSavingConvention { get; set; } public MetadataOptions[] MetadataOptions { get; set; } public bool SkipDeserializationForBasicTypes { get; set; } public string ServerName { get; set; } public string BaseUrl { get => _baseUrl; set { // Normalize the start of the string if (string.IsNullOrWhiteSpace(value)) { // If baseUrl is empty, set an empty prefix string _baseUrl = string.Empty; return; } if (value[0] != '/') { // If baseUrl was not configured with a leading slash, append one for consistency value = "/" + value; } // Normalize the end of the string if (value[value.Length - 1] == '/') { // If baseUrl was configured with a trailing slash, remove it for consistency value = value.Remove(value.Length - 1); } _baseUrl = value; } } public string UICulture { get; set; } public bool SaveMetadataHidden { get; set; } public NameValuePair[] ContentTypes { get; set; } public int RemoteClientBitrateLimit { get; set; } public bool EnableFolderView { get; set; } public bool EnableGroupingIntoCollections { get; set; } public bool DisplaySpecialsWithinSeasons { get; set; } public string[] LocalNetworkSubnets { get; set; } public string[] LocalNetworkAddresses { get; set; } public string[] CodecsUsed { get; set; } public bool IgnoreVirtualInterfaces { get; set; } public bool EnableExternalContentInSuggestions { get; set; } public bool RequireHttps { get; set; } public bool IsBehindProxy { get; set; } public bool EnableNewOmdbSupport { get; set; } public string[] RemoteIPFilter { get; set; } public bool IsRemoteIPFilterBlacklist { get; set; } public int ImageExtractionTimeoutMs { get; set; } public PathSubstitution[] PathSubstitutions { get; set; } public bool EnableSimpleArtistDetection { get; set; } public string[] UninstalledPlugins { get; set; } /// /// Initializes a new instance of the class. /// public ServerConfiguration() { UninstalledPlugins = Array.Empty(); RemoteIPFilter = Array.Empty(); LocalNetworkSubnets = Array.Empty(); LocalNetworkAddresses = Array.Empty(); CodecsUsed = Array.Empty(); PathSubstitutions = Array.Empty(); IgnoreVirtualInterfaces = false; EnableSimpleArtistDetection = true; DisplaySpecialsWithinSeasons = true; EnableExternalContentInSuggestions = true; ImageSavingConvention = ImageSavingConvention.Compatible; PublicPort = DefaultHttpPort; PublicHttpsPort = DefaultHttpsPort; HttpServerPortNumber = DefaultHttpPort; HttpsPortNumber = DefaultHttpsPort; EnableHttps = true; EnableDashboardResponseCaching = true; EnableCaseSensitiveItemIds = true; AutoRunWebApp = true; EnableRemoteAccess = true; EnableUPnP = true; MinResumePct = 5; MaxResumePct = 90; // 5 minutes MinResumeDurationSeconds = 300; LibraryMonitorDelay = 60; ContentTypes = Array.Empty(); PreferredMetadataLanguage = "en"; MetadataCountryCode = "US"; SortReplaceCharacters = new[] { ".", "+", "%" }; SortRemoveCharacters = new[] { ",", "&", "-", "{", "}", "'" }; SortRemoveWords = new[] { "the", "a", "an" }; BaseUrl = string.Empty; UICulture = "en-US"; MetadataOptions = new[] { new MetadataOptions() { ItemType = "Book" }, new MetadataOptions() { ItemType = "Movie" }, new MetadataOptions { ItemType = "MusicVideo", DisabledMetadataFetchers = new [] { "The Open Movie Database" }, DisabledImageFetchers = new [] { "The Open Movie Database" } }, new MetadataOptions { ItemType = "Series", DisabledMetadataFetchers = new [] { "TheMovieDb" }, DisabledImageFetchers = new [] { "TheMovieDb" } }, new MetadataOptions { ItemType = "MusicAlbum", DisabledMetadataFetchers = new [] { "TheAudioDB" } }, new MetadataOptions { ItemType = "MusicArtist", DisabledMetadataFetchers = new [] { "TheAudioDB" } }, new MetadataOptions { ItemType = "BoxSet" }, new MetadataOptions { ItemType = "Season", DisabledMetadataFetchers = new [] { "TheMovieDb" }, }, new MetadataOptions { ItemType = "Episode", DisabledMetadataFetchers = new [] { "The Open Movie Database", "TheMovieDb" }, DisabledImageFetchers = new [] { "The Open Movie Database", "TheMovieDb" } } }; } } public class PathSubstitution { public string From { get; set; } public string To { get; set; } } }