| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Globalization; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Threading; |
| | 6 | | using System.Threading.Tasks; |
| | 7 | | using MediaBrowser.Common.Configuration; |
| | 8 | | using MediaBrowser.Model.Globalization; |
| | 9 | | using MediaBrowser.Model.IO; |
| | 10 | | using MediaBrowser.Model.Tasks; |
| | 11 | |
|
| | 12 | | namespace Emby.Server.Implementations.ScheduledTasks.Tasks |
| | 13 | | { |
| | 14 | | /// <summary> |
| | 15 | | /// Deletes old log files. |
| | 16 | | /// </summary> |
| | 17 | | public class DeleteLogFileTask : IScheduledTask, IConfigurableScheduledTask |
| | 18 | | { |
| | 19 | | private readonly IConfigurationManager _configurationManager; |
| | 20 | | private readonly IFileSystem _fileSystem; |
| | 21 | | private readonly ILocalizationManager _localization; |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// Initializes a new instance of the <see cref="DeleteLogFileTask" /> class. |
| | 25 | | /// </summary> |
| | 26 | | /// <param name="configurationManager">Instance of the <see cref="IConfigurationManager"/> interface.</param> |
| | 27 | | /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param> |
| | 28 | | /// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param> |
| | 29 | | public DeleteLogFileTask(IConfigurationManager configurationManager, IFileSystem fileSystem, ILocalizationManage |
| | 30 | | { |
| 21 | 31 | | _configurationManager = configurationManager; |
| 21 | 32 | | _fileSystem = fileSystem; |
| 21 | 33 | | _localization = localization; |
| 21 | 34 | | } |
| | 35 | |
|
| | 36 | | /// <inheritdoc /> |
| 21 | 37 | | public string Name => _localization.GetLocalizedString("TaskCleanLogs"); |
| | 38 | |
|
| | 39 | | /// <inheritdoc /> |
| 0 | 40 | | public string Description => string.Format( |
| 0 | 41 | | CultureInfo.InvariantCulture, |
| 0 | 42 | | _localization.GetLocalizedString("TaskCleanLogsDescription"), |
| 0 | 43 | | _configurationManager.CommonConfiguration.LogFileRetentionDays); |
| | 44 | |
|
| | 45 | | /// <inheritdoc /> |
| 0 | 46 | | public string Category => _localization.GetLocalizedString("TasksMaintenanceCategory"); |
| | 47 | |
|
| | 48 | | /// <inheritdoc /> |
| 0 | 49 | | public string Key => "CleanLogFiles"; |
| | 50 | |
|
| | 51 | | /// <inheritdoc /> |
| 0 | 52 | | public bool IsHidden => false; |
| | 53 | |
|
| | 54 | | /// <inheritdoc /> |
| 0 | 55 | | public bool IsEnabled => true; |
| | 56 | |
|
| | 57 | | /// <inheritdoc /> |
| 0 | 58 | | public bool IsLogged => true; |
| | 59 | |
|
| | 60 | | /// <inheritdoc /> |
| | 61 | | public IEnumerable<TaskTriggerInfo> GetDefaultTriggers() |
| | 62 | | { |
| 21 | 63 | | return |
| 21 | 64 | | [ |
| 21 | 65 | | new TaskTriggerInfo { Type = TaskTriggerInfoType.IntervalTrigger, IntervalTicks = TimeSpan.FromHours(24) |
| 21 | 66 | | ]; |
| | 67 | | } |
| | 68 | |
|
| | 69 | | /// <inheritdoc /> |
| | 70 | | public Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken) |
| | 71 | | { |
| | 72 | | // Delete log files more than n days old |
| 0 | 73 | | var minDateModified = DateTime.UtcNow.AddDays(-_configurationManager.CommonConfiguration.LogFileRetentionDay |
| | 74 | |
|
| | 75 | | // Only delete files that serilog doesn't manage (anything that doesn't start with 'log_' |
| 0 | 76 | | var filesToDelete = _fileSystem.GetFiles(_configurationManager.CommonApplicationPaths.LogDirectoryPath, true |
| 0 | 77 | | .Where(f => !f.Name.StartsWith("log_", StringComparison.Ordinal) |
| 0 | 78 | | && _fileSystem.GetLastWriteTimeUtc(f) < minDateModified) |
| 0 | 79 | | .ToList(); |
| | 80 | |
|
| 0 | 81 | | var index = 0; |
| | 82 | |
|
| 0 | 83 | | foreach (var file in filesToDelete) |
| | 84 | | { |
| 0 | 85 | | double percent = index / (double)filesToDelete.Count; |
| | 86 | |
|
| 0 | 87 | | progress.Report(100 * percent); |
| | 88 | |
|
| 0 | 89 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 90 | |
|
| 0 | 91 | | _fileSystem.DeleteFile(file.FullName); |
| | 92 | |
|
| 0 | 93 | | index++; |
| | 94 | | } |
| | 95 | |
|
| 0 | 96 | | progress.Report(100); |
| | 97 | |
|
| 0 | 98 | | return Task.CompletedTask; |
| | 99 | | } |
| | 100 | | } |
| | 101 | | } |