You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications.NotifyMyAndroid
|
|
{
|
|
public class NotifyMyAndroid : NotificationBase<NotifyMyAndroidSettings>
|
|
{
|
|
private readonly INotifyMyAndroidProxy _notifyMyAndroidProxy;
|
|
|
|
public NotifyMyAndroid(INotifyMyAndroidProxy notifyMyAndroidProxy)
|
|
{
|
|
_notifyMyAndroidProxy = notifyMyAndroidProxy;
|
|
}
|
|
|
|
public override string Name
|
|
{
|
|
get { return "NotifyMyAndroid"; }
|
|
}
|
|
|
|
public override string ImplementationName
|
|
{
|
|
get { return "NotifyMyAndroid"; }
|
|
}
|
|
|
|
public override string Link
|
|
{
|
|
get { return "http://www.notifymyandroid.com/"; }
|
|
}
|
|
|
|
public override void OnGrab(string message)
|
|
{
|
|
const string title = "Episode Grabbed";
|
|
|
|
_notifyMyAndroidProxy.SendNotification(title, message, Settings.ApiKey, (NotifyMyAndroidPriority)Settings.Priority);
|
|
}
|
|
|
|
public override void OnDownload(string message, Series series)
|
|
{
|
|
const string title = "Episode Downloaded";
|
|
|
|
_notifyMyAndroidProxy.SendNotification(title, message, Settings.ApiKey, (NotifyMyAndroidPriority)Settings.Priority);
|
|
}
|
|
|
|
public override void AfterRename(Series series)
|
|
{
|
|
}
|
|
}
|
|
}
|