2011-11-02 04:08:53 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Growl.Connector;
|
|
|
|
|
using NLog;
|
2013-05-20 01:17:32 +02:00
|
|
|
|
using GrowlNotification = Growl.Connector.Notification;
|
2011-11-02 04:08:53 +01:00
|
|
|
|
|
2013-05-20 01:17:32 +02:00
|
|
|
|
namespace NzbDrone.Core.Notifications.Growl
|
2011-11-02 04:08:53 +01:00
|
|
|
|
{
|
|
|
|
|
public class GrowlProvider
|
|
|
|
|
{
|
2011-11-10 06:30:51 +01:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2011-11-02 04:08:53 +01:00
|
|
|
|
|
|
|
|
|
private readonly Application _growlApplication = new Application("NzbDrone");
|
|
|
|
|
private GrowlConnector _growlConnector;
|
|
|
|
|
private List<NotificationType> _notificationTypes;
|
|
|
|
|
|
|
|
|
|
public GrowlProvider()
|
|
|
|
|
{
|
|
|
|
|
_notificationTypes = GetNotificationTypes();
|
|
|
|
|
_growlApplication.Icon = "https://github.com/NzbDrone/NzbDrone/raw/master/NzbDrone.Core/NzbDrone.jpg";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void Register(string hostname, int port, string password)
|
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Registering NzbDrone with Growl host: {0}:{1}", hostname, port);
|
|
|
|
|
_growlConnector = new GrowlConnector(password, hostname, port);
|
|
|
|
|
_growlConnector.Register(_growlApplication, _notificationTypes.ToArray());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void TestNotification(string hostname, int port, string password)
|
|
|
|
|
{
|
|
|
|
|
const string title = "Test Notification";
|
|
|
|
|
const string message = "This is a test message from NzbDrone";
|
|
|
|
|
|
|
|
|
|
SendNotification(title, message, "TEST", hostname, port, password);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void SendNotification(string title, string message, string notificationTypeName, string hostname, int port, string password)
|
|
|
|
|
{
|
|
|
|
|
var notificationType = _notificationTypes.Single(n => n.Name == notificationTypeName);
|
|
|
|
|
|
2013-05-20 01:17:32 +02:00
|
|
|
|
var notification = new GrowlNotification("NzbDrone", notificationType.Name, DateTime.Now.Ticks.ToString(), title, message);
|
2011-11-02 04:08:53 +01:00
|
|
|
|
|
|
|
|
|
_growlConnector = new GrowlConnector(password, hostname, port);
|
|
|
|
|
|
|
|
|
|
Logger.Trace("Sending Notification to: {0}:{1}", hostname, port);
|
|
|
|
|
_growlConnector.Notify(notification);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<NotificationType> GetNotificationTypes()
|
|
|
|
|
{
|
|
|
|
|
var notificationTypes = new List<NotificationType>();
|
|
|
|
|
notificationTypes.Add(new NotificationType("TEST", "Test"));
|
|
|
|
|
notificationTypes.Add(new NotificationType("GRAB", "Episode Grabbed"));
|
|
|
|
|
notificationTypes.Add(new NotificationType("DOWNLOAD", "Episode Complete"));
|
|
|
|
|
|
|
|
|
|
return notificationTypes;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|