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

78 lines
2.2 KiB
C#
Raw Normal View History

using System;
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
{
2010-09-28 05:58:49 +00:00
internal class HttpProvider : IHttpProvider
2010-09-28 03:40:01 +00:00
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2010-09-28 05:01:54 +00:00
public string DownloadString(string request)
2010-09-28 03:40:01 +00: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 03:40:01 +00:00
}
public bool DownloadFile(string request, string filename)
{
try
{
var webClient = new WebClient();
webClient.DownloadFile(request, filename);
return true;
}
catch (Exception ex)
{
Logger.Warn("Failed to get response from: {0}", request);
Logger.TraceException(ex.Message, ex);
}
return false;
}
public bool DownloadFile(string request, string filename, string username, string password)
{
try
{
var webClient = new WebClient();
webClient.Credentials = new NetworkCredential(username, password);
webClient.DownloadFile(request, filename);
return true;
}
catch (Exception ex)
{
Logger.Warn("Failed to get response from: {0}", request);
Logger.TraceException(ex.Message, ex);
}
return false;
}
2010-09-28 03:40:01 +00:00
}
2010-09-28 05:58:49 +00:00
}