| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 | #pragma warning disable CS1591using System;using System.Linq;using System.Threading;using System.Threading.Tasks;using Jellyfin.Server.Implementations;using MediaBrowser.Controller.Entities;using MediaBrowser.Controller.Library;using Microsoft.EntityFrameworkCore;using Microsoft.Extensions.Logging;namespace Emby.Server.Implementations.Data{    public class CleanDatabaseScheduledTask : ILibraryPostScanTask    {        private readonly ILibraryManager _libraryManager;        private readonly ILogger<CleanDatabaseScheduledTask> _logger;        private readonly IDbContextFactory<JellyfinDbContext> _dbProvider;        public CleanDatabaseScheduledTask(            ILibraryManager libraryManager,            ILogger<CleanDatabaseScheduledTask> logger,            IDbContextFactory<JellyfinDbContext> dbProvider)        {            _libraryManager = libraryManager;            _logger = logger;            _dbProvider = dbProvider;        }        public async Task Run(IProgress<double> progress, CancellationToken cancellationToken)        {            await CleanDeadItems(cancellationToken, progress).ConfigureAwait(false);        }        private async Task CleanDeadItems(CancellationToken cancellationToken, IProgress<double> progress)        {            var itemIds = _libraryManager.GetItemIds(new InternalItemsQuery            {                HasDeadParentId = true            });            var numComplete = 0;            var numItems = itemIds.Count + 1;            _logger.LogDebug("Cleaning {0} items with dead parent links", numItems);            foreach (var itemId in itemIds)            {                cancellationToken.ThrowIfCancellationRequested();                var item = _libraryManager.GetItemById(itemId);                if (item is not null)                {                    _logger.LogInformation("Cleaning item {0} type: {1} path: {2}", item.Name, item.GetType().Name, item.Path ?? string.Empty);                    _libraryManager.DeleteItem(item, new DeleteOptions                    {                        DeleteFileLocation = false                    });                }                numComplete++;                double percent = numComplete;                percent /= numItems;                progress.Report(percent * 100);            }            var context = await _dbProvider.CreateDbContextAsync(cancellationToken).ConfigureAwait(false);            await using (context.ConfigureAwait(false))            {                var transaction = await context.Database.BeginTransactionAsync(cancellationToken).ConfigureAwait(false);                await using (transaction.ConfigureAwait(false))                {                    await context.ItemValues.Where(e => e.BaseItemsMap!.Count == 0).ExecuteDeleteAsync(cancellationToken).ConfigureAwait(false);                    await transaction.CommitAsync(cancellationToken).ConfigureAwait(false);                }            }            progress.Report(100);        }    }}
 |