Lidarr/NzbDrone.Core/Providers/Core/HttpProvider.cs

68 lines
2.0 KiB
C#
Raw Normal View History

using System;
2011-04-25 18:16:38 +00:00
using System.IO;
using System.Net;
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
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2011-04-25 18:16:38 +00:00
public virtual string DownloadString(string address)
{
try
{
2011-04-25 18:16:38 +00:00
return new WebClient().DownloadString(address);
}
catch (Exception ex)
{
2011-04-25 18:16:38 +00:00
Logger.Warn("Failed to get response from: {0}", address);
Logger.TraceException(ex.Message, ex);
2011-04-05 05:30:13 +00:00
throw;
}
}
2011-04-25 18:16:38 +00: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 18:16:38 +00:00
return webClient.DownloadString(address);
}
catch (Exception ex)
{
2011-04-25 18:16:38 +00:00
Logger.Warn("Failed to get response from: {0}", address);
Logger.TraceException(ex.Message, ex);
2011-04-05 05:30:13 +00:00
throw;
}
2011-04-05 05:30:13 +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);
request.Credentials = credential;
2011-04-25 18:16:38 +00:00
var response = request.GetResponse();
return response.GetResponseStream();
}
2011-04-25 18:16:38 +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;
}
}
2010-09-28 03:40:01 +00:00
}
2010-09-28 05:58:49 +00:00
}