1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-14 23:13:24 +01:00
Radarr/NzbDrone.Core/Providers/Core/HttpProvider.cs

80 lines
2.3 KiB
C#
Raw Normal View History

using System;
using System.Net;
2011-04-05 07:30:13 +02:00
using System.Xml;
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
{
2011-04-07 04:25:52 +02:00
public class HttpProvider
2010-09-28 05:40:01 +02:00
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2011-04-07 04:25:52 +02:00
public virtual string DownloadString(string request)
2010-09-28 05:40:01 +02: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;
}
2011-04-07 04:25:52 +02:00
public virtual 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-04-07 04:25:52 +02:00
public virtual void DownloadFile(string request, string filename)
{
try
{
var webClient = new WebClient();
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-04-07 04:25:52 +02:00
public virtual 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 07:30:13 +02:00
throw;
}
2011-04-05 07:30:13 +02:00
}
2011-04-07 04:25:52 +02:00
public virtual XmlReader DownloadXml(string url)
2011-04-05 07:30:13 +02:00
{
return XmlReader.Create(url);
}
2010-09-28 05:40:01 +02:00
}
2010-09-28 07:58:49 +02:00
}