1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Notifications/Growl/Growl.cs

46 lines
1.1 KiB
C#
Raw Normal View History

2013-05-20 02:17:32 +03:00
using System;
using NLog;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.Notifications.Growl
{
2013-05-20 05:43:22 +03:00
public class Growl : NotificationBase<GrowlSettings>
2013-05-20 02:17:32 +03:00
{
private readonly IGrowlService _growlProvider;
2013-05-20 02:17:32 +03:00
public Growl(IGrowlService growlProvider)
2013-05-20 02:17:32 +03:00
{
_growlProvider = growlProvider;
}
public override string Name
{
get { return "Growl"; }
}
public override string ImplementationName
{
get { return "Growl"; }
}
2013-05-20 02:17:32 +03:00
public override void OnGrab(string message)
{
const string title = "Episode Grabbed";
_growlProvider.SendNotification(title, message, "GRAB", Settings.Host, Settings.Port, Settings.Password);
}
public override void OnDownload(string message, Series series)
{
const string title = "Episode Downloaded";
_growlProvider.SendNotification(title, message, "DOWNLOAD", Settings.Host, Settings.Port, Settings.Password);
}
public override void AfterRename(Series series)
{
}
}
}