Sonarr/NzbDrone.Common/HttpProvider.cs

111 lines
3.8 KiB
C#
Raw Normal View History

2013-04-10 23:41:45 +00:00
using System;
using System.Diagnostics;
2011-04-25 18:16:38 +00:00
using System.IO;
using System.Net;
using System.Text;
using NLog;
2010-09-28 03:40:01 +00:00
2012-02-11 00:48:20 +00:00
namespace NzbDrone.Common
2010-09-28 03:40:01 +00:00
{
2013-04-10 23:41:45 +00:00
public interface IHttpProvider
{
string DownloadString(string address);
string DownloadString(string address, string username, string password);
string DownloadString(string address, ICredentials identity);
Stream DownloadStream(string url, NetworkCredential credential = null);
void DownloadFile(string url, string fileName);
string PostCommand(string address, string username, string password, string command);
}
public class HttpProvider : IHttpProvider
2010-09-28 03:40:01 +00:00
{
private readonly EnvironmentProvider _environmentProvider;
2012-02-11 00:48:20 +00:00
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
private readonly string _userAgent;
public HttpProvider(EnvironmentProvider environmentProvider)
{
_environmentProvider = environmentProvider;
_userAgent = String.Format("NzbDrone {0}", _environmentProvider.Version);
}
2013-04-10 23:41:45 +00:00
public string DownloadString(string address)
{
return DownloadString(address, null);
}
2013-04-10 23:41:45 +00:00
public string DownloadString(string address, string username, string password)
{
return DownloadString(address, new NetworkCredential(username, password));
}
2013-04-10 23:41:45 +00:00
public string DownloadString(string address, ICredentials identity)
{
try
{
var client = new WebClient { Credentials = identity };
client.Headers.Add(HttpRequestHeader.UserAgent, _userAgent);
return client.DownloadString(address);
}
catch (Exception ex)
{
logger.Trace(ex.Message, ex.ToString());
2011-04-05 05:30:13 +00:00
throw;
}
2011-04-05 05:30:13 +00:00
}
2013-04-10 23:41:45 +00:00
public Stream DownloadStream(string url, NetworkCredential credential = null)
2011-04-05 05:30:13 +00:00
{
var request = (HttpWebRequest)WebRequest.Create(url);
request.UserAgent = _userAgent;
2011-04-25 18:16:38 +00:00
request.Credentials = credential;
2011-04-25 18:16:38 +00:00
var response = request.GetResponse();
return response.GetResponseStream();
}
2011-04-25 18:16:38 +00:00
2013-04-10 23:41:45 +00:00
public void DownloadFile(string url, string fileName)
{
try
{
var fileInfo = new FileInfo(fileName);
if (!fileInfo.Directory.Exists)
{
fileInfo.Directory.Create();
}
2012-02-11 00:48:20 +00:00
logger.Trace("Downloading [{0}] to [{1}]", url, fileName);
var stopWatch = Stopwatch.StartNew();
var webClient = new WebClient();
webClient.Headers.Add(HttpRequestHeader.UserAgent, _userAgent);
webClient.DownloadFile(url, fileName);
stopWatch.Stop();
2012-02-11 00:48:20 +00:00
logger.Trace("Downloading Completed. took {0:0}s", stopWatch.Elapsed.Seconds);
}
catch (Exception ex)
{
2012-02-11 00:48:20 +00:00
logger.Warn("Failed to get response from: {0}", url);
logger.TraceException(ex.Message, ex);
throw;
}
}
2013-04-10 23:41:45 +00:00
public string PostCommand(string address, string username, string password, string command)
{
address = String.Format("http://{0}/jsonrpc", address);
2012-02-11 00:48:20 +00:00
logger.Trace("Posting command: {0}, to {1}", command, address);
byte[] byteArray = Encoding.ASCII.GetBytes(command);
var wc = new WebClient();
wc.Credentials = new NetworkCredential(username, password);
var response = wc.UploadData(address, "POST", byteArray);
var text = Encoding.ASCII.GetString(response);
return text.Replace(" ", " ");
}
2010-09-28 03:40:01 +00:00
}
2010-09-28 05:58:49 +00:00
}