mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 21:12:43 +02:00
49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
using FluentValidation.Results;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Movies;
|
|
|
|
namespace NzbDrone.Core.Notifications.Pushalot
|
|
{
|
|
public class Pushalot : NotificationBase<PushalotSettings>
|
|
{
|
|
private readonly IPushalotProxy _proxy;
|
|
|
|
public Pushalot(IPushalotProxy proxy)
|
|
{
|
|
_proxy = proxy;
|
|
}
|
|
|
|
public override string Link => "https://www.Pushalot.com/";
|
|
|
|
public override void OnGrab(GrabMessage grabMessage)
|
|
{
|
|
const string title = "Movie Grabbed";
|
|
|
|
_proxy.SendNotification(title, grabMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnDownload(DownloadMessage message)
|
|
{
|
|
const string title = "Movie Downloaded";
|
|
|
|
_proxy.SendNotification(title, message.Message, Settings);
|
|
}
|
|
|
|
public override void OnMovieRename(Movie movie)
|
|
{
|
|
}
|
|
|
|
public override string Name => "Pushalot";
|
|
|
|
public override ValidationResult Test()
|
|
{
|
|
var failures = new List<ValidationFailure>();
|
|
|
|
failures.AddIfNotNull(_proxy.Test(Settings));
|
|
|
|
return new ValidationResult(failures);
|
|
}
|
|
}
|
|
}
|