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

49 lines
1.0 KiB
C#
Raw Normal View History

2013-05-20 02:17:32 +03:00
using NLog;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.Notifications.Plex
{
2013-05-20 05:43:22 +03:00
public class PlexServer : NotificationBase<PlexServerSettings>
2013-05-20 02:17:32 +03:00
{
private readonly IPlexService _plexProvider;
2013-05-20 02:17:32 +03:00
public PlexServer(IPlexService plexProvider)
2013-05-20 02:17:32 +03:00
{
_plexProvider = plexProvider;
}
public override string Name
{
get { return "Plex Server"; }
}
public override string ImplementationName
{
get { return "Plex Server"; }
}
2013-05-20 02:17:32 +03:00
public override void OnGrab(string message)
{
}
public override void OnDownload(string message, Series series)
{
UpdateIfEnabled();
}
public override void AfterRename(Series series)
{
UpdateIfEnabled();
}
private void UpdateIfEnabled()
{
if (Settings.UpdateLibrary)
{
_plexProvider.UpdateLibrary(Settings);
2013-05-20 02:17:32 +03:00
}
}
}
}