#pragma warning disable CA1819 // Properties should not return arrays
using System;
namespace Jellyfin.Networking.Configuration
{
///
/// Defines the .
///
public class NetworkConfiguration
{
///
/// The default value for .
///
public const int DefaultHttpPort = 8096;
///
/// The default value for and .
///
public const int DefaultHttpsPort = 8920;
private string _baseUrl = string.Empty;
///
/// Gets or sets a value indicating whether the server should force connections over HTTPS.
///
public bool RequireHttps { get; set; }
///
/// Gets or sets the filesystem path of an X.509 certificate to use for SSL.
///
public string CertificatePath { get; set; } = string.Empty;
///
/// Gets or sets the password required to access the X.509 certificate data in the file specified by .
///
public string CertificatePassword { get; set; } = string.Empty;
///
/// Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at.
///
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[^1] == '/')
{
// If baseUrl was configured with a trailing slash, remove it for consistency
value = value.Remove(value.Length - 1);
}
_baseUrl = value;
}
}
///
/// Gets or sets the public HTTPS port.
///
/// The public HTTPS port.
public int PublicHttpsPort { get; set; } = DefaultHttpsPort;
///
/// Gets or sets the HTTP server port number.
///
/// The HTTP server port number.
public int HttpServerPortNumber { get; set; } = DefaultHttpPort;
///
/// Gets or sets the HTTPS server port number.
///
/// The HTTPS server port number.
public int HttpsPortNumber { get; set; } = DefaultHttpsPort;
///
/// Gets or sets a value indicating whether to use HTTPS.
///
///
/// In order for HTTPS to be used, in addition to setting this to true, valid values must also be
/// provided for and .
///
public bool EnableHttps { get; set; }
///
/// Gets or sets the public mapped port.
///
/// The public mapped port.
public int PublicPort { get; set; } = DefaultHttpPort;
///
/// Gets or sets a value indicating whether the http port should be mapped as part of UPnP automatic port forwarding.
///
public bool UPnPCreateHttpPortMap { get; set; }
///
/// Gets or sets the UDPPortRange.
///
public string UDPPortRange { get; set; } = string.Empty;
///
/// Gets or sets a value indicating whether gets or sets IPV6 capability.
///
public bool EnableIPV6 { get; set; }
///
/// Gets or sets a value indicating whether gets or sets IPV4 capability.
///
public bool EnableIPV4 { get; set; } = true;
///
/// Gets or sets a value indicating whether detailed SSDP logs are sent to the console/log.
/// "Emby.Dlna": "Debug" must be set in logging.default.json for this property to have any effect.
///
public bool EnableSSDPTracing { get; set; }
///
/// Gets or sets the SSDPTracingFilter
/// Gets or sets a value indicating whether an IP address is to be used to filter the detailed ssdp logs that are being sent to the console/log.
/// If the setting "Emby.Dlna": "Debug" msut be set in logging.default.json for this property to work.
///
public string SSDPTracingFilter { get; set; } = string.Empty;
///
/// Gets or sets the number of times SSDP UDP messages are sent.
///
public int UDPSendCount { get; set; } = 2;
///
/// Gets or sets the delay between each groups of SSDP messages (in ms).
///
public int UDPSendDelay { get; set; } = 100;
///
/// Gets or sets a value indicating whether address names that match should be Ignore for the purposes of binding.
///
public bool IgnoreVirtualInterfaces { get; set; } = true;
///
/// Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. .
///
public string VirtualInterfaceNames { get; set; } = "vEthernet*";
///
/// Gets or sets the time (in seconds) between the pings of SSDP gateway monitor.
///
public int GatewayMonitorPeriod { get; set; } = 60;
///
/// Gets a value indicating whether multi-socket binding is available.
///
public bool EnableMultiSocketBinding { get; } = true;
///
/// Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network.
/// Depending on the address range implemented ULA ranges might not be used.
///
public bool TrustAllIP6Interfaces { get; set; }
///
/// Gets or sets the ports that HDHomerun uses.
///
public string HDHomerunPortRange { get; set; } = string.Empty;
///
/// Gets or sets the PublishedServerUriBySubnet
/// Gets or sets PublishedServerUri to advertise for specific subnets.
///
public string[] PublishedServerUriBySubnet { get; set; } = Array.Empty();
///
/// Gets or sets a value indicating whether Autodiscovery tracing is enabled.
///
public bool AutoDiscoveryTracing { get; set; }
///
/// Gets or sets a value indicating whether Autodiscovery is enabled.
///
public bool AutoDiscovery { get; set; } = true;
///
/// Gets or sets the filter for remote IP connectivity. Used in conjunction with .
///
public string[] RemoteIPFilter { get; set; } = Array.Empty();
///
/// Gets or sets a value indicating whether contains a blacklist or a whitelist. Default is a whitelist.
///
public bool IsRemoteIPFilterBlacklist { get; set; }
///
/// Gets or sets a value indicating whether to enable automatic port forwarding.
///
public bool EnableUPnP { get; set; }
///
/// Gets or sets a value indicating whether access outside of the LAN is permitted.
///
public bool EnableRemoteAccess { get; set; } = true;
///
/// Gets or sets the subnets that are deemed to make up the LAN.
///
public string[] LocalNetworkSubnets { get; set; } = Array.Empty();
///
/// Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used.
///
public string[] LocalNetworkAddresses { get; set; } = Array.Empty();
///
/// Gets or sets the known proxies. If the proxy is a network, it's added to the KnownNetworks.
///
public string[] KnownProxies { get; set; } = Array.Empty();
///
/// Gets or sets a value indicating whether the published server uri is based on information in HTTP requests.
///
public bool EnablePublishedServerUriByRequest { get; set; } = false;
}
}