using MediaBrowser.Common.ScheduledTasks;
using MediaBrowser.Controller.Library;
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller;
namespace MediaBrowser.Server.Implementations.ScheduledTasks
{
    /// 
    /// Class PeopleValidationTask
    /// 
    public class PeopleValidationTask : IScheduledTask
    {
        /// 
        /// The _library manager
        /// 
        private readonly ILibraryManager _libraryManager;
        private readonly IServerApplicationHost _appHost;
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The library manager.
        public PeopleValidationTask(ILibraryManager libraryManager, IServerApplicationHost appHost)
        {
            _libraryManager = libraryManager;
            _appHost = appHost;
        }
        /// 
        /// Creates the triggers that define when the task will run
        /// 
        /// IEnumerable{BaseTaskTrigger}.
        public IEnumerable GetDefaultTriggers()
        {
            // Randomize the default start hour because this operation can really hammer internet metadata providers
            var startHour = new Random(_appHost.SystemId.GetHashCode()).Next(0, 8);
            return new ITaskTrigger[]
                {
                    new DailyTrigger { TimeOfDay = TimeSpan.FromHours(startHour) },
                };
        }
        /// 
        /// Returns the task to be executed
        /// 
        /// The cancellation token.
        /// The progress.
        /// Task.
        public Task Execute(CancellationToken cancellationToken, IProgress progress)
        {
            return _libraryManager.ValidatePeople(cancellationToken, progress);
        }
        /// 
        /// Gets the name of the task
        /// 
        /// The name.
        public string Name
        {
            get { return "Refresh people"; }
        }
        /// 
        /// Gets the description.
        /// 
        /// The description.
        public string Description
        {
            get { return "Updates metadata for actors and directors in your media library."; }
        }
        /// 
        /// Gets the category.
        /// 
        /// The category.
        public string Category
        {
            get
            {
                return "Library";
            }
        }
    }
}