2013-03-04 21:37:33 -08:00
|
|
|
using System;
|
2012-01-14 18:47:23 -08:00
|
|
|
using System.Linq;
|
2013-03-31 19:43:58 -07:00
|
|
|
using NzbDrone.Core.DataAugmentation;
|
|
|
|
using NzbDrone.Core.DataAugmentation.Scene;
|
2011-12-01 17:33:17 -08:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
2011-06-13 19:15:55 -07:00
|
|
|
|
2013-03-04 21:37:33 -08:00
|
|
|
namespace NzbDrone.Core.Jobs.Implementations
|
2011-06-13 19:15:55 -07:00
|
|
|
{
|
2011-12-01 17:45:19 -08:00
|
|
|
public class UpdateSceneMappingsJob : IJob
|
2011-06-13 19:15:55 -07:00
|
|
|
{
|
2013-03-02 10:25:39 -08:00
|
|
|
private readonly SceneMappingService _sceneNameMappingService;
|
2011-06-13 19:15:55 -07:00
|
|
|
|
2013-03-02 10:25:39 -08:00
|
|
|
public UpdateSceneMappingsJob(SceneMappingService sceneNameMappingService)
|
2011-06-13 19:15:55 -07:00
|
|
|
{
|
2013-03-02 10:25:39 -08:00
|
|
|
_sceneNameMappingService = sceneNameMappingService;
|
2011-06-13 19:15:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public UpdateSceneMappingsJob()
|
|
|
|
{
|
2011-06-23 18:30:35 -07:00
|
|
|
|
2011-06-13 19:15:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get { return "Update Scene Mappings"; }
|
|
|
|
}
|
|
|
|
|
2012-01-14 18:47:23 -08:00
|
|
|
public TimeSpan DefaultInterval
|
2011-06-13 19:15:55 -07:00
|
|
|
{
|
2013-01-26 11:42:32 -08:00
|
|
|
get { return TimeSpan.FromHours(6); }
|
2011-06-13 19:15:55 -07:00
|
|
|
}
|
|
|
|
|
2012-09-10 12:04:17 -07:00
|
|
|
public virtual void Start(ProgressNotification notification, dynamic options)
|
2011-06-13 19:15:55 -07:00
|
|
|
{
|
2013-03-02 10:25:39 -08:00
|
|
|
_sceneNameMappingService.UpdateMappings();
|
2011-06-13 19:15:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|