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.
59 lines
1.8 KiB
59 lines
1.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using FluentValidation.Results;
|
|
using NLog;
|
|
|
|
namespace NzbDrone.Core.Notifications.Mailgun
|
|
{
|
|
public class MailGun : NotificationBase<MailgunSettings>
|
|
{
|
|
private readonly IMailgunProxy _proxy;
|
|
private readonly Logger _logger;
|
|
|
|
public MailGun(IMailgunProxy proxy, Logger logger)
|
|
{
|
|
_proxy = proxy;
|
|
_logger = logger;
|
|
}
|
|
|
|
public override string Name => "Mailgun";
|
|
public override string Link => "https://mailgun.com";
|
|
|
|
public override void OnGrab(GrabMessage grabMessage)
|
|
{
|
|
_proxy.SendNotification(ALBUM_GRABBED_TITLE, grabMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnReleaseImport(AlbumDownloadMessage downloadMessage)
|
|
{
|
|
_proxy.SendNotification(ALBUM_DOWNLOADED_TITLE, downloadMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnHealthIssue(HealthCheck.HealthCheck healthCheckMessage)
|
|
{
|
|
_proxy.SendNotification(HEALTH_ISSUE_TITLE, healthCheckMessage.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 Lidarr, though Mailgun.";
|
|
|
|
_proxy.SendNotification(title, body, Settings);
|
|
_logger.Info("Successsfully sent email though Mailgun.");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.Error(ex, "Unable to send test message though Mailgun.");
|
|
failures.Add(new ValidationFailure("", "Unable to send test message though Mailgun."));
|
|
}
|
|
|
|
return new ValidationResult(failures);
|
|
}
|
|
}
|
|
}
|