< Summary - Jellyfin

Information
Class: Jellyfin.Server.Migrations.PreStartupRoutines.MigrateNetworkConfiguration
Assembly: jellyfin
File(s): /srv/git/jellyfin/Jellyfin.Server/Migrations/PreStartupRoutines/MigrateNetworkConfiguration.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 65
Coverable lines: 65
Total lines: 213
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 10
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%210%
get_Id()100%210%
get_Name()100%210%
get_PerformOnNewInstall()100%210%
Perform()0%2040%
.ctor()100%210%
get_BaseUrl()100%210%
set_BaseUrl(...)0%4260%

File(s)

/srv/git/jellyfin/Jellyfin.Server/Migrations/PreStartupRoutines/MigrateNetworkConfiguration.cs

#LineLine coverage
 1#pragma warning disable CS0618 // obsolete
 2
 3using System;
 4using System.IO;
 5using System.Xml;
 6using System.Xml.Serialization;
 7using Emby.Server.Implementations;
 8using MediaBrowser.Common.Net;
 9using Microsoft.Extensions.Logging;
 10
 11namespace Jellyfin.Server.Migrations.PreStartupRoutines;
 12
 13/// <inheritdoc />
 14public 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    {
 026        _applicationPaths = applicationPaths;
 027        _logger = loggerFactory.CreateLogger<MigrateNetworkConfiguration>();
 028    }
 29
 30    /// <inheritdoc />
 031    public Guid Id => Guid.Parse("4FB5C950-1991-11EE-9B4B-0800200C9A66");
 32
 33    /// <inheritdoc />
 034    public string Name => nameof(MigrateNetworkConfiguration);
 35
 36    /// <inheritdoc />
 037    public bool PerformOnNewInstall => false;
 38
 39    /// <inheritdoc />
 40    public void Perform()
 41    {
 042        string path = Path.Combine(_applicationPaths.ConfigurationDirectoryPath, "network.xml");
 043        var oldNetworkConfigSerializer = new XmlSerializer(typeof(OldNetworkConfiguration), new XmlRootAttribute("Networ
 044        OldNetworkConfiguration? oldNetworkConfiguration = null;
 45
 46        try
 47        {
 048            using var xmlReader = XmlReader.Create(path);
 049            oldNetworkConfiguration = (OldNetworkConfiguration?)oldNetworkConfigSerializer.Deserialize(xmlReader);
 050        }
 051        catch (InvalidOperationException ex)
 52        {
 053            _logger.LogError(ex, "Migrate NetworkConfiguration deserialize Invalid Operation error");
 054        }
 055        catch (Exception ex)
 56        {
 057            _logger.LogError(ex, "Migrate NetworkConfiguration deserialize error");
 058        }
 59
 060        if (oldNetworkConfiguration is null)
 61        {
 062            return;
 63        }
 64
 65        // Migrate network config values to new config schema
 066        var networkConfiguration = new NetworkConfiguration
 067        {
 068            AutoDiscovery = oldNetworkConfiguration.AutoDiscovery,
 069            BaseUrl = oldNetworkConfiguration.BaseUrl,
 070            CertificatePassword = oldNetworkConfiguration.CertificatePassword,
 071            CertificatePath = oldNetworkConfiguration.CertificatePath,
 072            EnableHttps = oldNetworkConfiguration.EnableHttps,
 073            EnableIPv4 = oldNetworkConfiguration.EnableIPV4,
 074            EnableIPv6 = oldNetworkConfiguration.EnableIPV6,
 075            EnablePublishedServerUriByRequest = oldNetworkConfiguration.EnablePublishedServerUriByRequest,
 076            EnableRemoteAccess = oldNetworkConfiguration.EnableRemoteAccess,
 077            EnableUPnP = oldNetworkConfiguration.EnableUPnP,
 078            IgnoreVirtualInterfaces = oldNetworkConfiguration.IgnoreVirtualInterfaces,
 079            InternalHttpPort = oldNetworkConfiguration.HttpServerPortNumber,
 080            InternalHttpsPort = oldNetworkConfiguration.HttpsPortNumber,
 081            IsRemoteIPFilterBlacklist = oldNetworkConfiguration.IsRemoteIPFilterBlacklist,
 082            KnownProxies = oldNetworkConfiguration.KnownProxies,
 083            LocalNetworkAddresses = oldNetworkConfiguration.LocalNetworkAddresses,
 084            LocalNetworkSubnets = oldNetworkConfiguration.LocalNetworkSubnets,
 085            PublicHttpPort = oldNetworkConfiguration.PublicPort,
 086            PublicHttpsPort = oldNetworkConfiguration.PublicHttpsPort,
 087            PublishedServerUriBySubnet = oldNetworkConfiguration.PublishedServerUriBySubnet,
 088            RemoteIPFilter = oldNetworkConfiguration.RemoteIPFilter,
 089            RequireHttps = oldNetworkConfiguration.RequireHttps
 090        };
 91
 92        // Migrate old virtual interface name schema
 093        var oldVirtualInterfaceNames = oldNetworkConfiguration.VirtualInterfaceNames;
 094        if (oldVirtualInterfaceNames.Equals("vEthernet*", StringComparison.OrdinalIgnoreCase))
 95        {
 096            networkConfiguration.VirtualInterfaceNames = new string[] { "veth" };
 97        }
 98        else
 99        {
 0100            networkConfiguration.VirtualInterfaceNames = oldVirtualInterfaceNames.Replace("*", string.Empty, StringCompa
 101        }
 102
 0103        var networkConfigSerializer = new XmlSerializer(typeof(NetworkConfiguration));
 0104        var xmlWriterSettings = new XmlWriterSettings { Indent = true };
 0105        using var xmlWriter = XmlWriter.Create(path, xmlWriterSettings);
 0106        networkConfigSerializer.Serialize(xmlWriter, networkConfiguration);
 0107    }
 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
 0116        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        {
 0126            get => _baseUrl;
 127            set
 128            {
 129                // Normalize the start of the string
 0130                if (string.IsNullOrWhiteSpace(value))
 131                {
 132                    // If baseUrl is empty, set an empty prefix string
 0133                    _baseUrl = string.Empty;
 0134                    return;
 135                }
 136
 0137                if (value[0] != '/')
 138                {
 139                    // If baseUrl was not configured with a leading slash, append one for consistency
 0140                    value = "/" + value;
 141                }
 142
 143                // Normalize the end of the string
 0144                if (value[^1] == '/')
 145                {
 146                    // If baseUrl was configured with a trailing slash, remove it for consistency
 0147                    value = value.Remove(value.Length - 1);
 148                }
 149
 0150                _baseUrl = value;
 0151            }
 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}