| | 1 | | using System; |
| | 2 | | using System.IO; |
| | 3 | | using System.Linq; |
| | 4 | | using System.Text; |
| | 5 | | using System.Xml.Linq; |
| | 6 | | using Emby.Server.Implementations; |
| | 7 | | using Microsoft.Extensions.Logging; |
| | 8 | |
|
| | 9 | | namespace Jellyfin.Server.Migrations.PreStartupRoutines; |
| | 10 | |
|
| | 11 | | /// <inheritdoc /> |
| | 12 | | public 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 | | { |
| 0 | 24 | | _applicationPaths = applicationPaths; |
| 0 | 25 | | _logger = loggerFactory.CreateLogger<RenameEnableGroupingIntoCollections>(); |
| 0 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <inheritdoc /> |
| 0 | 29 | | public Guid Id => Guid.Parse("E73B777D-CD5C-4E71-957A-B86B3660B7CF"); |
| | 30 | |
|
| | 31 | | /// <inheritdoc /> |
| 0 | 32 | | public string Name => nameof(RenameEnableGroupingIntoCollections); |
| | 33 | |
|
| | 34 | | /// <inheritdoc /> |
| 0 | 35 | | public bool PerformOnNewInstall => false; |
| | 36 | |
|
| | 37 | | /// <inheritdoc /> |
| | 38 | | public void Perform() |
| | 39 | | { |
| 0 | 40 | | string path = Path.Combine(_applicationPaths.ConfigurationDirectoryPath, "system.xml"); |
| 0 | 41 | | if (!File.Exists(path)) |
| | 42 | | { |
| 0 | 43 | | _logger.LogWarning("Configuration file not found: {Path}", path); |
| 0 | 44 | | return; |
| | 45 | | } |
| | 46 | |
|
| | 47 | | try |
| | 48 | | { |
| 0 | 49 | | XDocument xmlDocument = XDocument.Load(path); |
| 0 | 50 | | var element = xmlDocument.Descendants("EnableGroupingIntoCollections").FirstOrDefault(); |
| 0 | 51 | | if (element is not null) |
| | 52 | | { |
| 0 | 53 | | element.Name = "EnableGroupingMoviesIntoCollections"; |
| 0 | 54 | | _logger.LogInformation("The tag <EnableGroupingIntoCollections> was successfully renamed to <EnableGroup |
| 0 | 55 | | xmlDocument.Save(path); |
| | 56 | | } |
| 0 | 57 | | } |
| 0 | 58 | | catch (Exception ex) |
| | 59 | | { |
| 0 | 60 | | _logger.LogError(ex, "An error occurred while updating the XML file: {Message}", ex.Message); |
| 0 | 61 | | } |
| 0 | 62 | | } |
| | 63 | | } |