mirror of
https://github.com/Radarr/Radarr
synced 2026-05-04 22:00:50 +02:00
41 lines
915 B
C#
41 lines
915 B
C#
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
{
|
|
public class PlexServer : NotificationBase<PlexServerSettings>
|
|
{
|
|
private readonly IPlexService _plexProvider;
|
|
|
|
public PlexServer(IPlexService plexProvider)
|
|
{
|
|
_plexProvider = plexProvider;
|
|
}
|
|
|
|
public override string Link
|
|
{
|
|
get { return "http://www.plexapp.com/"; }
|
|
}
|
|
|
|
public override void OnGrab(string message)
|
|
{
|
|
}
|
|
|
|
public override void OnDownload(DownloadMessage message)
|
|
{
|
|
UpdateIfEnabled();
|
|
}
|
|
|
|
public override void AfterRename(Series series)
|
|
{
|
|
UpdateIfEnabled();
|
|
}
|
|
|
|
private void UpdateIfEnabled()
|
|
{
|
|
if (Settings.UpdateLibrary)
|
|
{
|
|
_plexProvider.UpdateLibrary(Settings);
|
|
}
|
|
}
|
|
}
|
|
}
|