mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +00:00
removed twitter.
This commit is contained in:
parent
7c3c02ba60
commit
2dc7f16f9f
3 changed files with 0 additions and 158 deletions
|
@ -1,35 +0,0 @@
|
||||||
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);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace NzbDrone.Core.Model.Twitter
|
|
||||||
{
|
|
||||||
public class TwitterAuthorizationModel
|
|
||||||
{
|
|
||||||
public string Token { get; set; }
|
|
||||||
public string Url { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,110 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using NLog;
|
|
||||||
using NzbDrone.Core.Configuration;
|
|
||||||
using NzbDrone.Core.Model;
|
|
||||||
using NzbDrone.Core.Model.Twitter;
|
|
||||||
using Twitterizer;
|
|
||||||
|
|
||||||
namespace NzbDrone.Core.Providers
|
|
||||||
{
|
|
||||||
public class TwitterProvider
|
|
||||||
{
|
|
||||||
private readonly IConfigService _configService;
|
|
||||||
|
|
||||||
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
private const string ConsumerKey = "umKU6jBWpFbHTuqQbW2VlQ";
|
|
||||||
private const string ConsumerSecret = "e30OXkI6qrZWS35hbUUnrQQ8J2R9XNpccQNWAVK10";
|
|
||||||
|
|
||||||
public TwitterProvider(IConfigService configService)
|
|
||||||
{
|
|
||||||
_configService = configService;
|
|
||||||
}
|
|
||||||
|
|
||||||
public virtual TwitterAuthorizationModel GetAuthorization()
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
OAuthTokenResponse requestToken = OAuthUtility.GetRequestToken(ConsumerKey, ConsumerSecret, "oob", null);
|
|
||||||
Uri authorizationUri = OAuthUtility.BuildAuthorizationUri(requestToken.Token);
|
|
||||||
|
|
||||||
return new TwitterAuthorizationModel
|
|
||||||
{
|
|
||||||
Token = requestToken.Token,
|
|
||||||
Url = authorizationUri.ToString()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Logger.Warn("Failed to get Twitter authorization URL.");
|
|
||||||
Logger.TraceException(ex.Message, ex);
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public virtual bool GetAndSaveAccessToken(string authToken, string verifier)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
Logger.Debug("Attempting to get the AccessToken from Twitter");
|
|
||||||
|
|
||||||
OAuthTokenResponse accessToken = OAuthUtility.GetAccessToken(ConsumerKey, ConsumerSecret, authToken, verifier);
|
|
||||||
|
|
||||||
_configService.TwitterAccessToken = accessToken.Token;
|
|
||||||
_configService.TwitterAccessTokenSecret = accessToken.TokenSecret;
|
|
||||||
|
|
||||||
//Send a tweet to test!
|
|
||||||
SendTweet("I have just setup tweet notifications for NzbDrone!");
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Logger.TraceException(ex.Message, ex);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public virtual bool SendTweet(string message)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
Logger.Trace("Sending status update to twitter: {0}", message);
|
|
||||||
|
|
||||||
var accessToken = _configService.TwitterAccessToken;
|
|
||||||
var accessTokenSecret = _configService.TwitterAccessTokenSecret;
|
|
||||||
|
|
||||||
//If the access token or access token secret are not configured, log an error and return
|
|
||||||
if (String.IsNullOrWhiteSpace(accessToken) || String.IsNullOrWhiteSpace(accessTokenSecret))
|
|
||||||
{
|
|
||||||
Logger.Warn("Twitter Setup is incomplete, please check your settings");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
var token = new OAuthTokens
|
|
||||||
{
|
|
||||||
AccessToken = accessToken,
|
|
||||||
AccessTokenSecret = accessTokenSecret,
|
|
||||||
ConsumerKey = ConsumerKey,
|
|
||||||
ConsumerSecret = ConsumerSecret
|
|
||||||
};
|
|
||||||
|
|
||||||
TwitterStatus.Update(token, message + " #NzbDrone");
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Logger.DebugException(ex.Message, ex);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue