mirror of
https://github.com/Radarr/Radarr
synced 2025-12-19 23:03:56 +01:00
* Bare bones of notifications working. * Add MovieDownload event handler To allow Download notificaitons * Update pushover text to indicate movie * Initial Notification Support On Download and On Grab notifications should work. * Telegram Notification Text * Update Custom Script For Movies * Update PP script WiKi page Also added wiki page to Radarr wiki.
55 lines
1.5 KiB
C#
55 lines
1.5 KiB
C#
|
|
using System.Collections.Generic;
|
|
using FluentValidation.Results;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications.NotifyMyAndroid
|
|
{
|
|
public class NotifyMyAndroid : NotificationBase<NotifyMyAndroidSettings>
|
|
{
|
|
private readonly INotifyMyAndroidProxy _proxy;
|
|
|
|
public NotifyMyAndroid(INotifyMyAndroidProxy proxy)
|
|
{
|
|
_proxy = proxy;
|
|
}
|
|
|
|
public override string Link => "http://www.notifymyandroid.com/";
|
|
|
|
public override void OnGrab(GrabMessage grabMessage)
|
|
{
|
|
const string title = "Movie Grabbed";
|
|
|
|
_proxy.SendNotification(title, grabMessage.Message, Settings.ApiKey, (NotifyMyAndroidPriority)Settings.Priority);
|
|
}
|
|
|
|
public override void OnDownload(DownloadMessage message)
|
|
{
|
|
const string title = "Movie Downloaded";
|
|
|
|
_proxy.SendNotification(title, message.Message, Settings.ApiKey, (NotifyMyAndroidPriority)Settings.Priority);
|
|
}
|
|
|
|
public override void OnMovieRename(Movie movie)
|
|
{
|
|
}
|
|
|
|
public override void OnRename(Series series)
|
|
{
|
|
}
|
|
|
|
public override string Name => "Notify My Android";
|
|
|
|
public override bool SupportsOnRename => false;
|
|
|
|
public override ValidationResult Test()
|
|
{
|
|
var failures = new List<ValidationFailure>();
|
|
|
|
failures.AddIfNotNull(_proxy.Test(Settings));
|
|
|
|
return new ValidationResult(failures);
|
|
}
|
|
}
|
|
}
|