jellyfin/Emby.Server.Implementations/Library/Validators/ArtistsValidator.cs

112 lines
3.5 KiB
C#
Raw Normal View History

using System;
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2021-12-12 03:31:30 +01:00
using Jellyfin.Data.Enums;
2016-08-06 06:38:01 +02:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Library;
2016-08-18 17:13:18 +02:00
using MediaBrowser.Controller.Persistence;
using Microsoft.Extensions.Logging;
namespace Emby.Server.Implementations.Library.Validators
{
/// <summary>
2019-11-01 18:38:54 +01:00
/// Class ArtistsValidator.
/// </summary>
public class ArtistsValidator
{
/// <summary>
/// The library manager.
/// </summary>
private readonly ILibraryManager _libraryManager;
/// <summary>
/// The logger.
/// </summary>
2020-06-06 02:15:56 +02:00
private readonly ILogger<ArtistsValidator> _logger;
2016-08-18 17:13:18 +02:00
private readonly IItemRepository _itemRepo;
/// <summary>
2019-10-25 12:47:20 +02:00
/// Initializes a new instance of the <see cref="ArtistsValidator" /> class.
/// </summary>
/// <param name="libraryManager">The library manager.</param>
/// <param name="logger">The logger.</param>
2019-10-25 12:47:20 +02:00
/// <param name="itemRepo">The item repository.</param>
2020-06-06 02:15:56 +02:00
public ArtistsValidator(ILibraryManager libraryManager, ILogger<ArtistsValidator> logger, IItemRepository itemRepo)
{
_libraryManager = libraryManager;
_logger = logger;
2016-08-18 17:13:18 +02:00
_itemRepo = itemRepo;
}
/// <summary>
/// Runs the specified progress.
/// </summary>
/// <param name="progress">The progress.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
public async Task Run(IProgress<double> progress, CancellationToken cancellationToken)
{
2016-08-18 17:13:18 +02:00
var names = _itemRepo.GetAllArtistNames();
var numComplete = 0;
2016-08-18 17:13:18 +02:00
var count = names.Count;
2016-08-18 17:13:18 +02:00
foreach (var name in names)
{
2013-09-26 00:36:48 +02:00
try
{
2016-08-18 17:13:18 +02:00
var item = _libraryManager.GetArtist(name);
2016-08-06 06:38:01 +02:00
await item.RefreshMetadata(cancellationToken).ConfigureAwait(false);
2013-09-26 00:36:48 +02:00
}
2016-08-06 06:38:01 +02:00
catch (OperationCanceledException)
2013-09-26 00:36:48 +02:00
{
2016-08-06 06:38:01 +02:00
// Don't clutter the log
2017-05-10 21:12:03 +02:00
throw;
2016-08-06 06:38:01 +02:00
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error refreshing {ArtistName}", name);
2013-09-26 00:36:48 +02:00
}
2013-09-26 00:36:48 +02:00
numComplete++;
double percent = numComplete;
2016-08-06 06:38:01 +02:00
percent /= count;
percent *= 100;
2016-08-06 06:38:01 +02:00
progress.Report(percent);
}
2016-08-06 06:38:01 +02:00
2018-09-12 19:26:21 +02:00
var deadEntities = _libraryManager.GetItemList(new InternalItemsQuery
2017-06-26 19:23:03 +02:00
{
2021-12-12 03:31:30 +01:00
IncludeItemTypes = new[] { BaseItemKind.MusicArtist },
2018-09-12 19:26:21 +02:00
IsDeadArtist = true,
IsLocked = false
2017-06-26 19:23:03 +02:00
}).Cast<MusicArtist>().ToList();
2018-09-12 19:26:21 +02:00
foreach (var item in deadEntities)
2017-06-26 19:23:03 +02:00
{
2018-09-12 19:26:21 +02:00
if (!item.IsAccessedByName)
2017-06-26 19:23:03 +02:00
{
continue;
}
2019-01-08 00:27:46 +01:00
_logger.LogInformation("Deleting dead {2} {0} {1}.", item.Id.ToString("N", CultureInfo.InvariantCulture), item.Name, item.GetType().Name);
2017-06-26 19:23:03 +02:00
2021-10-02 19:59:58 +02:00
_libraryManager.DeleteItem(
item,
new DeleteOptions
{
DeleteFileLocation = false
},
false);
2017-06-26 19:23:03 +02:00
}
2016-08-06 06:38:01 +02:00
progress.Report(100);
}
}
}