1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 08:21:46 +02:00
Radarr/NzbDrone.Core/Providers/Core/HttpProvider.cs

54 lines
1.4 KiB
C#
Raw Normal View History

using System;
2011-04-25 20:16:38 +02:00
using System.IO;
using System.Net;
using NLog;
2010-09-28 05:40:01 +02:00
2011-04-25 20:16:38 +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-25 20:16:38 +02:00
public virtual string DownloadString(string address)
{
try
{
2011-04-25 20:16:38 +02:00
return new WebClient().DownloadString(address);
}
catch (Exception ex)
{
2011-04-25 20:16:38 +02:00
Logger.Warn("Failed to get response from: {0}", address);
Logger.TraceException(ex.Message, ex);
2011-04-05 07:30:13 +02:00
throw;
}
}
2011-04-25 20:16:38 +02: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 20:16:38 +02:00
return webClient.DownloadString(address);
}
catch (Exception ex)
{
2011-04-25 20:16:38 +02:00
Logger.Warn("Failed to get response from: {0}", address);
Logger.TraceException(ex.Message, ex);
2011-04-05 07:30:13 +02:00
throw;
}
2011-04-05 07:30:13 +02:00
}
2011-04-25 20:16:38 +02:00
public virtual Stream DownloadStream(string url)
2011-04-05 07:30:13 +02:00
{
2011-04-25 20:16:38 +02:00
var request = WebRequest.Create(url);
var response = request.GetResponse();
return response.GetResponseStream();
}
2011-04-25 20:16:38 +02:00
2010-09-28 05:40:01 +02:00
}
2010-09-28 07:58:49 +02:00
}