jellyfin/Emby.Server.Implementations/EntryPoints/RefreshUsersMetadata.cs

78 lines
2.2 KiB
C#
Raw Normal View History

using System;
2017-09-18 12:52:22 -04:00
using System.Collections.Generic;
using System.Threading;
2017-09-18 12:52:22 -04:00
using System.Threading.Tasks;
using MediaBrowser.Controller.Library;
2017-09-18 12:52:22 -04:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Tasks;
namespace Emby.Server.Implementations.EntryPoints
{
/// <summary>
2019-11-01 13:38:54 -04:00
/// Class RefreshUsersMetadata.
/// </summary>
2017-09-18 12:52:22 -04:00
public class RefreshUsersMetadata : IScheduledTask, IConfigurableScheduledTask
{
/// <summary>
/// The user manager.
/// </summary>
private readonly IUserManager _userManager;
private readonly IFileSystem _fileSystem;
2017-09-18 12:52:22 -04:00
2019-11-01 13:38:54 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="RefreshUsersMetadata" /> class.
/// </summary>
public RefreshUsersMetadata(IUserManager userManager, IFileSystem fileSystem)
2019-11-01 13:38:54 -04:00
{
_userManager = userManager;
_fileSystem = fileSystem;
}
/// <inheritdoc />
2017-09-18 12:52:22 -04:00
public string Name => "Refresh Users";
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
2017-09-18 12:52:22 -04:00
public string Key => "RefreshUsers";
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
2017-09-18 12:52:22 -04:00
public string Description => "Refresh user infos";
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
public string Category => "Library";
2017-09-18 12:52:22 -04:00
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
2017-09-18 12:52:22 -04:00
public bool IsHidden => true;
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
2017-09-18 12:52:22 -04:00
public bool IsEnabled => true;
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
2017-09-18 12:52:22 -04:00
public bool IsLogged => true;
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
2017-09-18 12:52:22 -04:00
public async Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
{
2019-06-09 16:08:01 -04:00
foreach (var user in _userManager.Users)
2017-09-18 12:52:22 -04:00
{
cancellationToken.ThrowIfCancellationRequested();
2019-09-10 16:37:53 -04:00
await user.RefreshMetadata(new MetadataRefreshOptions(new DirectoryService(_fileSystem)), cancellationToken).ConfigureAwait(false);
2017-09-18 12:52:22 -04:00
}
}
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
2017-09-18 12:52:22 -04:00
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
{
2019-11-01 13:38:54 -04:00
return new[]
2017-09-18 12:52:22 -04:00
{
new TaskTriggerInfo
{
IntervalTicks = TimeSpan.FromDays(1).Ticks,
Type = TaskTriggerInfo.TriggerInterval
}
};
}
}
}