| | 1 | | #pragma warning disable CS0618 // obsolete |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.IO; |
| | 5 | | using System.Xml; |
| | 6 | | using System.Xml.Serialization; |
| | 7 | | using Emby.Server.Implementations; |
| | 8 | | using MediaBrowser.Common.Net; |
| | 9 | | using Microsoft.Extensions.Logging; |
| | 10 | |
|
| | 11 | | namespace Jellyfin.Server.Migrations.PreStartupRoutines; |
| | 12 | |
|
| | 13 | | /// <inheritdoc /> |
| | 14 | | public class MigrateNetworkConfiguration : IMigrationRoutine |
| | 15 | | { |
| | 16 | | private readonly ServerApplicationPaths _applicationPaths; |
| | 17 | | private readonly ILogger<MigrateNetworkConfiguration> _logger; |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// Initializes a new instance of the <see cref="MigrateNetworkConfiguration"/> class. |
| | 21 | | /// </summary> |
| | 22 | | /// <param name="applicationPaths">An instance of <see cref="ServerApplicationPaths"/>.</param> |
| | 23 | | /// <param name="loggerFactory">An instance of the <see cref="ILoggerFactory"/> interface.</param> |
| | 24 | | public MigrateNetworkConfiguration(ServerApplicationPaths applicationPaths, ILoggerFactory loggerFactory) |
| | 25 | | { |
| 0 | 26 | | _applicationPaths = applicationPaths; |
| 0 | 27 | | _logger = loggerFactory.CreateLogger<MigrateNetworkConfiguration>(); |
| 0 | 28 | | } |
| | 29 | |
|
| | 30 | | /// <inheritdoc /> |
| 0 | 31 | | public Guid Id => Guid.Parse("4FB5C950-1991-11EE-9B4B-0800200C9A66"); |
| | 32 | |
|
| | 33 | | /// <inheritdoc /> |
| 0 | 34 | | public string Name => nameof(MigrateNetworkConfiguration); |
| | 35 | |
|
| | 36 | | /// <inheritdoc /> |
| 0 | 37 | | public bool PerformOnNewInstall => false; |
| | 38 | |
|
| | 39 | | /// <inheritdoc /> |
| | 40 | | public void Perform() |
| | 41 | | { |
| 0 | 42 | | string path = Path.Combine(_applicationPaths.ConfigurationDirectoryPath, "network.xml"); |
| 0 | 43 | | var oldNetworkConfigSerializer = new XmlSerializer(typeof(OldNetworkConfiguration), new XmlRootAttribute("Networ |
| 0 | 44 | | OldNetworkConfiguration? oldNetworkConfiguration = null; |
| | 45 | |
|
| | 46 | | try |
| | 47 | | { |
| 0 | 48 | | using var xmlReader = XmlReader.Create(path); |
| 0 | 49 | | oldNetworkConfiguration = (OldNetworkConfiguration?)oldNetworkConfigSerializer.Deserialize(xmlReader); |
| 0 | 50 | | } |
| 0 | 51 | | catch (InvalidOperationException ex) |
| | 52 | | { |
| 0 | 53 | | _logger.LogError(ex, "Migrate NetworkConfiguration deserialize Invalid Operation error"); |
| 0 | 54 | | } |
| 0 | 55 | | catch (Exception ex) |
| | 56 | | { |
| 0 | 57 | | _logger.LogError(ex, "Migrate NetworkConfiguration deserialize error"); |
| 0 | 58 | | } |
| | 59 | |
|
| 0 | 60 | | if (oldNetworkConfiguration is null) |
| | 61 | | { |
| 0 | 62 | | return; |
| | 63 | | } |
| | 64 | |
|
| | 65 | | // Migrate network config values to new config schema |
| 0 | 66 | | var networkConfiguration = new NetworkConfiguration |
| 0 | 67 | | { |
| 0 | 68 | | AutoDiscovery = oldNetworkConfiguration.AutoDiscovery, |
| 0 | 69 | | BaseUrl = oldNetworkConfiguration.BaseUrl, |
| 0 | 70 | | CertificatePassword = oldNetworkConfiguration.CertificatePassword, |
| 0 | 71 | | CertificatePath = oldNetworkConfiguration.CertificatePath, |
| 0 | 72 | | EnableHttps = oldNetworkConfiguration.EnableHttps, |
| 0 | 73 | | EnableIPv4 = oldNetworkConfiguration.EnableIPV4, |
| 0 | 74 | | EnableIPv6 = oldNetworkConfiguration.EnableIPV6, |
| 0 | 75 | | EnablePublishedServerUriByRequest = oldNetworkConfiguration.EnablePublishedServerUriByRequest, |
| 0 | 76 | | EnableRemoteAccess = oldNetworkConfiguration.EnableRemoteAccess, |
| 0 | 77 | | EnableUPnP = oldNetworkConfiguration.EnableUPnP, |
| 0 | 78 | | IgnoreVirtualInterfaces = oldNetworkConfiguration.IgnoreVirtualInterfaces, |
| 0 | 79 | | InternalHttpPort = oldNetworkConfiguration.HttpServerPortNumber, |
| 0 | 80 | | InternalHttpsPort = oldNetworkConfiguration.HttpsPortNumber, |
| 0 | 81 | | IsRemoteIPFilterBlacklist = oldNetworkConfiguration.IsRemoteIPFilterBlacklist, |
| 0 | 82 | | KnownProxies = oldNetworkConfiguration.KnownProxies, |
| 0 | 83 | | LocalNetworkAddresses = oldNetworkConfiguration.LocalNetworkAddresses, |
| 0 | 84 | | LocalNetworkSubnets = oldNetworkConfiguration.LocalNetworkSubnets, |
| 0 | 85 | | PublicHttpPort = oldNetworkConfiguration.PublicPort, |
| 0 | 86 | | PublicHttpsPort = oldNetworkConfiguration.PublicHttpsPort, |
| 0 | 87 | | PublishedServerUriBySubnet = oldNetworkConfiguration.PublishedServerUriBySubnet, |
| 0 | 88 | | RemoteIPFilter = oldNetworkConfiguration.RemoteIPFilter, |
| 0 | 89 | | RequireHttps = oldNetworkConfiguration.RequireHttps |
| 0 | 90 | | }; |
| | 91 | |
|
| | 92 | | // Migrate old virtual interface name schema |
| 0 | 93 | | var oldVirtualInterfaceNames = oldNetworkConfiguration.VirtualInterfaceNames; |
| 0 | 94 | | if (oldVirtualInterfaceNames.Equals("vEthernet*", StringComparison.OrdinalIgnoreCase)) |
| | 95 | | { |
| 0 | 96 | | networkConfiguration.VirtualInterfaceNames = new string[] { "veth" }; |
| | 97 | | } |
| | 98 | | else |
| | 99 | | { |
| 0 | 100 | | networkConfiguration.VirtualInterfaceNames = oldVirtualInterfaceNames.Replace("*", string.Empty, StringCompa |
| | 101 | | } |
| | 102 | |
|
| 0 | 103 | | var networkConfigSerializer = new XmlSerializer(typeof(NetworkConfiguration)); |
| 0 | 104 | | var xmlWriterSettings = new XmlWriterSettings { Indent = true }; |
| 0 | 105 | | using var xmlWriter = XmlWriter.Create(path, xmlWriterSettings); |
| 0 | 106 | | networkConfigSerializer.Serialize(xmlWriter, networkConfiguration); |
| 0 | 107 | | } |
| | 108 | |
|
| | 109 | | #pragma warning disable |
| | 110 | | public sealed class OldNetworkConfiguration |
| | 111 | | { |
| | 112 | | public const int DefaultHttpPort = 8096; |
| | 113 | |
|
| | 114 | | public const int DefaultHttpsPort = 8920; |
| | 115 | |
|
| 0 | 116 | | private string _baseUrl = string.Empty; |
| | 117 | |
|
| | 118 | | public bool RequireHttps { get; set; } |
| | 119 | |
|
| | 120 | | public string CertificatePath { get; set; } = string.Empty; |
| | 121 | |
|
| | 122 | | public string CertificatePassword { get; set; } = string.Empty; |
| | 123 | |
|
| | 124 | | public string BaseUrl |
| | 125 | | { |
| 0 | 126 | | get => _baseUrl; |
| | 127 | | set |
| | 128 | | { |
| | 129 | | // Normalize the start of the string |
| 0 | 130 | | if (string.IsNullOrWhiteSpace(value)) |
| | 131 | | { |
| | 132 | | // If baseUrl is empty, set an empty prefix string |
| 0 | 133 | | _baseUrl = string.Empty; |
| 0 | 134 | | return; |
| | 135 | | } |
| | 136 | |
|
| 0 | 137 | | if (value[0] != '/') |
| | 138 | | { |
| | 139 | | // If baseUrl was not configured with a leading slash, append one for consistency |
| 0 | 140 | | value = "/" + value; |
| | 141 | | } |
| | 142 | |
|
| | 143 | | // Normalize the end of the string |
| 0 | 144 | | if (value[^1] == '/') |
| | 145 | | { |
| | 146 | | // If baseUrl was configured with a trailing slash, remove it for consistency |
| 0 | 147 | | value = value.Remove(value.Length - 1); |
| | 148 | | } |
| | 149 | |
|
| 0 | 150 | | _baseUrl = value; |
| 0 | 151 | | } |
| | 152 | | } |
| | 153 | |
|
| | 154 | | public int PublicHttpsPort { get; set; } = DefaultHttpsPort; |
| | 155 | |
|
| | 156 | | public int HttpServerPortNumber { get; set; } = DefaultHttpPort; |
| | 157 | |
|
| | 158 | | public int HttpsPortNumber { get; set; } = DefaultHttpsPort; |
| | 159 | |
|
| | 160 | | public bool EnableHttps { get; set; } |
| | 161 | |
|
| | 162 | | public int PublicPort { get; set; } = DefaultHttpPort; |
| | 163 | |
|
| | 164 | | public bool UPnPCreateHttpPortMap { get; set; } |
| | 165 | |
|
| | 166 | | public string UDPPortRange { get; set; } = string.Empty; |
| | 167 | |
|
| | 168 | | public bool EnableIPV6 { get; set; } |
| | 169 | |
|
| | 170 | | public bool EnableIPV4 { get; set; } = true; |
| | 171 | |
|
| | 172 | | public bool EnableSSDPTracing { get; set; } |
| | 173 | |
|
| | 174 | | public string SSDPTracingFilter { get; set; } = string.Empty; |
| | 175 | |
|
| | 176 | | public int UDPSendCount { get; set; } = 2; |
| | 177 | |
|
| | 178 | | public int UDPSendDelay { get; set; } = 100; |
| | 179 | |
|
| | 180 | | public bool IgnoreVirtualInterfaces { get; set; } = true; |
| | 181 | |
|
| | 182 | | public string VirtualInterfaceNames { get; set; } = "vEthernet*"; |
| | 183 | |
|
| | 184 | | public int GatewayMonitorPeriod { get; set; } = 60; |
| | 185 | |
|
| | 186 | | public bool EnableMultiSocketBinding { get; } = true; |
| | 187 | |
|
| | 188 | | public bool TrustAllIP6Interfaces { get; set; } |
| | 189 | |
|
| | 190 | | public string HDHomerunPortRange { get; set; } = string.Empty; |
| | 191 | |
|
| | 192 | | public string[] PublishedServerUriBySubnet { get; set; } = Array.Empty<string>(); |
| | 193 | |
|
| | 194 | | public bool AutoDiscoveryTracing { get; set; } |
| | 195 | |
|
| | 196 | | public bool AutoDiscovery { get; set; } = true; |
| | 197 | |
|
| | 198 | | public string[] RemoteIPFilter { get; set; } = Array.Empty<string>(); |
| | 199 | |
|
| | 200 | | public bool IsRemoteIPFilterBlacklist { get; set; } |
| | 201 | |
|
| | 202 | | public bool EnableUPnP { get; set; } |
| | 203 | |
|
| | 204 | | public bool EnableRemoteAccess { get; set; } = true; |
| | 205 | |
|
| | 206 | | public string[] LocalNetworkSubnets { get; set; } = Array.Empty<string>(); |
| | 207 | |
|
| | 208 | | public string[] LocalNetworkAddresses { get; set; } = Array.Empty<string>(); |
| | 209 | | public string[] KnownProxies { get; set; } = Array.Empty<string>(); |
| | 210 | |
|
| | 211 | | public bool EnablePublishedServerUriByRequest { get; set; } = false; |
| | 212 | | } |
| | 213 | | } |