2011-03-07 07:33:59 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Net;
|
2011-04-05 07:30:13 +02:00
|
|
|
|
using System.Xml;
|
2011-03-07 07:33:59 +01:00
|
|
|
|
using NLog;
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2011-04-04 05:50:12 +02:00
|
|
|
|
namespace NzbDrone.Core.Providers.Core
|
2010-09-28 05:40:01 +02:00
|
|
|
|
{
|
2010-09-28 07:58:49 +02:00
|
|
|
|
internal class HttpProvider : IHttpProvider
|
2010-09-28 05:40:01 +02:00
|
|
|
|
{
|
2011-03-07 07:33:59 +01:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2010-09-28 07:01:54 +02:00
|
|
|
|
public string DownloadString(string request)
|
2010-09-28 05:40:01 +02:00
|
|
|
|
{
|
2011-03-07 07:33:59 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
return new WebClient().DownloadString(request);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warn("Failed to get response from: {0}", request);
|
|
|
|
|
Logger.TraceException(ex.Message, ex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return String.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string DownloadString(string request, string username, string password)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var webClient = new WebClient();
|
|
|
|
|
webClient.Credentials = new NetworkCredential(username, password);
|
|
|
|
|
return webClient.DownloadString(request);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warn("Failed to get response from: {0}", request);
|
|
|
|
|
Logger.TraceException(ex.Message, ex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return String.Empty;
|
2010-09-28 05:40:01 +02:00
|
|
|
|
}
|
2011-03-22 04:51:03 +01:00
|
|
|
|
|
2011-04-05 07:30:13 +02:00
|
|
|
|
public void DownloadFile(string request, string filename)
|
2011-03-22 04:51:03 +01:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var webClient = new WebClient();
|
|
|
|
|
webClient.DownloadFile(request, filename);
|
2011-04-05 07:30:13 +02:00
|
|
|
|
|
2011-03-22 04:51:03 +01:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warn("Failed to get response from: {0}", request);
|
|
|
|
|
Logger.TraceException(ex.Message, ex);
|
2011-04-05 07:30:13 +02:00
|
|
|
|
throw;
|
2011-03-22 04:51:03 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-05 07:30:13 +02:00
|
|
|
|
|
2011-03-22 04:51:03 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-05 07:30:13 +02:00
|
|
|
|
public void DownloadFile(string request, string filename, string username, string password)
|
2011-03-22 04:51:03 +01:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var webClient = new WebClient();
|
|
|
|
|
webClient.Credentials = new NetworkCredential(username, password);
|
|
|
|
|
webClient.DownloadFile(request, filename);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warn("Failed to get response from: {0}", request);
|
|
|
|
|
Logger.TraceException(ex.Message, ex);
|
2011-04-05 07:30:13 +02:00
|
|
|
|
throw;
|
2011-03-22 04:51:03 +01:00
|
|
|
|
}
|
2011-04-05 07:30:13 +02:00
|
|
|
|
}
|
2011-03-22 04:51:03 +01:00
|
|
|
|
|
2011-04-05 07:30:13 +02:00
|
|
|
|
public XmlReader DownloadXml(string url)
|
|
|
|
|
{
|
|
|
|
|
return XmlReader.Create(url);
|
2011-03-22 04:51:03 +01:00
|
|
|
|
}
|
2010-09-28 05:40:01 +02:00
|
|
|
|
}
|
2010-09-28 07:58:49 +02:00
|
|
|
|
}
|