1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs

66 lines
1.5 KiB
C#
Raw Normal View History

2013-05-20 02:17:32 +03:00
using NLog;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.Notifications.Xbmc
{
2013-05-20 05:43:22 +03:00
public class Xbmc : NotificationBase<XbmcSettings>
2013-05-20 02:17:32 +03:00
{
2013-06-12 09:45:25 +03:00
private readonly IXbmcService _xbmcProvider;
2013-05-20 02:17:32 +03:00
2013-06-12 09:45:25 +03:00
public Xbmc(IXbmcService xbmcProvider, Logger logger)
2013-05-20 02:17:32 +03:00
{
_xbmcProvider = xbmcProvider;
}
public override string Name
{
get { return "XBMC"; }
}
public override string ImplementationName
{
get { return "XBMC"; }
2013-05-20 02:17:32 +03:00
}
public override void OnGrab(string message)
{
const string header = "NzbDrone [TV] - Grabbed";
2013-05-20 07:19:54 +03:00
if (Settings.Notify)
{
_xbmcProvider.Notify(Settings, header, message);
}
2013-05-20 02:17:32 +03:00
}
public override void OnDownload(string message, Series series)
{
const string header = "NzbDrone [TV] - Downloaded";
2013-05-20 07:19:54 +03:00
if (Settings.Notify)
{
_xbmcProvider.Notify(Settings, header, message);
}
2013-05-20 02:17:32 +03:00
UpdateAndClean(series);
}
public override void AfterRename(Series series)
{
UpdateAndClean(series);
}
private void UpdateAndClean(Series series)
{
if (Settings.UpdateLibrary)
{
_xbmcProvider.Update(Settings, series);
}
if (Settings.CleanLibrary)
{
_xbmcProvider.Clean(Settings);
}
}
}
}