| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 | using System;using System.Globalization;using System.Threading;using System.Threading.Tasks;using MediaBrowser.Controller.Entities;using MediaBrowser.Controller.Library;using MediaBrowser.Controller.Providers;using MediaBrowser.Model.IO;using Microsoft.Extensions.Logging;namespace Emby.Server.Implementations.Library.Validators{    /// <summary>    /// Class PeopleValidator.    /// </summary>    public class PeopleValidator    {        /// <summary>        /// The _library manager.        /// </summary>        private readonly ILibraryManager _libraryManager;        /// <summary>        /// The _logger.        /// </summary>        private readonly ILogger _logger;        private readonly IFileSystem _fileSystem;        /// <summary>        /// Initializes a new instance of the <see cref="PeopleValidator" /> class.        /// </summary>        /// <param name="libraryManager">The library manager.</param>        /// <param name="logger">The logger.</param>        /// <param name="fileSystem">The file system.</param>        public PeopleValidator(ILibraryManager libraryManager, ILogger logger, IFileSystem fileSystem)        {            _libraryManager = libraryManager;            _logger = logger;            _fileSystem = fileSystem;        }        /// <summary>        /// Validates the people.        /// </summary>        /// <param name="cancellationToken">The cancellation token.</param>        /// <param name="progress">The progress.</param>        /// <returns>Task.</returns>        public async Task ValidatePeople(CancellationToken cancellationToken, IProgress<double> progress)        {            var people = _libraryManager.GetPeopleNames(new InternalPeopleQuery());            var numComplete = 0;            var numPeople = people.Count;            _logger.LogDebug("Will refresh {0} people", numPeople);            foreach (var person in people)            {                cancellationToken.ThrowIfCancellationRequested();                try                {                    var item = _libraryManager.GetPerson(person);                    var options = new MetadataRefreshOptions(new DirectoryService(_fileSystem))                    {                        ImageRefreshMode = MetadataRefreshMode.ValidationOnly,                        MetadataRefreshMode = MetadataRefreshMode.ValidationOnly                    };                    await item.RefreshMetadata(options, cancellationToken).ConfigureAwait(false);                }                catch (OperationCanceledException)                {                    throw;                }                catch (Exception ex)                {                    _logger.LogError(ex, "Error validating IBN entry {person}", person);                }                // Update progress                numComplete++;                double percent = numComplete;                percent /= numPeople;                progress.Report(100 * percent);            }            var deadEntities = _libraryManager.GetItemList(new InternalItemsQuery            {                IncludeItemTypes = new[] { typeof(Person).Name },                IsDeadPerson = true,                IsLocked = false            });            foreach (var item in deadEntities)            {                _logger.LogInformation(                    "Deleting dead {2} {0} {1}.",                    item.Id.ToString("N", CultureInfo.InvariantCulture),                    item.Name,                    item.GetType().Name);                _libraryManager.DeleteItem(                    item,                    new DeleteOptions                    {                        DeleteFileLocation = false                    },                    false);            }            progress.Report(100);            _logger.LogInformation("People validation complete");        }    }}
 |