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

83 lines
2.3 KiB
C#
Raw Normal View History

using System;
using System.Net;
2011-04-05 08:30:13 +03:00
using System.Xml;
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
{
2010-09-28 08:58:49 +03:00
internal class HttpProvider : IHttpProvider
2010-09-28 06:40:01 +03:00
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2010-09-28 08:01:54 +03:00
public string DownloadString(string request)
2010-09-28 06:40:01 +03: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 06:40:01 +03:00
}
2011-04-05 08:30:13 +03:00
public void DownloadFile(string request, string filename)
{
try
{
var webClient = new WebClient();
webClient.DownloadFile(request, filename);
2011-04-05 08:30:13 +03:00
}
catch (Exception ex)
{
Logger.Warn("Failed to get response from: {0}", request);
Logger.TraceException(ex.Message, ex);
2011-04-05 08:30:13 +03:00
throw;
}
2011-04-05 08:30:13 +03:00
}
2011-04-05 08:30:13 +03:00
public void DownloadFile(string request, string filename, string username, string password)
{
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 08:30:13 +03:00
throw;
}
2011-04-05 08:30:13 +03:00
}
2011-04-05 08:30:13 +03:00
public XmlReader DownloadXml(string url)
{
return XmlReader.Create(url);
}
2010-09-28 06:40:01 +03:00
}
2010-09-28 08:58:49 +03:00
}