mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
9918535509
(cherry picked from commit https://github.com/Radarr/Radarr/commit/f890aadffa5ae579bcf65abdcf3e3948837084a9)
80 lines
2.5 KiB
C#
80 lines
2.5 KiB
C#
using System.Collections.Generic;
|
|
using FluentValidation.Results;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Books;
|
|
|
|
namespace NzbDrone.Core.Notifications.Telegram
|
|
{
|
|
public class Telegram : NotificationBase<TelegramSettings>
|
|
{
|
|
private readonly ITelegramProxy _proxy;
|
|
|
|
public Telegram(ITelegramProxy proxy)
|
|
{
|
|
_proxy = proxy;
|
|
}
|
|
|
|
public override string Name => "Telegram";
|
|
public override string Link => "https://telegram.org/";
|
|
|
|
public override void OnGrab(GrabMessage grabMessage)
|
|
{
|
|
_proxy.SendNotification(BOOK_GRABBED_TITLE, grabMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnReleaseImport(BookDownloadMessage message)
|
|
{
|
|
_proxy.SendNotification(BOOK_DOWNLOADED_TITLE, message.Message, Settings);
|
|
}
|
|
|
|
public override void OnAuthorAdded(Author author)
|
|
{
|
|
_proxy.SendNotification(AUTHOR_ADDED_TITLE, author.Name, 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, healthCheck.Message, Settings);
|
|
}
|
|
|
|
public override void OnDownloadFailure(DownloadFailedMessage message)
|
|
{
|
|
_proxy.SendNotification(DOWNLOAD_FAILURE_TITLE, message.Message, Settings);
|
|
}
|
|
|
|
public override void OnImportFailure(BookDownloadMessage message)
|
|
{
|
|
_proxy.SendNotification(IMPORT_FAILURE_TITLE, message.Message, Settings);
|
|
}
|
|
|
|
public override void OnApplicationUpdate(ApplicationUpdateMessage updateMessage)
|
|
{
|
|
_proxy.SendNotification(APPLICATION_UPDATE_TITLE, updateMessage.Message, Settings);
|
|
}
|
|
|
|
public override ValidationResult Test()
|
|
{
|
|
var failures = new List<ValidationFailure>();
|
|
|
|
failures.AddIfNotNull(_proxy.Test(Settings));
|
|
|
|
return new ValidationResult(failures);
|
|
}
|
|
}
|
|
}
|