2019-08-14 05:51:46 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2019-11-08 11:49:00 +00:00
|
|
|
using MediaBrowser.Common.Configuration;
|
2024-06-25 00:28:58 +00:00
|
|
|
using MediaBrowser.Controller.IO;
|
2020-11-20 15:12:38 +00:00
|
|
|
using MediaBrowser.Model.Globalization;
|
2019-08-14 05:51:46 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
using MediaBrowser.Model.Tasks;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.ScheduledTasks.Tasks
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Deletes all transcoding temp files.
|
2019-08-14 05:51:46 +00:00
|
|
|
/// </summary>
|
2019-08-29 07:14:50 +00:00
|
|
|
public class DeleteTranscodeFileTask : IScheduledTask, IConfigurableScheduledTask
|
2019-08-14 05:51:46 +00:00
|
|
|
{
|
2020-06-06 00:15:56 +00:00
|
|
|
private readonly ILogger<DeleteTranscodeFileTask> _logger;
|
2019-11-08 11:49:00 +00:00
|
|
|
private readonly IConfigurationManager _configurationManager;
|
2019-08-14 05:51:46 +00:00
|
|
|
private readonly IFileSystem _fileSystem;
|
2020-03-26 19:28:30 +00:00
|
|
|
private readonly ILocalizationManager _localization;
|
2019-08-14 05:51:46 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-11-20 15:12:38 +00:00
|
|
|
/// Initializes a new instance of the <see cref="DeleteTranscodeFileTask"/> class.
|
2019-08-14 05:51:46 +00:00
|
|
|
/// </summary>
|
2020-11-20 15:12:38 +00:00
|
|
|
/// <param name="logger">Instance of the <see cref="ILogger{DeleteTranscodeFileTask}"/> interface.</param>
|
|
|
|
/// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
|
|
|
|
/// <param name="configurationManager">Instance of the <see cref="IConfigurationManager"/> interface.</param>
|
|
|
|
/// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param>
|
2020-03-03 22:07:10 +00:00
|
|
|
public DeleteTranscodeFileTask(
|
|
|
|
ILogger<DeleteTranscodeFileTask> logger,
|
|
|
|
IFileSystem fileSystem,
|
2020-03-26 21:26:25 +00:00
|
|
|
IConfigurationManager configurationManager,
|
|
|
|
ILocalizationManager localization)
|
2019-08-14 05:51:46 +00:00
|
|
|
{
|
|
|
|
_logger = logger;
|
|
|
|
_fileSystem = fileSystem;
|
2019-11-08 11:49:00 +00:00
|
|
|
_configurationManager = configurationManager;
|
2020-03-26 21:26:25 +00:00
|
|
|
_localization = localization;
|
2019-08-14 05:51:46 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 15:12:38 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public string Name => _localization.GetLocalizedString("TaskCleanTranscode");
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Description => _localization.GetLocalizedString("TaskCleanTranscodeDescription");
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Category => _localization.GetLocalizedString("TasksMaintenanceCategory");
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Key => "DeleteTranscodeFiles";
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool IsHidden => false;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool IsEnabled => true;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool IsLogged => true;
|
|
|
|
|
2024-07-15 12:55:31 +00:00
|
|
|
/// <inheritdoc />
|
2020-11-20 15:12:38 +00:00
|
|
|
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
|
|
|
|
{
|
|
|
|
return new[]
|
|
|
|
{
|
2024-07-15 12:55:31 +00:00
|
|
|
new TaskTriggerInfo
|
|
|
|
{
|
|
|
|
Type = TaskTriggerInfo.TriggerStartup
|
|
|
|
},
|
2020-11-20 15:12:38 +00:00
|
|
|
new TaskTriggerInfo
|
|
|
|
{
|
|
|
|
Type = TaskTriggerInfo.TriggerInterval,
|
|
|
|
IntervalTicks = TimeSpan.FromHours(24).Ticks
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2019-08-14 05:51:46 +00:00
|
|
|
|
2022-02-15 17:59:46 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken)
|
2019-08-14 05:51:46 +00:00
|
|
|
{
|
|
|
|
var minDateModified = DateTime.UtcNow.AddDays(-1);
|
|
|
|
progress.Report(50);
|
|
|
|
|
2022-02-15 17:59:46 +00:00
|
|
|
DeleteTempFilesFromDirectory(_configurationManager.GetTranscodePath(), minDateModified, progress, cancellationToken);
|
2019-08-14 05:51:46 +00:00
|
|
|
|
|
|
|
return Task.CompletedTask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2019-11-17 22:05:39 +00:00
|
|
|
/// Deletes the transcoded temp files from directory with a last write time less than a given date.
|
2019-08-14 05:51:46 +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 DeleteTempFilesFromDirectory(string directory, DateTime minDateModified, IProgress<double> progress, CancellationToken cancellationToken)
|
2019-08-14 05:51:46 +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);
|
2019-08-14 05:51:46 +00:00
|
|
|
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
|
2024-06-25 00:28:58 +00:00
|
|
|
FileSystemHelper.DeleteEmptyFolders(_fileSystem, directory, _logger);
|
2019-08-14 05:51:46 +00:00
|
|
|
|
|
|
|
progress.Report(100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|