1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00

40 lines
1.4 KiB
C#
Raw Normal View History

2013-09-10 23:33:47 -07:00
using NzbDrone.Core.Messaging;
using NzbDrone.Core.Messaging.Commands;
2013-07-25 00:24:09 -07:00
using RestSharp;
using NzbDrone.Core.Rest;
2013-07-25 00:24:09 -07:00
namespace NzbDrone.Core.Notifications.Pushover
{
public interface IPushoverProxy
2013-07-25 00:24:09 -07:00
{
void SendNotification(string title, string message, string userKey, PushoverPriority priority);
}
public class PushoverProxy : IPushoverProxy, IExecute<TestPushoverCommand>
2013-07-25 00:24:09 -07:00
{
private const string TOKEN = "yz9b4U215iR4vrKFRfjNXP24NMNPKJ";
private const string URL = "https://api.pushover.net/1/messages.json";
public void SendNotification(string title, string message, string userKey, PushoverPriority priority)
{
var client = new RestClient(URL);
var request = new RestRequest(Method.POST);
request.AddParameter("token", TOKEN);
request.AddParameter("user", userKey);
request.AddParameter("title", title);
request.AddParameter("message", message);
request.AddParameter("priority", (int)priority);
client.ExecuteAndValidate(request);
2013-07-25 00:24:09 -07:00
}
public void Execute(TestPushoverCommand message)
{
const string title = "Test Notification";
const string body = "This is a test message from NzbDrone";
SendNotification(title, body, message.UserKey, (PushoverPriority)message.Priority);
}
}
}