1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-10 11:10:40 +02:00
Sonarr/NzbDrone.Core/Providers/Core/HttpProvider.cs

99 lines
3.1 KiB
C#
Raw Normal View History

using System;
2011-04-25 21:16:38 +03:00
using System.IO;
using System.Net;
using System.Text;
using NLog;
2010-09-28 06:40:01 +03:00
2011-04-04 06:50:12 +03:00
namespace NzbDrone.Core.Providers.Core
2010-09-28 06:40:01 +03:00
{
2011-04-07 05:25:52 +03:00
public class HttpProvider
2010-09-28 06:40:01 +03:00
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2011-04-25 21:16:38 +03:00
public virtual string DownloadString(string address)
{
try
{
2011-04-25 21:16:38 +03:00
return new WebClient().DownloadString(address);
}
catch (Exception ex)
{
2011-04-25 21:16:38 +03:00
Logger.Warn("Failed to get response from: {0}", address);
Logger.TraceException(ex.Message, ex);
2011-04-05 08:30:13 +03:00
throw;
}
}
2011-04-25 21:16:38 +03:00
public virtual string DownloadString(string address, string username, string password)
{
try
{
var webClient = new WebClient();
webClient.Credentials = new NetworkCredential(username, password);
2011-04-25 21:16:38 +03:00
return webClient.DownloadString(address);
}
catch (Exception ex)
{
2011-04-25 21:16:38 +03:00
Logger.Warn("Failed to get response from: {0}", address);
Logger.TraceException(ex.Message, ex);
2011-04-05 08:30:13 +03:00
throw;
}
2011-04-05 08:30:13 +03:00
}
public virtual Stream DownloadStream(string url, NetworkCredential credential)
2011-04-05 08:30:13 +03:00
{
2011-04-25 21:16:38 +03:00
var request = WebRequest.Create(url);
request.Credentials = credential;
2011-04-25 21:16:38 +03:00
var response = request.GetResponse();
return response.GetResponseStream();
}
2011-04-25 21:16:38 +03: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;
}
}
public virtual string PostCommand(string address, string username, string password, string command)
{
address += "/jsonrpc";
Logger.Trace("Posting command: {0}, to {1}", command, address);
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 06:40:01 +03:00
}
2010-09-28 08:58:49 +03:00
}