mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
51 lines
1.3 KiB
C#
51 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
using FluentValidation.Results;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications.Boxcar
|
|
{
|
|
public class Boxcar : NotificationBase<BoxcarSettings>
|
|
{
|
|
private readonly IBoxcarProxy _proxy;
|
|
|
|
public Boxcar(IBoxcarProxy proxy)
|
|
{
|
|
_proxy = proxy;
|
|
}
|
|
|
|
public override string Link => "https://boxcar.io/client";
|
|
|
|
public override void OnGrab(GrabMessage grabMessage)
|
|
{
|
|
const string title = "Episode Grabbed";
|
|
|
|
_proxy.SendNotification(title, grabMessage.Message, Settings);
|
|
}
|
|
|
|
public override void OnDownload(DownloadMessage message)
|
|
{
|
|
const string title = "Episode Downloaded";
|
|
|
|
_proxy.SendNotification(title, message.Message, Settings);
|
|
}
|
|
|
|
public override void OnRename(Series series)
|
|
{
|
|
}
|
|
|
|
public override string Name => "Boxcar";
|
|
|
|
public override bool SupportsOnRename => false;
|
|
|
|
public override ValidationResult Test()
|
|
{
|
|
var failures = new List<ValidationFailure>();
|
|
|
|
failures.AddIfNotNull(_proxy.Test(Settings));
|
|
|
|
return new ValidationResult(failures);
|
|
}
|
|
}
|
|
}
|