mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
2aeec97d5e
(cherry picked from commit f6e6bc98f7846328d158ab2f804ca65b49632912)
60 lines
1.8 KiB
C#
60 lines
1.8 KiB
C#
using System.Collections.Generic;
|
|
using FluentValidation.Results;
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
namespace NzbDrone.Core.Notifications.Ntfy
|
|
{
|
|
public class Ntfy : NotificationBase<NtfySettings>
|
|
{
|
|
private readonly INtfyProxy _proxy;
|
|
|
|
public Ntfy(INtfyProxy proxy)
|
|
{
|
|
_proxy = proxy;
|
|
}
|
|
|
|
public override string Name => "ntfy.sh";
|
|
|
|
public override string Link => "https://ntfy.sh/";
|
|
|
|
public override void OnGrab(GrabMessage grabMessage)
|
|
{
|
|
_proxy.SendNotification(BOOK_GRABBED_TITLE_BRANDED, grabMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnReleaseImport(BookDownloadMessage message)
|
|
{
|
|
_proxy.SendNotification(BOOK_DOWNLOADED_TITLE_BRANDED, message.Message, Settings);
|
|
}
|
|
|
|
public override void OnAuthorDelete(AuthorDeleteMessage deleteMessage)
|
|
{
|
|
_proxy.SendNotification(AUTHOR_DELETED_TITLE, deleteMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnBookDelete(BookDeleteMessage deleteMessage)
|
|
{
|
|
_proxy.SendNotification(BOOK_DELETED_TITLE, deleteMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnBookFileDelete(BookFileDeleteMessage deleteMessage)
|
|
{
|
|
_proxy.SendNotification(BOOK_FILE_DELETED_TITLE, deleteMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnHealthIssue(HealthCheck.HealthCheck healthCheck)
|
|
{
|
|
_proxy.SendNotification(HEALTH_ISSUE_TITLE_BRANDED, healthCheck.Message, Settings);
|
|
}
|
|
|
|
public override ValidationResult Test()
|
|
{
|
|
var failures = new List<ValidationFailure>();
|
|
|
|
failures.AddIfNotNull(_proxy.Test(Settings));
|
|
|
|
return new ValidationResult(failures);
|
|
}
|
|
}
|
|
}
|