mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Core.Helpers;
|
|
using NzbDrone.Core.Model.Notification;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Jobs
|
|
{
|
|
public class XemUpdateJob : IJob
|
|
{
|
|
private readonly XemProvider _xemProvider;
|
|
|
|
private static readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
|
|
|
public XemUpdateJob(XemProvider xemProvider)
|
|
{
|
|
_xemProvider = xemProvider;
|
|
}
|
|
|
|
public XemUpdateJob()
|
|
{
|
|
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get { return "XEM Update"; }
|
|
}
|
|
|
|
public TimeSpan DefaultInterval
|
|
{
|
|
get { return TimeSpan.FromHours(12); }
|
|
}
|
|
|
|
public virtual void Start(ProgressNotification notification, dynamic options)
|
|
{
|
|
if (options == null || options.SeriesId == 0)
|
|
{
|
|
_logger.Trace("Starting XEM Update for all series");
|
|
_xemProvider.UpdateMappings();
|
|
}
|
|
|
|
else
|
|
{
|
|
_logger.Trace("Starting XEM Update for series: {0}", options.SeriesId);
|
|
_xemProvider.UpdateMappings((int)options.SeriesId);
|
|
}
|
|
|
|
_logger.Trace("XEM Update complete");
|
|
}
|
|
}
|
|
} |