| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.IO; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Threading; |
| | 6 | | using System.Threading.Tasks; |
| | 7 | | using MediaBrowser.Controller.Collections; |
| | 8 | | using MediaBrowser.Controller.Entities; |
| | 9 | | using MediaBrowser.Controller.Entities.Movies; |
| | 10 | | using MediaBrowser.Controller.Library; |
| | 11 | | using MediaBrowser.Controller.Playlists; |
| | 12 | | using MediaBrowser.Controller.Providers; |
| | 13 | | using MediaBrowser.Model.Globalization; |
| | 14 | | using MediaBrowser.Model.IO; |
| | 15 | | using MediaBrowser.Model.Tasks; |
| | 16 | | using Microsoft.Extensions.Logging; |
| | 17 | |
|
| | 18 | | namespace Emby.Server.Implementations.ScheduledTasks.Tasks; |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Deletes path references from collections and playlists that no longer exists. |
| | 22 | | /// </summary> |
| | 23 | | public class CleanupCollectionAndPlaylistPathsTask : IScheduledTask |
| | 24 | | { |
| | 25 | | private readonly ILocalizationManager _localization; |
| | 26 | | private readonly ICollectionManager _collectionManager; |
| | 27 | | private readonly IPlaylistManager _playlistManager; |
| | 28 | | private readonly ILogger<CleanupCollectionAndPlaylistPathsTask> _logger; |
| | 29 | | private readonly IProviderManager _providerManager; |
| | 30 | | private readonly IFileSystem _fileSystem; |
| | 31 | |
|
| | 32 | | /// <summary> |
| | 33 | | /// Initializes a new instance of the <see cref="CleanupCollectionAndPlaylistPathsTask"/> class. |
| | 34 | | /// </summary> |
| | 35 | | /// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param> |
| | 36 | | /// <param name="collectionManager">Instance of the <see cref="ICollectionManager"/> interface.</param> |
| | 37 | | /// <param name="playlistManager">Instance of the <see cref="IPlaylistManager"/> interface.</param> |
| | 38 | | /// <param name="logger">Instance of the <see cref="ILogger"/> interface.</param> |
| | 39 | | /// <param name="providerManager">Instance of the <see cref="IProviderManager"/> interface.</param> |
| | 40 | | /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param> |
| | 41 | | public CleanupCollectionAndPlaylistPathsTask( |
| | 42 | | ILocalizationManager localization, |
| | 43 | | ICollectionManager collectionManager, |
| | 44 | | IPlaylistManager playlistManager, |
| | 45 | | ILogger<CleanupCollectionAndPlaylistPathsTask> logger, |
| | 46 | | IProviderManager providerManager, |
| | 47 | | IFileSystem fileSystem) |
| | 48 | | { |
| 21 | 49 | | _localization = localization; |
| 21 | 50 | | _collectionManager = collectionManager; |
| 21 | 51 | | _playlistManager = playlistManager; |
| 21 | 52 | | _logger = logger; |
| 21 | 53 | | _providerManager = providerManager; |
| 21 | 54 | | _fileSystem = fileSystem; |
| 21 | 55 | | } |
| | 56 | |
|
| | 57 | | /// <inheritdoc /> |
| 26 | 58 | | public string Name => _localization.GetLocalizedString("TaskCleanCollectionsAndPlaylists"); |
| | 59 | |
|
| | 60 | | /// <inheritdoc /> |
| 1 | 61 | | public string Key => "CleanCollectionsAndPlaylists"; |
| | 62 | |
|
| | 63 | | /// <inheritdoc /> |
| 0 | 64 | | public string Description => _localization.GetLocalizedString("TaskCleanCollectionsAndPlaylistsDescription"); |
| | 65 | |
|
| | 66 | | /// <inheritdoc /> |
| 0 | 67 | | public string Category => _localization.GetLocalizedString("TasksMaintenanceCategory"); |
| | 68 | |
|
| | 69 | | /// <inheritdoc /> |
| | 70 | | public async Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken) |
| | 71 | | { |
| | 72 | | var collectionsFolder = await _collectionManager.GetCollectionsFolder(false).ConfigureAwait(false); |
| | 73 | | if (collectionsFolder is null) |
| | 74 | | { |
| | 75 | | _logger.LogDebug("There is no collections folder to be found"); |
| | 76 | | } |
| | 77 | | else |
| | 78 | | { |
| | 79 | | var collections = collectionsFolder.Children.OfType<BoxSet>().ToArray(); |
| | 80 | | _logger.LogDebug("Found {CollectionLength} boxsets", collections.Length); |
| | 81 | |
|
| | 82 | | for (var index = 0; index < collections.Length; index++) |
| | 83 | | { |
| | 84 | | var collection = collections[index]; |
| | 85 | | _logger.LogDebug("Checking boxset {CollectionName}", collection.Name); |
| | 86 | |
|
| | 87 | | await CleanupLinkedChildrenAsync(collection, cancellationToken).ConfigureAwait(false); |
| | 88 | | progress.Report(50D / collections.Length * (index + 1)); |
| | 89 | | } |
| | 90 | | } |
| | 91 | |
|
| | 92 | | var playlistsFolder = _playlistManager.GetPlaylistsFolder(); |
| | 93 | | if (playlistsFolder is null) |
| | 94 | | { |
| | 95 | | _logger.LogDebug("There is no playlists folder to be found"); |
| | 96 | | return; |
| | 97 | | } |
| | 98 | |
|
| | 99 | | var playlists = playlistsFolder.Children.OfType<Playlist>().ToArray(); |
| | 100 | | _logger.LogDebug("Found {PlaylistLength} playlists", playlists.Length); |
| | 101 | |
|
| | 102 | | for (var index = 0; index < playlists.Length; index++) |
| | 103 | | { |
| | 104 | | var playlist = playlists[index]; |
| | 105 | | _logger.LogDebug("Checking playlist {PlaylistName}", playlist.Name); |
| | 106 | |
|
| | 107 | | await CleanupLinkedChildrenAsync(playlist, cancellationToken).ConfigureAwait(false); |
| | 108 | | progress.Report(50D / playlists.Length * (index + 1)); |
| | 109 | | } |
| | 110 | | } |
| | 111 | |
|
| | 112 | | private async Task CleanupLinkedChildrenAsync<T>(T folder, CancellationToken cancellationToken) |
| | 113 | | where T : Folder |
| | 114 | | { |
| | 115 | | List<LinkedChild>? itemsToRemove = null; |
| | 116 | | foreach (var linkedChild in folder.LinkedChildren) |
| | 117 | | { |
| | 118 | | var path = linkedChild.Path; |
| | 119 | | if (!File.Exists(path) && !Directory.Exists(path)) |
| | 120 | | { |
| | 121 | | _logger.LogInformation("Item in {FolderName} cannot be found at {ItemPath}", folder.Name, path); |
| | 122 | | (itemsToRemove ??= new List<LinkedChild>()).Add(linkedChild); |
| | 123 | | } |
| | 124 | | } |
| | 125 | |
|
| | 126 | | if (itemsToRemove is not null) |
| | 127 | | { |
| | 128 | | _logger.LogDebug("Updating {FolderName}", folder.Name); |
| | 129 | | folder.LinkedChildren = folder.LinkedChildren.Except(itemsToRemove).ToArray(); |
| | 130 | | await _providerManager.SaveMetadataAsync(folder, ItemUpdateType.MetadataEdit).ConfigureAwait(false); |
| | 131 | | await folder.UpdateToRepositoryAsync(ItemUpdateType.MetadataEdit, cancellationToken).ConfigureAwait(false); |
| | 132 | | } |
| | 133 | | } |
| | 134 | |
|
| | 135 | | /// <inheritdoc /> |
| | 136 | | public IEnumerable<TaskTriggerInfo> GetDefaultTriggers() |
| | 137 | | { |
| 21 | 138 | | return [new TaskTriggerInfo() { Type = TaskTriggerInfoType.StartupTrigger }]; |
| | 139 | | } |
| | 140 | | } |