2013-03-05 05:37:33 +00:00
|
|
|
using System;
|
2013-02-24 06:48:52 +00:00
|
|
|
using NzbDrone.Core.Configuration;
|
2013-02-21 07:07:34 +00:00
|
|
|
using NzbDrone.Core.Indexers;
|
2011-04-20 07:44:13 +00:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
2011-04-20 01:20:20 +00:00
|
|
|
|
2013-03-05 05:37:33 +00:00
|
|
|
namespace NzbDrone.Core.Jobs.Implementations
|
2011-04-20 01:20:20 +00:00
|
|
|
{
|
2011-04-20 07:44:13 +00:00
|
|
|
public class RssSyncJob : IJob
|
2011-04-20 01:20:20 +00:00
|
|
|
{
|
2013-04-23 06:06:05 +00:00
|
|
|
private readonly IRssSyncService _rssSyncServiceService;
|
2013-02-24 06:48:52 +00:00
|
|
|
private readonly IConfigService _configService;
|
2011-04-22 06:23:29 +00:00
|
|
|
|
2011-04-20 01:20:20 +00:00
|
|
|
|
2013-04-23 06:06:05 +00:00
|
|
|
public RssSyncJob(IRssSyncService rssSyncServiceService, IConfigService configService)
|
2011-04-20 01:20:20 +00:00
|
|
|
{
|
2013-04-23 06:06:05 +00:00
|
|
|
_rssSyncServiceService = rssSyncServiceService;
|
2013-02-24 06:48:52 +00:00
|
|
|
_configService = configService;
|
2011-04-20 01:20:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get { return "RSS Sync"; }
|
|
|
|
}
|
|
|
|
|
2012-01-15 02:47:23 +00:00
|
|
|
public TimeSpan DefaultInterval
|
2011-04-20 01:20:20 +00:00
|
|
|
{
|
2013-02-24 06:48:52 +00:00
|
|
|
get { return TimeSpan.FromMinutes(_configService.RssSyncInterval); }
|
2011-04-20 01:20:20 +00:00
|
|
|
}
|
|
|
|
|
2012-09-10 19:04:17 +00:00
|
|
|
public void Start(ProgressNotification notification, dynamic options)
|
2011-04-20 01:20:20 +00:00
|
|
|
{
|
2013-04-23 06:06:05 +00:00
|
|
|
_rssSyncServiceService.Sync();
|
2011-04-20 01:20:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|