mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-24 22:37:06 -04:00
90 lines
2.7 KiB
C#
90 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
namespace NzbDrone.Common.Http
|
|
{
|
|
public class HttpRequest
|
|
{
|
|
public HttpRequest(string url, HttpAccept httpAccept = null)
|
|
{
|
|
Url = new HttpUri(url);
|
|
Headers = new HttpHeader();
|
|
AllowAutoRedirect = true;
|
|
StoreRequestCookie = true;
|
|
Cookies = new Dictionary<string, string>();
|
|
|
|
|
|
if (!RuntimeInfo.IsProduction)
|
|
{
|
|
AllowAutoRedirect = false;
|
|
}
|
|
|
|
if (httpAccept != null)
|
|
{
|
|
Headers.Accept = httpAccept.Value;
|
|
}
|
|
}
|
|
|
|
public HttpUri Url { get; set; }
|
|
public HttpMethod Method { get; set; }
|
|
public HttpHeader Headers { get; set; }
|
|
public byte[] ContentData { get; set; }
|
|
public string ContentSummary { get; set; }
|
|
public bool SuppressHttpError { get; set; }
|
|
public bool UseSimplifiedUserAgent { get; set; }
|
|
public bool AllowAutoRedirect { get; set; }
|
|
public bool ConnectionKeepAlive { get; set; }
|
|
public bool LogResponseContent { get; set; }
|
|
public Dictionary<string, string> Cookies { get; private set; }
|
|
public bool StoreRequestCookie { get; set; }
|
|
public bool StoreResponseCookie { get; set; }
|
|
public TimeSpan RequestTimeout { get; set; }
|
|
public TimeSpan RateLimit { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return ToString();
|
|
}
|
|
|
|
public string ToString(bool includeMethod = true, bool includeSummary = true)
|
|
{
|
|
var builder = new StringBuilder();
|
|
|
|
if (includeMethod)
|
|
{
|
|
builder.AppendFormat("Req: [{0}] ", Method);
|
|
}
|
|
|
|
builder.Append(Url);
|
|
|
|
if (includeSummary && ContentSummary.IsNotNullOrWhiteSpace())
|
|
{
|
|
builder.Append(": ");
|
|
builder.Append(ContentSummary);
|
|
}
|
|
|
|
return builder.ToString();
|
|
}
|
|
|
|
public void SetContent(byte[] data)
|
|
{
|
|
ContentData = data;
|
|
}
|
|
|
|
public void SetContent(string data)
|
|
{
|
|
var encoding = HttpHeader.GetEncodingFromContentType(Headers.ContentType);
|
|
ContentData = encoding.GetBytes(data);
|
|
}
|
|
|
|
public void AddBasicAuthentication(string username, string password)
|
|
{
|
|
var authInfo = Convert.ToBase64String(Encoding.GetEncoding("ISO-8859-1").GetBytes($"{username}:{password}"));
|
|
|
|
Headers.Set("Authorization", "Basic " + authInfo);
|
|
}
|
|
}
|
|
}
|