2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2016-10-29 05:40:15 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2024-06-25 00:28:58 +00:00
|
|
|
using MediaBrowser.Controller.IO;
|
2020-08-31 20:20:19 +00:00
|
|
|
using MediaBrowser.Model.Globalization;
|
2016-10-29 05:40:15 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
using MediaBrowser.Model.Tasks;
|
2019-01-13 19:22:24 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2016-10-29 05:40:15 +00:00
|
|
|
|
2017-08-16 06:43:41 +00:00
|
|
|
namespace Emby.Server.Implementations.ScheduledTasks.Tasks
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Deletes old cache files.
|
2016-10-29 05:40:15 +00:00
|
|
|
/// </summary>
|
|
|
|
public class DeleteCacheFileTask : IScheduledTask, IConfigurableScheduledTask
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the application paths.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The application paths.</value>
|
2020-08-31 20:20:19 +00:00
|
|
|
private readonly IApplicationPaths _applicationPaths;
|
2020-06-06 00:15:56 +00:00
|
|
|
private readonly ILogger<DeleteCacheFileTask> _logger;
|
2016-10-29 05:40:15 +00:00
|
|
|
private readonly IFileSystem _fileSystem;
|
2020-03-26 19:28:30 +00:00
|
|
|
private readonly ILocalizationManager _localization;
|
2016-10-29 05:40:15 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="DeleteCacheFileTask" /> class.
|
|
|
|
/// </summary>
|
2021-09-03 16:46:34 +00:00
|
|
|
/// <param name="appPaths">Instance of the <see cref="IApplicationPaths"/> interface.</param>
|
|
|
|
/// <param name="logger">Instance of the <see cref="ILogger"/> interface.</param>
|
|
|
|
/// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
|
|
|
|
/// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param>
|
2020-03-03 22:07:10 +00:00
|
|
|
public DeleteCacheFileTask(
|
|
|
|
IApplicationPaths appPaths,
|
|
|
|
ILogger<DeleteCacheFileTask> logger,
|
2020-03-26 21:26:25 +00:00
|
|
|
IFileSystem fileSystem,
|
|
|
|
ILocalizationManager localization)
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
2020-08-31 20:20:19 +00:00
|
|
|
_applicationPaths = appPaths;
|
2016-10-29 05:40:15 +00:00
|
|
|
_logger = logger;
|
|
|
|
_fileSystem = fileSystem;
|
2020-03-26 21:26:25 +00:00
|
|
|
_localization = localization;
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
|
2020-08-31 20:20:19 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public string Name => _localization.GetLocalizedString("TaskCleanCache");
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Description => _localization.GetLocalizedString("TaskCleanCacheDescription");
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Category => _localization.GetLocalizedString("TasksMaintenanceCategory");
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Key => "DeleteCacheFiles";
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool IsHidden => false;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool IsEnabled => true;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool IsLogged => true;
|
|
|
|
|
2016-10-29 05:40:15 +00:00
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Creates the triggers that define when the task will run.
|
2016-10-29 05:40:15 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
|
|
|
|
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
|
|
|
|
{
|
2020-08-31 20:20:19 +00:00
|
|
|
return new[]
|
|
|
|
{
|
2016-10-29 05:40:15 +00:00
|
|
|
// Every so often
|
2020-10-12 17:22:33 +00:00
|
|
|
new TaskTriggerInfo { Type = TaskTriggerInfo.TriggerInterval, IntervalTicks = TimeSpan.FromHours(24).Ticks }
|
2016-10-29 05:40:15 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-02-15 17:59:46 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken)
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
|
|
|
var minDateModified = DateTime.UtcNow.AddDays(-30);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2022-02-15 17:59:46 +00:00
|
|
|
DeleteCacheFilesFromDirectory(_applicationPaths.CachePath, minDateModified, progress, cancellationToken);
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
catch (DirectoryNotFoundException)
|
|
|
|
{
|
|
|
|
// No biggie here. Nothing to delete
|
|
|
|
}
|
|
|
|
|
|
|
|
progress.Report(90);
|
|
|
|
|
|
|
|
minDateModified = DateTime.UtcNow.AddDays(-1);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2022-02-15 17:59:46 +00:00
|
|
|
DeleteCacheFilesFromDirectory(_applicationPaths.TempDirectory, minDateModified, progress, cancellationToken);
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
catch (DirectoryNotFoundException)
|
|
|
|
{
|
|
|
|
// No biggie here. Nothing to delete
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
return Task.CompletedTask;
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Deletes the cache files from directory with a last write time less than a given date.
|
2016-10-29 05:40:15 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="directory">The directory.</param>
|
|
|
|
/// <param name="minDateModified">The min date modified.</param>
|
|
|
|
/// <param name="progress">The progress.</param>
|
2022-02-15 17:59:46 +00:00
|
|
|
/// <param name="cancellationToken">The task cancellation token.</param>
|
|
|
|
private void DeleteCacheFilesFromDirectory(string directory, DateTime minDateModified, IProgress<double> progress, CancellationToken cancellationToken)
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
|
|
|
var filesToDelete = _fileSystem.GetFiles(directory, true)
|
|
|
|
.Where(f => _fileSystem.GetLastWriteTimeUtc(f) < minDateModified)
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
var index = 0;
|
|
|
|
|
|
|
|
foreach (var file in filesToDelete)
|
|
|
|
{
|
|
|
|
double percent = index;
|
|
|
|
percent /= filesToDelete.Count;
|
|
|
|
|
|
|
|
progress.Report(100 * percent);
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
2024-06-25 00:28:58 +00:00
|
|
|
FileSystemHelper.DeleteFile(_fileSystem, file.FullName, _logger);
|
2016-10-29 05:40:15 +00:00
|
|
|
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
|
2024-06-25 00:28:58 +00:00
|
|
|
FileSystemHelper.DeleteEmptyFolders(_fileSystem, directory, _logger);
|
2016-10-29 05:40:15 +00:00
|
|
|
|
|
|
|
progress.Report(100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|