mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
39 lines
1019 B
C#
39 lines
1019 B
C#
using NzbDrone.Core.Tv;
|
|
using Prowlin;
|
|
|
|
namespace NzbDrone.Core.Notifications.Prowl
|
|
{
|
|
public class Prowl : NotificationWithSetting<ProwlSettings>
|
|
{
|
|
private readonly ProwlProvider _prowlProvider;
|
|
|
|
public Prowl(ProwlProvider prowlProvider)
|
|
{
|
|
_prowlProvider = prowlProvider;
|
|
}
|
|
|
|
public override string Name
|
|
{
|
|
get { return "Prowl"; }
|
|
}
|
|
|
|
public override void OnGrab(string message)
|
|
{
|
|
const string title = "Episode Grabbed";
|
|
|
|
_prowlProvider.SendNotification(title, message, Settings.ApiKey, (NotificationPriority)Settings.Priority);
|
|
}
|
|
|
|
public override void OnDownload(string message, Series series)
|
|
{
|
|
const string title = "Episode Downloaded";
|
|
|
|
_prowlProvider.SendNotification(title, message, Settings.ApiKey, (NotificationPriority)Settings.Priority);
|
|
}
|
|
|
|
public override void AfterRename(Series series)
|
|
{
|
|
}
|
|
}
|
|
}
|