mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 22:07:32 -04:00
57 lines
1.7 KiB
C#
57 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using FluentValidation.Results;
|
|
using NLog;
|
|
|
|
namespace NzbDrone.Core.Notifications.SendGrid
|
|
{
|
|
public class SendGrid : NotificationBase<SendGridSettings>
|
|
{
|
|
private readonly ISendGridProxy _proxy;
|
|
private readonly Logger _logger;
|
|
|
|
public SendGrid(ISendGridProxy proxy, Logger logger)
|
|
{
|
|
_proxy = proxy;
|
|
_logger = logger;
|
|
}
|
|
|
|
public override string Name => "SendGrid";
|
|
public override string Link => "https://sendgrid.com/";
|
|
|
|
public override void OnGrab(GrabMessage grabMessage)
|
|
{
|
|
_proxy.SendNotification(MOVIE_GRABBED_TITLE, grabMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnDownload(DownloadMessage message)
|
|
{
|
|
_proxy.SendNotification(MOVIE_DOWNLOADED_TITLE, message.Message, Settings);
|
|
}
|
|
|
|
public override void OnHealthIssue(HealthCheck.HealthCheck healthCheck)
|
|
{
|
|
_proxy.SendNotification(HEALTH_ISSUE_TITLE, healthCheck.Message, Settings);
|
|
}
|
|
|
|
public override ValidationResult Test()
|
|
{
|
|
var failures = new List<ValidationFailure>();
|
|
|
|
try
|
|
{
|
|
const string title = "Test Notification";
|
|
const string body = "This is a test message from Radarr";
|
|
|
|
_proxy.SendNotification(title, body, Settings);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.Error(ex, "Unable to send test message");
|
|
failures.Add(new ValidationFailure("", "Unable to send test message"));
|
|
}
|
|
|
|
return new ValidationResult(failures);
|
|
}
|
|
}
|
|
}
|