< Summary - Jellyfin

Information
Class: Jellyfin.Server.Migrations.PreStartupRoutines.RenameEnableGroupingIntoCollections
Assembly: jellyfin
File(s): /srv/git/jellyfin/Jellyfin.Server/Migrations/PreStartupRoutines/RenameEnableGroupingIntoCollections.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 21
Coverable lines: 21
Total lines: 63
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 4
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%

File(s)

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

#LineLine coverage
 1using System;
 2using System.IO;
 3using System.Linq;
 4using System.Text;
 5using System.Xml.Linq;
 6using Emby.Server.Implementations;
 7using Microsoft.Extensions.Logging;
 8
 9namespace Jellyfin.Server.Migrations.PreStartupRoutines;
 10
 11/// <inheritdoc />
 12public class RenameEnableGroupingIntoCollections : IMigrationRoutine
 13{
 14    private readonly ServerApplicationPaths _applicationPaths;
 15    private readonly ILogger<RenameEnableGroupingIntoCollections> _logger;
 16
 17    /// <summary>
 18    /// Initializes a new instance of the <see cref="RenameEnableGroupingIntoCollections"/> class.
 19    /// </summary>
 20    /// <param name="applicationPaths">An instance of <see cref="ServerApplicationPaths"/>.</param>
 21    /// <param name="loggerFactory">An instance of the <see cref="ILoggerFactory"/> interface.</param>
 22    public RenameEnableGroupingIntoCollections(ServerApplicationPaths applicationPaths, ILoggerFactory loggerFactory)
 23    {
 024        _applicationPaths = applicationPaths;
 025        _logger = loggerFactory.CreateLogger<RenameEnableGroupingIntoCollections>();
 026    }
 27
 28    /// <inheritdoc />
 029    public Guid Id => Guid.Parse("E73B777D-CD5C-4E71-957A-B86B3660B7CF");
 30
 31    /// <inheritdoc />
 032    public string Name => nameof(RenameEnableGroupingIntoCollections);
 33
 34    /// <inheritdoc />
 035    public bool PerformOnNewInstall => false;
 36
 37    /// <inheritdoc />
 38    public void Perform()
 39    {
 040        string path = Path.Combine(_applicationPaths.ConfigurationDirectoryPath, "system.xml");
 041        if (!File.Exists(path))
 42        {
 043            _logger.LogWarning("Configuration file not found: {Path}", path);
 044            return;
 45        }
 46
 47        try
 48        {
 049            XDocument xmlDocument = XDocument.Load(path);
 050            var element = xmlDocument.Descendants("EnableGroupingIntoCollections").FirstOrDefault();
 051            if (element is not null)
 52            {
 053                element.Name = "EnableGroupingMoviesIntoCollections";
 054                _logger.LogInformation("The tag <EnableGroupingIntoCollections> was successfully renamed to <EnableGroup
 055                xmlDocument.Save(path);
 56            }
 057        }
 058        catch (Exception ex)
 59        {
 060            _logger.LogError(ex, "An error occurred while updating the XML file: {Message}", ex.Message);
 061        }
 062    }
 63}