| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Threading; |
| | 4 | | using System.Threading.Tasks; |
| | 5 | | using MediaBrowser.Controller.Configuration; |
| | 6 | | using MediaBrowser.Model.Activity; |
| | 7 | | using MediaBrowser.Model.Globalization; |
| | 8 | | using MediaBrowser.Model.Tasks; |
| | 9 | |
|
| | 10 | | namespace Emby.Server.Implementations.ScheduledTasks.Tasks |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Deletes old activity log entries. |
| | 14 | | /// </summary> |
| | 15 | | public class CleanActivityLogTask : IScheduledTask, IConfigurableScheduledTask |
| | 16 | | { |
| | 17 | | private readonly ILocalizationManager _localization; |
| | 18 | | private readonly IActivityManager _activityManager; |
| | 19 | | private readonly IServerConfigurationManager _serverConfigurationManager; |
| | 20 | |
|
| | 21 | | /// <summary> |
| | 22 | | /// Initializes a new instance of the <see cref="CleanActivityLogTask"/> class. |
| | 23 | | /// </summary> |
| | 24 | | /// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param> |
| | 25 | | /// <param name="activityManager">Instance of the <see cref="IActivityManager"/> interface.</param> |
| | 26 | | /// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface |
| | 27 | | public CleanActivityLogTask( |
| | 28 | | ILocalizationManager localization, |
| | 29 | | IActivityManager activityManager, |
| | 30 | | IServerConfigurationManager serverConfigurationManager) |
| | 31 | | { |
| 21 | 32 | | _localization = localization; |
| 21 | 33 | | _activityManager = activityManager; |
| 21 | 34 | | _serverConfigurationManager = serverConfigurationManager; |
| 21 | 35 | | } |
| | 36 | |
|
| | 37 | | /// <inheritdoc /> |
| 0 | 38 | | public string Name => _localization.GetLocalizedString("TaskCleanActivityLog"); |
| | 39 | |
|
| | 40 | | /// <inheritdoc /> |
| 0 | 41 | | public string Key => "CleanActivityLog"; |
| | 42 | |
|
| | 43 | | /// <inheritdoc /> |
| 0 | 44 | | public string Description => _localization.GetLocalizedString("TaskCleanActivityLogDescription"); |
| | 45 | |
|
| | 46 | | /// <inheritdoc /> |
| 0 | 47 | | public string Category => _localization.GetLocalizedString("TasksMaintenanceCategory"); |
| | 48 | |
|
| | 49 | | /// <inheritdoc /> |
| 0 | 50 | | public bool IsHidden => false; |
| | 51 | |
|
| | 52 | | /// <inheritdoc /> |
| 0 | 53 | | public bool IsEnabled => true; |
| | 54 | |
|
| | 55 | | /// <inheritdoc /> |
| 0 | 56 | | public bool IsLogged => true; |
| | 57 | |
|
| | 58 | | /// <inheritdoc /> |
| | 59 | | public Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken) |
| | 60 | | { |
| 0 | 61 | | var retentionDays = _serverConfigurationManager.Configuration.ActivityLogRetentionDays; |
| 0 | 62 | | if (!retentionDays.HasValue || retentionDays < 0) |
| | 63 | | { |
| 0 | 64 | | throw new InvalidOperationException($"Activity Log Retention days must be at least 0. Currently: {retent |
| | 65 | | } |
| | 66 | |
|
| 0 | 67 | | var startDate = DateTime.UtcNow.AddDays(-retentionDays.Value); |
| 0 | 68 | | return _activityManager.CleanAsync(startDate); |
| | 69 | | } |
| | 70 | |
|
| | 71 | | /// <inheritdoc /> |
| | 72 | | public IEnumerable<TaskTriggerInfo> GetDefaultTriggers() |
| | 73 | | { |
| 21 | 74 | | return []; |
| | 75 | | } |
| | 76 | | } |
| | 77 | | } |