2011-03-07 06:33:59 +00:00
|
|
|
|
using System;
|
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;
|
2010-09-28 03:40:01 +00:00
|
|
|
|
|
2011-04-04 03:50:12 +00:00
|
|
|
|
namespace NzbDrone.Core.Providers.Core
|
2010-09-28 03:40:01 +00:00
|
|
|
|
{
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public class HttpProvider
|
2010-09-28 03:40:01 +00:00
|
|
|
|
{
|
2011-03-07 06:33:59 +00:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2011-04-25 18:16:38 +00:00
|
|
|
|
public virtual string DownloadString(string address)
|
2011-03-22 03:51:03 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2011-04-25 18:16:38 +00:00
|
|
|
|
return new WebClient().DownloadString(address);
|
2011-03-22 03:51:03 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2011-04-25 18:16:38 +00:00
|
|
|
|
Logger.Warn("Failed to get response from: {0}", address);
|
2011-03-22 03:51:03 +00:00
|
|
|
|
Logger.TraceException(ex.Message, ex);
|
2011-04-05 05:30:13 +00:00
|
|
|
|
throw;
|
2011-03-22 03:51:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-25 18:16:38 +00:00
|
|
|
|
public virtual string DownloadString(string address, string username, string password)
|
2011-03-22 03:51:03 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var webClient = new WebClient();
|
|
|
|
|
webClient.Credentials = new NetworkCredential(username, password);
|
2011-04-25 18:16:38 +00:00
|
|
|
|
return webClient.DownloadString(address);
|
2011-03-22 03:51:03 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2011-04-25 18:16:38 +00:00
|
|
|
|
Logger.Warn("Failed to get response from: {0}", address);
|
2011-03-22 03:51:03 +00:00
|
|
|
|
Logger.TraceException(ex.Message, ex);
|
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
|
|
|
|
|
2011-04-25 20:21:52 +00:00
|
|
|
|
public virtual Stream DownloadStream(string url, NetworkCredential credential)
|
2011-04-05 05:30:13 +00:00
|
|
|
|
{
|
2011-04-25 18:16:38 +00:00
|
|
|
|
var request = WebRequest.Create(url);
|
|
|
|
|
|
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
|
|
|
|
|
2011-04-27 06:27:15 +00:00
|
|
|
|
public virtual bool DownloadFile(string address, string fileName)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var webClient = new WebClient();
|
|
|
|
|
webClient.DownloadFile(address, fileName);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warn("Failed to get response from: {0}", address);
|
|
|
|
|
Logger.TraceException(ex.Message, ex);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-07-09 18:19:33 +00:00
|
|
|
|
|
|
|
|
|
public virtual string PostCommand(string address, string username, string password, string command)
|
|
|
|
|
{
|
2011-09-27 00:50:58 +00:00
|
|
|
|
address = String.Format("http://{0}/jsonrpc", address);
|
2011-07-09 18:19:33 +00:00
|
|
|
|
|
2011-09-27 00:17:41 +00:00
|
|
|
|
Logger.Trace("Posting command: {0}, to {1}", command, address);
|
|
|
|
|
|
2011-07-09 18:19:33 +00:00
|
|
|
|
byte[] byteArray = Encoding.ASCII.GetBytes(command);
|
|
|
|
|
|
|
|
|
|
var request = WebRequest.Create(address);
|
|
|
|
|
request.Method = "POST";
|
|
|
|
|
request.Credentials = new NetworkCredential(username, password);
|
|
|
|
|
request.ContentLength = byteArray.Length;
|
|
|
|
|
request.ContentType = "application/x-www-form-urlencoded";
|
|
|
|
|
var dataStream = request.GetRequestStream();
|
|
|
|
|
dataStream.Write(byteArray, 0, byteArray.Length);
|
|
|
|
|
dataStream.Close();
|
|
|
|
|
|
|
|
|
|
var response = request.GetResponse();
|
|
|
|
|
dataStream = response.GetResponseStream();
|
|
|
|
|
var reader = new StreamReader(dataStream);
|
|
|
|
|
// Read the content.
|
|
|
|
|
string responseFromServer = reader.ReadToEnd();
|
|
|
|
|
|
|
|
|
|
reader.Close();
|
|
|
|
|
dataStream.Close();
|
|
|
|
|
response.Close();
|
|
|
|
|
|
|
|
|
|
return responseFromServer.Replace(" ", " ");
|
|
|
|
|
}
|
2010-09-28 03:40:01 +00:00
|
|
|
|
}
|
2010-09-28 05:58:49 +00:00
|
|
|
|
}
|