2013-04-10 16:41:45 -07:00
|
|
|
using System;
|
2013-05-28 21:10:23 -07:00
|
|
|
using System.Collections.Generic;
|
2011-10-20 22:04:26 -07:00
|
|
|
using System.Diagnostics;
|
2011-04-25 11:16:38 -07:00
|
|
|
using System.IO;
|
2011-03-06 22:33:59 -08:00
|
|
|
using System.Net;
|
2011-07-09 11:19:33 -07:00
|
|
|
using System.Text;
|
2011-03-06 22:33:59 -08:00
|
|
|
using NLog;
|
2013-06-27 17:04:52 -07:00
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2010-09-27 20:40:01 -07:00
|
|
|
|
2012-02-10 16:48:20 -08:00
|
|
|
namespace NzbDrone.Common
|
2010-09-27 20:40:01 -07:00
|
|
|
{
|
2013-04-10 16:41:45 -07:00
|
|
|
public interface IHttpProvider
|
|
|
|
{
|
|
|
|
string DownloadString(string address);
|
|
|
|
string DownloadString(string address, string username, string password);
|
|
|
|
string DownloadString(string address, ICredentials identity);
|
2013-06-02 23:12:31 -07:00
|
|
|
Dictionary<string, string> GetHeader(string url);
|
2013-05-28 21:10:23 -07:00
|
|
|
|
2013-04-10 16:41:45 -07:00
|
|
|
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-27 20:40:01 -07:00
|
|
|
{
|
2013-05-28 21:10:23 -07:00
|
|
|
|
|
|
|
public const string ContentLenghtHeader = "Content-Length";
|
|
|
|
|
2012-02-10 16:48:20 -08:00
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
2013-02-23 09:42:15 -08:00
|
|
|
private readonly string _userAgent;
|
2011-03-06 22:33:59 -08:00
|
|
|
|
2013-06-27 17:04:52 -07:00
|
|
|
public HttpProvider()
|
2012-05-02 15:51:17 -07:00
|
|
|
{
|
2013-06-27 17:04:52 -07:00
|
|
|
_userAgent = String.Format("NzbDrone {0}", BuildInfo.Version);
|
2012-05-02 15:51:17 -07:00
|
|
|
}
|
|
|
|
|
2013-04-10 16:41:45 -07:00
|
|
|
public string DownloadString(string address)
|
2011-03-21 20:51:03 -07:00
|
|
|
{
|
2012-02-10 17:43:07 -08:00
|
|
|
return DownloadString(address, null);
|
2011-03-21 20:51:03 -07:00
|
|
|
}
|
|
|
|
|
2013-04-10 16:41:45 -07:00
|
|
|
public string DownloadString(string address, string username, string password)
|
2012-02-10 17:43:07 -08:00
|
|
|
{
|
|
|
|
return DownloadString(address, new NetworkCredential(username, password));
|
|
|
|
}
|
|
|
|
|
2013-04-10 16:41:45 -07:00
|
|
|
public string DownloadString(string address, ICredentials identity)
|
2011-03-21 20:51:03 -07:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2012-02-10 17:43:07 -08:00
|
|
|
var client = new WebClient { Credentials = identity };
|
2013-02-23 09:42:15 -08:00
|
|
|
client.Headers.Add(HttpRequestHeader.UserAgent, _userAgent);
|
2012-02-10 17:43:07 -08:00
|
|
|
return client.DownloadString(address);
|
2011-03-21 20:51:03 -07:00
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
2012-05-10 17:08:30 -07:00
|
|
|
logger.Trace(ex.Message, ex.ToString());
|
2011-04-04 22:30:13 -07:00
|
|
|
throw;
|
2011-03-21 20:51:03 -07:00
|
|
|
}
|
2011-04-04 22:30:13 -07:00
|
|
|
}
|
2011-03-21 20:51:03 -07:00
|
|
|
|
2013-06-02 23:12:31 -07:00
|
|
|
public Dictionary<string, string> GetHeader(string url)
|
2013-05-28 21:10:23 -07:00
|
|
|
{
|
|
|
|
var headers = new Dictionary<string, string>();
|
|
|
|
var request = WebRequest.Create(url);
|
|
|
|
request.Method = "HEAD";
|
|
|
|
|
|
|
|
var response = request.GetResponse();
|
|
|
|
|
2013-06-02 23:12:31 -07:00
|
|
|
foreach (var key in response.Headers.AllKeys)
|
2013-05-28 21:10:23 -07:00
|
|
|
{
|
|
|
|
headers.Add(key, response.Headers[key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
2013-04-10 16:41:45 -07:00
|
|
|
public Stream DownloadStream(string url, NetworkCredential credential = null)
|
2011-04-04 22:30:13 -07:00
|
|
|
{
|
2012-05-02 15:51:17 -07:00
|
|
|
var request = (HttpWebRequest)WebRequest.Create(url);
|
2013-02-23 09:42:15 -08:00
|
|
|
request.UserAgent = _userAgent;
|
2013-06-08 10:29:19 -07:00
|
|
|
request.Timeout = 20 * 1000;
|
2011-04-25 11:16:38 -07:00
|
|
|
|
2011-04-25 13:21:52 -07:00
|
|
|
request.Credentials = credential;
|
2011-04-25 11:16:38 -07:00
|
|
|
var response = request.GetResponse();
|
|
|
|
|
|
|
|
return response.GetResponseStream();
|
2011-03-21 20:51:03 -07:00
|
|
|
}
|
2011-04-25 11:16:38 -07:00
|
|
|
|
2013-04-10 16:41:45 -07:00
|
|
|
public void DownloadFile(string url, string fileName)
|
2011-04-26 23:27:15 -07:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2011-10-20 22:04:26 -07:00
|
|
|
var fileInfo = new FileInfo(fileName);
|
2013-05-28 21:10:23 -07:00
|
|
|
if (fileInfo.Directory != null && !fileInfo.Directory.Exists)
|
2011-10-20 22:04:26 -07:00
|
|
|
{
|
|
|
|
fileInfo.Directory.Create();
|
|
|
|
}
|
|
|
|
|
2012-02-10 16:48:20 -08:00
|
|
|
logger.Trace("Downloading [{0}] to [{1}]", url, fileName);
|
2011-10-20 22:04:26 -07:00
|
|
|
|
|
|
|
var stopWatch = Stopwatch.StartNew();
|
2011-04-26 23:27:15 -07:00
|
|
|
var webClient = new WebClient();
|
2013-02-23 09:42:15 -08:00
|
|
|
webClient.Headers.Add(HttpRequestHeader.UserAgent, _userAgent);
|
2011-10-20 22:04:26 -07:00
|
|
|
webClient.DownloadFile(url, fileName);
|
|
|
|
stopWatch.Stop();
|
2012-02-10 16:48:20 -08:00
|
|
|
logger.Trace("Downloading Completed. took {0:0}s", stopWatch.Elapsed.Seconds);
|
2011-04-26 23:27:15 -07:00
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
2012-02-10 16:48:20 -08:00
|
|
|
logger.Warn("Failed to get response from: {0}", url);
|
|
|
|
logger.TraceException(ex.Message, ex);
|
2011-10-20 22:04:26 -07:00
|
|
|
throw;
|
2011-04-26 23:27:15 -07:00
|
|
|
}
|
|
|
|
}
|
2011-07-09 11:19:33 -07:00
|
|
|
|
2013-04-10 16:41:45 -07:00
|
|
|
public string PostCommand(string address, string username, string password, string command)
|
2011-07-09 11:19:33 -07:00
|
|
|
{
|
2011-09-26 17:50:58 -07:00
|
|
|
address = String.Format("http://{0}/jsonrpc", address);
|
2011-07-09 11:19:33 -07:00
|
|
|
|
2012-02-10 16:48:20 -08:00
|
|
|
logger.Trace("Posting command: {0}, to {1}", command, address);
|
2011-09-26 17:17:41 -07:00
|
|
|
|
2011-07-09 11:19:33 -07:00
|
|
|
byte[] byteArray = Encoding.ASCII.GetBytes(command);
|
|
|
|
|
2012-10-22 23:18:56 -07:00
|
|
|
var wc = new WebClient();
|
|
|
|
wc.Credentials = new NetworkCredential(username, password);
|
|
|
|
var response = wc.UploadData(address, "POST", byteArray);
|
|
|
|
var text = Encoding.ASCII.GetString(response);
|
2011-07-09 11:19:33 -07:00
|
|
|
|
2012-10-22 23:18:56 -07:00
|
|
|
return text.Replace(" ", " ");
|
2011-07-09 11:19:33 -07:00
|
|
|
}
|
2010-09-27 20:40:01 -07:00
|
|
|
}
|
2010-09-27 22:58:49 -07:00
|
|
|
}
|