2016-08-04 04:38:58 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Validators
|
|
|
|
|
{
|
|
|
|
|
class GameGenresValidator
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _library manager
|
|
|
|
|
/// </summary>
|
2013-09-17 02:08:18 +00:00
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _logger
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
2015-01-17 18:15:09 +00:00
|
|
|
|
public GameGenresValidator(ILibraryManager libraryManager, ILogger logger)
|
2013-09-10 18:56:00 +00:00
|
|
|
|
{
|
|
|
|
|
_libraryManager = libraryManager;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Runs the specified progress.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="progress">The progress.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
public async Task Run(IProgress<double> progress, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2016-03-27 21:11:27 +00:00
|
|
|
|
var items = _libraryManager.RootFolder.GetRecursiveChildren(i => i is Game)
|
2014-03-09 22:14:44 +00:00
|
|
|
|
.SelectMany(i => i.Genres)
|
2015-04-09 21:11:57 +00:00
|
|
|
|
.DistinctNames()
|
2013-09-10 18:56:00 +00:00
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var numComplete = 0;
|
2014-03-09 22:14:44 +00:00
|
|
|
|
var count = items.Count;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2014-03-09 22:14:44 +00:00
|
|
|
|
foreach (var name in items)
|
2013-09-10 18:56:00 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2014-03-09 22:14:44 +00:00
|
|
|
|
var itemByName = _libraryManager.GetGameGenre(name);
|
|
|
|
|
|
|
|
|
|
await itemByName.RefreshMetadata(cancellationToken).ConfigureAwait(false);
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
2013-09-24 21:06:21 +00:00
|
|
|
|
catch (OperationCanceledException)
|
|
|
|
|
{
|
|
|
|
|
// Don't clutter the log
|
2013-10-18 19:08:48 +00:00
|
|
|
|
break;
|
2013-09-24 21:06:21 +00:00
|
|
|
|
}
|
2013-09-10 18:56:00 +00:00
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2014-03-09 22:14:44 +00:00
|
|
|
|
_logger.ErrorException("Error refreshing {0}", ex, name);
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
numComplete++;
|
|
|
|
|
double percent = numComplete;
|
2013-09-11 17:54:59 +00:00
|
|
|
|
percent /= count;
|
2015-01-17 18:15:09 +00:00
|
|
|
|
percent *= 100;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2015-01-17 18:15:09 +00:00
|
|
|
|
progress.Report(percent);
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
progress.Report(100);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|