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