mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
8cac7ed1cd
Notification ImplementationType was added for showing in UI (Humanized/Title cased of Implementation)
43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
using NLog;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
{
|
|
public class PlexClient : NotificationBase<PlexClientSettings>
|
|
{
|
|
private readonly IPlexService _plexProvider;
|
|
|
|
public PlexClient(IPlexService plexProvider)
|
|
{
|
|
_plexProvider = plexProvider;
|
|
}
|
|
|
|
public override string Name
|
|
{
|
|
get { return "Plex Client"; }
|
|
}
|
|
|
|
public override string ImplementationName
|
|
{
|
|
get { return "Plex Client"; }
|
|
}
|
|
|
|
public override void OnGrab(string message)
|
|
{
|
|
const string header = "NzbDrone [TV] - Grabbed";
|
|
_plexProvider.Notify(Settings, header, message);
|
|
}
|
|
|
|
public override void OnDownload(string message, Series series)
|
|
{
|
|
const string header = "NzbDrone [TV] - Downloaded";
|
|
_plexProvider.Notify(Settings, header, message);
|
|
}
|
|
|
|
public override void AfterRename(Series series)
|
|
{
|
|
}
|
|
}
|
|
}
|