mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
36 lines
933 B
C#
36 lines
933 B
C#
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.ExternalNotification
|
|
{
|
|
public class Twitter : ExternalNotificationBase
|
|
{
|
|
private readonly TwitterProvider _twitterProvider;
|
|
|
|
public Twitter(IExternalNotificationRepository repository, TwitterProvider twitterProvider, Logger logger)
|
|
: base(repository, logger)
|
|
{
|
|
_twitterProvider = twitterProvider;
|
|
}
|
|
|
|
public override string Name
|
|
{
|
|
get { return "Twitter"; }
|
|
}
|
|
|
|
protected override void OnGrab(string message)
|
|
{
|
|
_twitterProvider.SendTweet("Download Started: " + message);
|
|
}
|
|
|
|
protected override void OnDownload(string message, Series series)
|
|
{
|
|
_twitterProvider.SendTweet("Download Completed: " + message);
|
|
}
|
|
|
|
}
|
|
}
|