Merge pull request #1515 from jellyfin/release-10.3.z
Backmerge for 10.3.6
This commit is contained in:
commit
3b49c1bac0
|
@ -25,6 +25,8 @@
|
||||||
- [fasheng](https://github.com/fasheng)
|
- [fasheng](https://github.com/fasheng)
|
||||||
- [ploughpuff](https://github.com/ploughpuff)
|
- [ploughpuff](https://github.com/ploughpuff)
|
||||||
- [pjeanjean](https://github.com/pjeanjean)
|
- [pjeanjean](https://github.com/pjeanjean)
|
||||||
|
- [DrPandemic](https://github.com/drpandemic)
|
||||||
|
- [joern-h](https://github.com/joern-h)
|
||||||
|
|
||||||
# Emby Contributors
|
# Emby Contributors
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ RUN apt-get update \
|
||||||
COPY --from=ffmpeg / /
|
COPY --from=ffmpeg / /
|
||||||
COPY --from=builder /jellyfin /jellyfin
|
COPY --from=builder /jellyfin /jellyfin
|
||||||
|
|
||||||
ARG JELLYFIN_WEB_VERSION=10.3.5
|
ARG JELLYFIN_WEB_VERSION=10.3.6
|
||||||
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
||||||
&& rm -rf /jellyfin/jellyfin-web \
|
&& rm -rf /jellyfin/jellyfin-web \
|
||||||
&& mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web
|
&& mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web
|
||||||
|
|
|
@ -26,7 +26,7 @@ RUN apt-get update \
|
||||||
&& chmod 777 /cache /config /media
|
&& chmod 777 /cache /config /media
|
||||||
COPY --from=builder /jellyfin /jellyfin
|
COPY --from=builder /jellyfin /jellyfin
|
||||||
|
|
||||||
ARG JELLYFIN_WEB_VERSION=10.3.5
|
ARG JELLYFIN_WEB_VERSION=10.3.6
|
||||||
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
||||||
&& rm -rf /jellyfin/jellyfin-web \
|
&& rm -rf /jellyfin/jellyfin-web \
|
||||||
&& mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web
|
&& mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web
|
||||||
|
|
|
@ -26,7 +26,7 @@ RUN apt-get update \
|
||||||
&& chmod 777 /cache /config /media
|
&& chmod 777 /cache /config /media
|
||||||
COPY --from=builder /jellyfin /jellyfin
|
COPY --from=builder /jellyfin /jellyfin
|
||||||
|
|
||||||
ARG JELLYFIN_WEB_VERSION=10.3.5
|
ARG JELLYFIN_WEB_VERSION=10.3.6
|
||||||
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
||||||
&& rm -rf /jellyfin/jellyfin-web \
|
&& rm -rf /jellyfin/jellyfin-web \
|
||||||
&& mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web
|
&& mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web
|
||||||
|
|
|
@ -34,16 +34,13 @@ namespace Emby.Dlna.PlayTo
|
||||||
{
|
{
|
||||||
var cancellationToken = CancellationToken.None;
|
var cancellationToken = CancellationToken.None;
|
||||||
|
|
||||||
using (var response = await PostSoapDataAsync(NormalizeServiceUrl(baseUrl, service.ControlUrl), "\"" + service.ServiceType + "#" + command + "\"", postData, header, logRequest, cancellationToken)
|
var url = NormalizeServiceUrl(baseUrl, service.ControlUrl);
|
||||||
|
using (var response = await PostSoapDataAsync(url, '\"' + service.ServiceType + '#' + command + '\"', postData, header, logRequest, cancellationToken)
|
||||||
.ConfigureAwait(false))
|
.ConfigureAwait(false))
|
||||||
|
using (var stream = response.Content)
|
||||||
|
using (var reader = new StreamReader(stream, Encoding.UTF8))
|
||||||
{
|
{
|
||||||
using (var stream = response.Content)
|
return XDocument.Parse(reader.ReadToEnd(), LoadOptions.PreserveWhitespace);
|
||||||
{
|
|
||||||
using (var reader = new StreamReader(stream, Encoding.UTF8))
|
|
||||||
{
|
|
||||||
return XDocument.Parse(reader.ReadToEnd(), LoadOptions.PreserveWhitespace);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -121,15 +118,18 @@ namespace Emby.Dlna.PlayTo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private Task<HttpResponseInfo> PostSoapDataAsync(string url,
|
private Task<HttpResponseInfo> PostSoapDataAsync(
|
||||||
|
string url,
|
||||||
string soapAction,
|
string soapAction,
|
||||||
string postData,
|
string postData,
|
||||||
string header,
|
string header,
|
||||||
bool logRequest,
|
bool logRequest,
|
||||||
CancellationToken cancellationToken)
|
CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
if (!soapAction.StartsWith("\""))
|
if (soapAction[0] != '\"')
|
||||||
soapAction = "\"" + soapAction + "\"";
|
{
|
||||||
|
soapAction = '\"' + soapAction + '\"';
|
||||||
|
}
|
||||||
|
|
||||||
var options = new HttpRequestOptions
|
var options = new HttpRequestOptions
|
||||||
{
|
{
|
||||||
|
|
|
@ -420,7 +420,7 @@ namespace Emby.Server.Implementations
|
||||||
/// Gets the current application user agent
|
/// Gets the current application user agent
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The application user agent.</value>
|
/// <value>The application user agent.</value>
|
||||||
public string ApplicationUserAgent => Name.Replace(' ','-') + "/" + ApplicationVersion;
|
public string ApplicationUserAgent => Name.Replace(' ','-') + '/' + ApplicationVersion;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the email address for use within a comment section of a user agent field.
|
/// Gets the email address for use within a comment section of a user agent field.
|
||||||
|
@ -678,11 +678,6 @@ namespace Emby.Server.Implementations
|
||||||
await HttpServer.RequestHandler(req, request.GetDisplayUrl(), request.Host.ToString(), localPath, CancellationToken.None).ConfigureAwait(false);
|
await HttpServer.RequestHandler(req, request.GetDisplayUrl(), request.Host.ToString(), localPath, CancellationToken.None).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual IHttpClient CreateHttpClient()
|
|
||||||
{
|
|
||||||
return new HttpClientManager.HttpClientManager(ApplicationPaths, LoggerFactory, FileSystemManager, () => ApplicationUserAgent);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static IStreamHelper StreamHelper { get; set; }
|
public static IStreamHelper StreamHelper { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -708,7 +703,11 @@ namespace Emby.Server.Implementations
|
||||||
serviceCollection.AddSingleton(FileSystemManager);
|
serviceCollection.AddSingleton(FileSystemManager);
|
||||||
serviceCollection.AddSingleton<TvDbClientManager>();
|
serviceCollection.AddSingleton<TvDbClientManager>();
|
||||||
|
|
||||||
HttpClient = CreateHttpClient();
|
HttpClient = new HttpClientManager.HttpClientManager(
|
||||||
|
ApplicationPaths,
|
||||||
|
LoggerFactory.CreateLogger<HttpClientManager.HttpClientManager>(),
|
||||||
|
FileSystemManager,
|
||||||
|
() => ApplicationUserAgent);
|
||||||
serviceCollection.AddSingleton(HttpClient);
|
serviceCollection.AddSingleton(HttpClient);
|
||||||
|
|
||||||
serviceCollection.AddSingleton(NetworkManager);
|
serviceCollection.AddSingleton(NetworkManager);
|
||||||
|
@ -1690,9 +1689,7 @@ namespace Emby.Server.Implementations
|
||||||
LogErrors = LogPing,
|
LogErrors = LogPing,
|
||||||
LogRequest = LogPing,
|
LogRequest = LogPing,
|
||||||
BufferContent = false,
|
BufferContent = false,
|
||||||
|
|
||||||
CancellationToken = cancellationToken
|
CancellationToken = cancellationToken
|
||||||
|
|
||||||
}, HttpMethod.Post).ConfigureAwait(false))
|
}, HttpMethod.Post).ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
using (var reader = new StreamReader(response.Content))
|
using (var reader = new StreamReader(response.Content))
|
||||||
|
|
|
@ -170,6 +170,8 @@ namespace Emby.Server.Implementations.Data
|
||||||
columnNames.Add(name);
|
columnNames.Add(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Configuration and pragmas can affect VACUUM so it needs to be last.
|
||||||
|
queries.Add("VACUUM");
|
||||||
|
|
||||||
return columnNames;
|
return columnNames;
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,52 +23,11 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class HttpClientManager : IHttpClient
|
public class HttpClientManager : IHttpClient
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// When one request to a host times out, we'll ban all other requests for this period of time, to prevent scans from stalling
|
|
||||||
/// </summary>
|
|
||||||
private const int TimeoutSeconds = 30;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The _logger
|
|
||||||
/// </summary>
|
|
||||||
private readonly ILogger _logger;
|
private readonly ILogger _logger;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The _app paths
|
|
||||||
/// </summary>
|
|
||||||
private readonly IApplicationPaths _appPaths;
|
private readonly IApplicationPaths _appPaths;
|
||||||
|
|
||||||
private readonly IFileSystem _fileSystem;
|
private readonly IFileSystem _fileSystem;
|
||||||
private readonly Func<string> _defaultUserAgentFn;
|
private readonly Func<string> _defaultUserAgentFn;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Initializes a new instance of the <see cref="HttpClientManager" /> class.
|
|
||||||
/// </summary>
|
|
||||||
public HttpClientManager(
|
|
||||||
IApplicationPaths appPaths,
|
|
||||||
ILoggerFactory loggerFactory,
|
|
||||||
IFileSystem fileSystem,
|
|
||||||
Func<string> defaultUserAgentFn)
|
|
||||||
{
|
|
||||||
if (appPaths == null)
|
|
||||||
{
|
|
||||||
throw new ArgumentNullException(nameof(appPaths));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (loggerFactory == null)
|
|
||||||
{
|
|
||||||
throw new ArgumentNullException(nameof(loggerFactory));
|
|
||||||
}
|
|
||||||
|
|
||||||
_logger = loggerFactory.CreateLogger(nameof(HttpClientManager));
|
|
||||||
_fileSystem = fileSystem;
|
|
||||||
_appPaths = appPaths;
|
|
||||||
_defaultUserAgentFn = defaultUserAgentFn;
|
|
||||||
|
|
||||||
// http://stackoverflow.com/questions/566437/http-post-returns-the-error-417-expectation-failed-c
|
|
||||||
ServicePointManager.Expect100Continue = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Holds a dictionary of http clients by host. Use GetHttpClient(host) to retrieve or create a client for web requests.
|
/// Holds a dictionary of http clients by host. Use GetHttpClient(host) to retrieve or create a client for web requests.
|
||||||
/// DON'T dispose it after use.
|
/// DON'T dispose it after use.
|
||||||
|
@ -77,19 +36,41 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
private readonly ConcurrentDictionary<string, HttpClient> _httpClients = new ConcurrentDictionary<string, HttpClient>();
|
private readonly ConcurrentDictionary<string, HttpClient> _httpClients = new ConcurrentDictionary<string, HttpClient>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets
|
/// Initializes a new instance of the <see cref="HttpClientManager" /> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="url">The host.</param>
|
public HttpClientManager(
|
||||||
/// <param name="enableHttpCompression">if set to <c>true</c> [enable HTTP compression].</param>
|
IApplicationPaths appPaths,
|
||||||
/// <returns>HttpClient.</returns>
|
ILogger<HttpClientManager> logger,
|
||||||
/// <exception cref="ArgumentNullException">host</exception>
|
IFileSystem fileSystem,
|
||||||
private HttpClient GetHttpClient(string url, bool enableHttpCompression)
|
Func<string> defaultUserAgentFn)
|
||||||
{
|
{
|
||||||
var key = GetHostFromUrl(url) + enableHttpCompression;
|
if (appPaths == null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(appPaths));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (logger == null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(logger));
|
||||||
|
}
|
||||||
|
|
||||||
|
_logger = logger;
|
||||||
|
_fileSystem = fileSystem;
|
||||||
|
_appPaths = appPaths;
|
||||||
|
_defaultUserAgentFn = defaultUserAgentFn;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the correct http client for the given url.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="url">The url.</param>
|
||||||
|
/// <returns>HttpClient.</returns>
|
||||||
|
private HttpClient GetHttpClient(string url)
|
||||||
|
{
|
||||||
|
var key = GetHostFromUrl(url);
|
||||||
|
|
||||||
if (!_httpClients.TryGetValue(key, out var client))
|
if (!_httpClients.TryGetValue(key, out var client))
|
||||||
{
|
{
|
||||||
|
|
||||||
client = new HttpClient()
|
client = new HttpClient()
|
||||||
{
|
{
|
||||||
BaseAddress = new Uri(url)
|
BaseAddress = new Uri(url)
|
||||||
|
@ -109,24 +90,26 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
if (!string.IsNullOrWhiteSpace(userInfo))
|
if (!string.IsNullOrWhiteSpace(userInfo))
|
||||||
{
|
{
|
||||||
_logger.LogWarning("Found userInfo in url: {0} ... url: {1}", userInfo, url);
|
_logger.LogWarning("Found userInfo in url: {0} ... url: {1}", userInfo, url);
|
||||||
url = url.Replace(userInfo + "@", string.Empty);
|
url = url.Replace(userInfo + '@', string.Empty);
|
||||||
}
|
}
|
||||||
|
|
||||||
var request = new HttpRequestMessage(method, url);
|
var request = new HttpRequestMessage(method, url);
|
||||||
|
|
||||||
AddRequestHeaders(request, options);
|
AddRequestHeaders(request, options);
|
||||||
|
|
||||||
if (options.EnableHttpCompression)
|
switch (options.DecompressionMethod)
|
||||||
{
|
{
|
||||||
if (options.DecompressionMethod.HasValue
|
case CompressionMethod.Deflate | CompressionMethod.Gzip:
|
||||||
&& options.DecompressionMethod.Value == CompressionMethod.Gzip)
|
|
||||||
{
|
|
||||||
request.Headers.Add(HeaderNames.AcceptEncoding, new[] { "gzip", "deflate" });
|
request.Headers.Add(HeaderNames.AcceptEncoding, new[] { "gzip", "deflate" });
|
||||||
}
|
break;
|
||||||
else
|
case CompressionMethod.Deflate:
|
||||||
{
|
|
||||||
request.Headers.Add(HeaderNames.AcceptEncoding, "deflate");
|
request.Headers.Add(HeaderNames.AcceptEncoding, "deflate");
|
||||||
}
|
break;
|
||||||
|
case CompressionMethod.Gzip:
|
||||||
|
request.Headers.Add(HeaderNames.AcceptEncoding, "gzip");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.EnableKeepAlive)
|
if (options.EnableKeepAlive)
|
||||||
|
@ -134,20 +117,8 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
request.Headers.Add(HeaderNames.Connection, "Keep-Alive");
|
request.Headers.Add(HeaderNames.Connection, "Keep-Alive");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(options.Host))
|
|
||||||
{
|
|
||||||
request.Headers.Add(HeaderNames.Host, options.Host);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(options.Referer))
|
|
||||||
{
|
|
||||||
request.Headers.Add(HeaderNames.Referer, options.Referer);
|
|
||||||
}
|
|
||||||
|
|
||||||
//request.Headers.Add(HeaderNames.CacheControl, "no-cache");
|
//request.Headers.Add(HeaderNames.CacheControl, "no-cache");
|
||||||
|
|
||||||
//request.Headers.Add(HeaderNames., options.TimeoutMs;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
if (!string.IsNullOrWhiteSpace(userInfo))
|
if (!string.IsNullOrWhiteSpace(userInfo))
|
||||||
{
|
{
|
||||||
|
@ -188,9 +159,7 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
/// <param name="options">The options.</param>
|
/// <param name="options">The options.</param>
|
||||||
/// <returns>Task{HttpResponseInfo}.</returns>
|
/// <returns>Task{HttpResponseInfo}.</returns>
|
||||||
public Task<HttpResponseInfo> GetResponse(HttpRequestOptions options)
|
public Task<HttpResponseInfo> GetResponse(HttpRequestOptions options)
|
||||||
{
|
=> SendAsync(options, HttpMethod.Get);
|
||||||
return SendAsync(options, HttpMethod.Get);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Performs a GET request and returns the resulting stream
|
/// Performs a GET request and returns the resulting stream
|
||||||
|
@ -209,8 +178,6 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
/// <param name="options">The options.</param>
|
/// <param name="options">The options.</param>
|
||||||
/// <param name="httpMethod">The HTTP method.</param>
|
/// <param name="httpMethod">The HTTP method.</param>
|
||||||
/// <returns>Task{HttpResponseInfo}.</returns>
|
/// <returns>Task{HttpResponseInfo}.</returns>
|
||||||
/// <exception cref="HttpException">
|
|
||||||
/// </exception>
|
|
||||||
public Task<HttpResponseInfo> SendAsync(HttpRequestOptions options, string httpMethod)
|
public Task<HttpResponseInfo> SendAsync(HttpRequestOptions options, string httpMethod)
|
||||||
{
|
{
|
||||||
var httpMethod2 = GetHttpMethod(httpMethod);
|
var httpMethod2 = GetHttpMethod(httpMethod);
|
||||||
|
@ -223,8 +190,6 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
/// <param name="options">The options.</param>
|
/// <param name="options">The options.</param>
|
||||||
/// <param name="httpMethod">The HTTP method.</param>
|
/// <param name="httpMethod">The HTTP method.</param>
|
||||||
/// <returns>Task{HttpResponseInfo}.</returns>
|
/// <returns>Task{HttpResponseInfo}.</returns>
|
||||||
/// <exception cref="HttpException">
|
|
||||||
/// </exception>
|
|
||||||
public async Task<HttpResponseInfo> SendAsync(HttpRequestOptions options, HttpMethod httpMethod)
|
public async Task<HttpResponseInfo> SendAsync(HttpRequestOptions options, HttpMethod httpMethod)
|
||||||
{
|
{
|
||||||
if (options.CacheMode == CacheMode.None)
|
if (options.CacheMode == CacheMode.None)
|
||||||
|
@ -324,32 +289,37 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
|
|
||||||
options.CancellationToken.ThrowIfCancellationRequested();
|
options.CancellationToken.ThrowIfCancellationRequested();
|
||||||
|
|
||||||
var client = GetHttpClient(options.Url, options.EnableHttpCompression);
|
var client = GetHttpClient(options.Url);
|
||||||
|
|
||||||
var httpWebRequest = GetRequestMessage(options, httpMethod);
|
var httpWebRequest = GetRequestMessage(options, httpMethod);
|
||||||
|
|
||||||
if (options.RequestContentBytes != null ||
|
if (options.RequestContentBytes != null
|
||||||
!string.IsNullOrEmpty(options.RequestContent) ||
|
|| !string.IsNullOrEmpty(options.RequestContent)
|
||||||
httpMethod == HttpMethod.Post)
|
|| httpMethod == HttpMethod.Post)
|
||||||
{
|
{
|
||||||
try
|
if (options.RequestContentBytes != null)
|
||||||
{
|
{
|
||||||
httpWebRequest.Content = new StringContent(Encoding.UTF8.GetString(options.RequestContentBytes) ?? options.RequestContent ?? string.Empty);
|
httpWebRequest.Content = new ByteArrayContent(options.RequestContentBytes);
|
||||||
|
|
||||||
var contentType = options.RequestContentType ?? "application/x-www-form-urlencoded";
|
|
||||||
|
|
||||||
if (options.AppendCharsetToMimeType)
|
|
||||||
{
|
|
||||||
contentType = contentType.TrimEnd(';') + "; charset=\"utf-8\"";
|
|
||||||
}
|
|
||||||
|
|
||||||
httpWebRequest.Headers.Add(HeaderNames.ContentType, contentType);
|
|
||||||
await client.SendAsync(httpWebRequest).ConfigureAwait(false);
|
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
else if (options.RequestContent != null)
|
||||||
{
|
{
|
||||||
throw new HttpException(ex.Message) { IsTimedOut = true };
|
httpWebRequest.Content = new StringContent(options.RequestContent);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
httpWebRequest.Content = new ByteArrayContent(Array.Empty<byte>());
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: add correct content type
|
||||||
|
/*
|
||||||
|
var contentType = options.RequestContentType ?? "application/x-www-form-urlencoded";
|
||||||
|
|
||||||
|
if (options.AppendCharsetToMimeType)
|
||||||
|
{
|
||||||
|
contentType = contentType.TrimEnd(';') + "; charset=\"utf-8\"";
|
||||||
|
}
|
||||||
|
|
||||||
|
httpWebRequest.Headers.Add(HeaderNames.ContentType, contentType);*/
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.LogRequest)
|
if (options.LogRequest)
|
||||||
|
@ -357,92 +327,53 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
_logger.LogDebug("HttpClientManager {0}: {1}", httpMethod.ToString(), options.Url);
|
_logger.LogDebug("HttpClientManager {0}: {1}", httpMethod.ToString(), options.Url);
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
options.CancellationToken.ThrowIfCancellationRequested();
|
||||||
|
|
||||||
|
if (!options.BufferContent)
|
||||||
{
|
{
|
||||||
|
var response = await client.SendAsync(httpWebRequest, options.CancellationToken).ConfigureAwait(false);
|
||||||
|
|
||||||
|
await EnsureSuccessStatusCode(response, options).ConfigureAwait(false);
|
||||||
|
|
||||||
options.CancellationToken.ThrowIfCancellationRequested();
|
options.CancellationToken.ThrowIfCancellationRequested();
|
||||||
|
|
||||||
/*if (!options.BufferContent)
|
var stream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false);
|
||||||
|
return new HttpResponseInfo(response.Headers)
|
||||||
{
|
{
|
||||||
var response = await client.HttpClient.SendAsync(httpWebRequest).ConfigureAwait(false);
|
Content = stream,
|
||||||
|
StatusCode = response.StatusCode,
|
||||||
|
ContentType = response.Content.Headers.ContentType?.MediaType,
|
||||||
|
ContentLength = stream.Length,
|
||||||
|
ResponseUrl = response.Content.Headers.ContentLocation?.ToString()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
await EnsureSuccessStatusCode(client, response, options).ConfigureAwait(false);
|
using (var response = await client.SendAsync(httpWebRequest, options.CancellationToken).ConfigureAwait(false))
|
||||||
|
{
|
||||||
|
await EnsureSuccessStatusCode(response, options).ConfigureAwait(false);
|
||||||
|
|
||||||
options.CancellationToken.ThrowIfCancellationRequested();
|
options.CancellationToken.ThrowIfCancellationRequested();
|
||||||
|
|
||||||
return GetResponseInfo(response, await response.Content.ReadAsStreamAsync().ConfigureAwait(false), response.Content.Headers.ContentLength, response);
|
using (var stream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false))
|
||||||
}*/
|
|
||||||
|
|
||||||
using (var response = await client.SendAsync(httpWebRequest).ConfigureAwait(false))
|
|
||||||
{
|
{
|
||||||
await EnsureSuccessStatusCode(response, options).ConfigureAwait(false);
|
var memoryStream = new MemoryStream();
|
||||||
|
await stream.CopyToAsync(memoryStream, StreamDefaults.DefaultCopyToBufferSize, options.CancellationToken).ConfigureAwait(false);
|
||||||
|
memoryStream.Position = 0;
|
||||||
|
|
||||||
options.CancellationToken.ThrowIfCancellationRequested();
|
return new HttpResponseInfo(response.Headers)
|
||||||
|
|
||||||
using (var stream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false))
|
|
||||||
{
|
{
|
||||||
var memoryStream = new MemoryStream();
|
Content = memoryStream,
|
||||||
await stream.CopyToAsync(memoryStream).ConfigureAwait(false);
|
StatusCode = response.StatusCode,
|
||||||
memoryStream.Position = 0;
|
ContentType = response.Content.Headers.ContentType?.MediaType,
|
||||||
|
ContentLength = memoryStream.Length,
|
||||||
return GetResponseInfo(response, memoryStream, memoryStream.Length, null);
|
ResponseUrl = response.Content.Headers.ContentLocation?.ToString()
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (OperationCanceledException ex)
|
|
||||||
{
|
|
||||||
throw GetCancellationException(options, options.CancellationToken, ex);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private HttpResponseInfo GetResponseInfo(HttpResponseMessage httpResponse, Stream content, long? contentLength, IDisposable disposable)
|
|
||||||
{
|
|
||||||
var responseInfo = new HttpResponseInfo(disposable)
|
|
||||||
{
|
|
||||||
Content = content,
|
|
||||||
StatusCode = httpResponse.StatusCode,
|
|
||||||
ContentType = httpResponse.Content.Headers.ContentType?.MediaType,
|
|
||||||
ContentLength = contentLength,
|
|
||||||
ResponseUrl = httpResponse.Content.Headers.ContentLocation?.ToString()
|
|
||||||
};
|
|
||||||
|
|
||||||
if (httpResponse.Headers != null)
|
|
||||||
{
|
|
||||||
SetHeaders(httpResponse.Content.Headers, responseInfo);
|
|
||||||
}
|
|
||||||
|
|
||||||
return responseInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
private HttpResponseInfo GetResponseInfo(HttpResponseMessage httpResponse, string tempFile, long? contentLength)
|
|
||||||
{
|
|
||||||
var responseInfo = new HttpResponseInfo
|
|
||||||
{
|
|
||||||
TempFilePath = tempFile,
|
|
||||||
StatusCode = httpResponse.StatusCode,
|
|
||||||
ContentType = httpResponse.Content.Headers.ContentType?.MediaType,
|
|
||||||
ContentLength = contentLength
|
|
||||||
};
|
|
||||||
|
|
||||||
if (httpResponse.Headers != null)
|
|
||||||
{
|
|
||||||
SetHeaders(httpResponse.Content.Headers, responseInfo);
|
|
||||||
}
|
|
||||||
|
|
||||||
return responseInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void SetHeaders(HttpContentHeaders headers, HttpResponseInfo responseInfo)
|
|
||||||
{
|
|
||||||
foreach (var key in headers)
|
|
||||||
{
|
|
||||||
responseInfo.Headers[key.Key] = string.Join(", ", key.Value);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task<HttpResponseInfo> Post(HttpRequestOptions options)
|
public Task<HttpResponseInfo> Post(HttpRequestOptions options)
|
||||||
{
|
=> SendAsync(options, HttpMethod.Post);
|
||||||
return SendAsync(options, HttpMethod.Post);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Downloads the contents of a given url into a temporary location
|
/// Downloads the contents of a given url into a temporary location
|
||||||
|
@ -451,10 +382,8 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
/// <returns>Task{System.String}.</returns>
|
/// <returns>Task{System.String}.</returns>
|
||||||
public async Task<string> GetTempFile(HttpRequestOptions options)
|
public async Task<string> GetTempFile(HttpRequestOptions options)
|
||||||
{
|
{
|
||||||
using (var response = await GetTempFileResponse(options).ConfigureAwait(false))
|
var response = await GetTempFileResponse(options).ConfigureAwait(false);
|
||||||
{
|
return response.TempFilePath;
|
||||||
return response.TempFilePath;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<HttpResponseInfo> GetTempFileResponse(HttpRequestOptions options)
|
public async Task<HttpResponseInfo> GetTempFileResponse(HttpRequestOptions options)
|
||||||
|
@ -481,13 +410,13 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
_logger.LogDebug("HttpClientManager.GetTempFileResponse url: {0}", options.Url);
|
_logger.LogDebug("HttpClientManager.GetTempFileResponse url: {0}", options.Url);
|
||||||
}
|
}
|
||||||
|
|
||||||
var client = GetHttpClient(options.Url, options.EnableHttpCompression);
|
var client = GetHttpClient(options.Url);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
options.CancellationToken.ThrowIfCancellationRequested();
|
options.CancellationToken.ThrowIfCancellationRequested();
|
||||||
|
|
||||||
using (var response = (await client.SendAsync(httpWebRequest).ConfigureAwait(false)))
|
using (var response = (await client.SendAsync(httpWebRequest, options.CancellationToken).ConfigureAwait(false)))
|
||||||
{
|
{
|
||||||
await EnsureSuccessStatusCode(response, options).ConfigureAwait(false);
|
await EnsureSuccessStatusCode(response, options).ConfigureAwait(false);
|
||||||
|
|
||||||
|
@ -501,8 +430,15 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
|
|
||||||
options.Progress.Report(100);
|
options.Progress.Report(100);
|
||||||
|
|
||||||
var contentLength = response.Content.Headers.ContentLength;
|
var responseInfo = new HttpResponseInfo(response.Headers)
|
||||||
return GetResponseInfo(response, tempFile, contentLength);
|
{
|
||||||
|
TempFilePath = tempFile,
|
||||||
|
StatusCode = response.StatusCode,
|
||||||
|
ContentType = response.Content.Headers.ContentType?.MediaType,
|
||||||
|
ContentLength = response.Content.Headers.ContentLength
|
||||||
|
};
|
||||||
|
|
||||||
|
return responseInfo;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
@ -530,7 +466,7 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
{
|
{
|
||||||
if (options.LogErrors)
|
if (options.LogErrors)
|
||||||
{
|
{
|
||||||
_logger.LogError(webException, "Error {status} getting response from {url}", webException.Status, options.Url);
|
_logger.LogError(webException, "Error {Status} getting response from {Url}", webException.Status, options.Url);
|
||||||
}
|
}
|
||||||
|
|
||||||
var exception = new HttpException(webException.Message, webException);
|
var exception = new HttpException(webException.Message, webException);
|
||||||
|
@ -565,7 +501,7 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
|
|
||||||
if (options.LogErrors)
|
if (options.LogErrors)
|
||||||
{
|
{
|
||||||
_logger.LogError(ex, "Error getting response from {url}", options.Url);
|
_logger.LogError(ex, "Error getting response from {Url}", options.Url);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ex;
|
return ex;
|
||||||
|
@ -639,7 +575,7 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
}
|
}
|
||||||
|
|
||||||
var msg = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
var msg = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
_logger.LogError(msg);
|
_logger.LogError("HTTP request failed with message: {Message}", msg);
|
||||||
|
|
||||||
throw new HttpException(response.ReasonPhrase)
|
throw new HttpException(response.ReasonPhrase)
|
||||||
{
|
{
|
||||||
|
|
|
@ -71,7 +71,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
||||||
UserAgent = "Emby/3.0",
|
UserAgent = "Emby/3.0",
|
||||||
|
|
||||||
// Shouldn't matter but may cause issues
|
// Shouldn't matter but may cause issues
|
||||||
EnableHttpCompression = false
|
DecompressionMethod = CompressionMethod.None
|
||||||
};
|
};
|
||||||
|
|
||||||
using (var response = await _httpClient.SendAsync(httpRequestOptions, "GET").ConfigureAwait(false))
|
using (var response = await _httpClient.SendAsync(httpRequestOptions, "GET").ConfigureAwait(false))
|
||||||
|
|
|
@ -627,15 +627,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings
|
||||||
ListingsProviderInfo providerInfo)
|
ListingsProviderInfo providerInfo)
|
||||||
{
|
{
|
||||||
// Schedules direct requires that the client support compression and will return a 400 response without it
|
// Schedules direct requires that the client support compression and will return a 400 response without it
|
||||||
options.EnableHttpCompression = true;
|
options.DecompressionMethod = CompressionMethod.Deflate;
|
||||||
|
|
||||||
// On windows 7 under .net core, this header is not getting added
|
|
||||||
#if NETSTANDARD2_0
|
|
||||||
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
|
|
||||||
{
|
|
||||||
options.RequestHeaders[HeaderNames.AcceptEncoding] = "deflate";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -665,15 +657,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings
|
||||||
ListingsProviderInfo providerInfo)
|
ListingsProviderInfo providerInfo)
|
||||||
{
|
{
|
||||||
// Schedules direct requires that the client support compression and will return a 400 response without it
|
// Schedules direct requires that the client support compression and will return a 400 response without it
|
||||||
options.EnableHttpCompression = true;
|
options.DecompressionMethod = CompressionMethod.Deflate;
|
||||||
|
|
||||||
// On windows 7 under .net core, this header is not getting added
|
|
||||||
#if NETSTANDARD2_0
|
|
||||||
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
|
|
||||||
{
|
|
||||||
options.RequestHeaders[HeaderNames.AcceptEncoding] = "deflate";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
@ -73,11 +73,9 @@ namespace Emby.Server.Implementations.LiveTv.Listings
|
||||||
CancellationToken = cancellationToken,
|
CancellationToken = cancellationToken,
|
||||||
Url = path,
|
Url = path,
|
||||||
Progress = new SimpleProgress<double>(),
|
Progress = new SimpleProgress<double>(),
|
||||||
DecompressionMethod = CompressionMethod.Gzip,
|
|
||||||
|
|
||||||
// It's going to come back gzipped regardless of this value
|
// It's going to come back gzipped regardless of this value
|
||||||
// So we need to make sure the decompression method is set to gzip
|
// So we need to make sure the decompression method is set to gzip
|
||||||
EnableHttpCompression = true,
|
DecompressionMethod = CompressionMethod.Gzip,
|
||||||
|
|
||||||
UserAgent = "Emby/3.0"
|
UserAgent = "Emby/3.0"
|
||||||
|
|
||||||
|
|
|
@ -46,8 +46,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
|
||||||
Url = url,
|
Url = url,
|
||||||
CancellationToken = CancellationToken.None,
|
CancellationToken = CancellationToken.None,
|
||||||
BufferContent = false,
|
BufferContent = false,
|
||||||
|
DecompressionMethod = CompressionMethod.None
|
||||||
EnableHttpCompression = false,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
foreach (var header in mediaSource.RequiredHttpHeaders)
|
foreach (var header in mediaSource.RequiredHttpHeaders)
|
||||||
|
|
|
@ -186,6 +186,11 @@ namespace Jellyfin.Drawing.Skia
|
||||||
|
|
||||||
public ImageDimensions GetImageSize(string path)
|
public ImageDimensions GetImageSize(string path)
|
||||||
{
|
{
|
||||||
|
if (!File.Exists(path))
|
||||||
|
{
|
||||||
|
throw new FileNotFoundException("File not found", path);
|
||||||
|
}
|
||||||
|
|
||||||
using (var s = new SKFileStream(path))
|
using (var s = new SKFileStream(path))
|
||||||
using (var codec = SKCodec.Create(s))
|
using (var codec = SKCodec.Create(s))
|
||||||
{
|
{
|
||||||
|
|
|
@ -120,6 +120,17 @@ namespace Jellyfin.Server
|
||||||
// The default connection limit is 10 for ASP.NET hosted applications and 2 for all others.
|
// The default connection limit is 10 for ASP.NET hosted applications and 2 for all others.
|
||||||
ServicePointManager.DefaultConnectionLimit = Math.Max(96, ServicePointManager.DefaultConnectionLimit);
|
ServicePointManager.DefaultConnectionLimit = Math.Max(96, ServicePointManager.DefaultConnectionLimit);
|
||||||
|
|
||||||
|
// CA5359: Do Not Disable Certificate Validation
|
||||||
|
#pragma warning disable CA5359
|
||||||
|
|
||||||
|
// Increase the max http request limit
|
||||||
|
// The default connection limit is 10 for ASP.NET hosted applications and 2 for all others.
|
||||||
|
ServicePointManager.DefaultConnectionLimit = Math.Max(96, ServicePointManager.DefaultConnectionLimit);
|
||||||
|
|
||||||
|
// Disable the "Expect: 100-Continue" header by default
|
||||||
|
// http://stackoverflow.com/questions/566437/http-post-returns-the-error-417-expectation-failed-c
|
||||||
|
ServicePointManager.Expect100Continue = false;
|
||||||
|
|
||||||
// CA5359: Do Not Disable Certificate Validation
|
// CA5359: Do Not Disable Certificate Validation
|
||||||
#pragma warning disable CA5359
|
#pragma warning disable CA5359
|
||||||
|
|
||||||
|
|
|
@ -224,7 +224,17 @@ namespace MediaBrowser.Api.UserLibrary
|
||||||
request.IncludeItemTypes = "Playlist";
|
request.IncludeItemTypes = "Playlist";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(item is UserRootFolder) && !user.Policy.EnableAllFolders && !user.Policy.EnabledFolders.Any(i => new Guid(i) == item.Id))
|
bool isInEnabledFolder = user.Policy.EnabledFolders.Any(i => new Guid(i) == item.Id);
|
||||||
|
var collectionFolders = _libraryManager.GetCollectionFolders(item);
|
||||||
|
foreach (var collectionFolder in collectionFolders)
|
||||||
|
{
|
||||||
|
if (user.Policy.EnabledFolders.Contains(collectionFolder.Id.ToString("N"), StringComparer.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
isInEnabledFolder = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(item is UserRootFolder) && !user.Policy.EnableAllFolders && !isInEnabledFolder)
|
||||||
{
|
{
|
||||||
Logger.LogWarning("{UserName} is not permitted to access Library {ItemName}.", user.Name, item.Name);
|
Logger.LogWarning("{UserName} is not permitted to access Library {ItemName}.", user.Name, item.Name);
|
||||||
return new QueryResult<BaseItem>
|
return new QueryResult<BaseItem>
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using Microsoft.Net.Http.Headers;
|
using Microsoft.Net.Http.Headers;
|
||||||
|
|
||||||
|
@ -17,7 +16,7 @@ namespace MediaBrowser.Common.Net
|
||||||
/// <value>The URL.</value>
|
/// <value>The URL.</value>
|
||||||
public string Url { get; set; }
|
public string Url { get; set; }
|
||||||
|
|
||||||
public CompressionMethod? DecompressionMethod { get; set; }
|
public CompressionMethod DecompressionMethod { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the accept header.
|
/// Gets or sets the accept header.
|
||||||
|
@ -49,13 +48,21 @@ namespace MediaBrowser.Common.Net
|
||||||
/// Gets or sets the referrer.
|
/// Gets or sets the referrer.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The referrer.</value>
|
/// <value>The referrer.</value>
|
||||||
public string Referer { get; set; }
|
public string Referer
|
||||||
|
{
|
||||||
|
get => GetHeaderValue(HeaderNames.Referer);
|
||||||
|
set => RequestHeaders[HeaderNames.Referer] = value;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the host.
|
/// Gets or sets the host.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The host.</value>
|
/// <value>The host.</value>
|
||||||
public string Host { get; set; }
|
public string Host
|
||||||
|
{
|
||||||
|
get => GetHeaderValue(HeaderNames.Host);
|
||||||
|
set => RequestHeaders[HeaderNames.Host] = value;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the progress.
|
/// Gets or sets the progress.
|
||||||
|
@ -63,12 +70,6 @@ namespace MediaBrowser.Common.Net
|
||||||
/// <value>The progress.</value>
|
/// <value>The progress.</value>
|
||||||
public IProgress<double> Progress { get; set; }
|
public IProgress<double> Progress { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets a value indicating whether [enable HTTP compression].
|
|
||||||
/// </summary>
|
|
||||||
/// <value><c>true</c> if [enable HTTP compression]; otherwise, <c>false</c>.</value>
|
|
||||||
public bool EnableHttpCompression { get; set; }
|
|
||||||
|
|
||||||
public Dictionary<string, string> RequestHeaders { get; private set; }
|
public Dictionary<string, string> RequestHeaders { get; private set; }
|
||||||
|
|
||||||
public string RequestContentType { get; set; }
|
public string RequestContentType { get; set; }
|
||||||
|
@ -104,13 +105,12 @@ namespace MediaBrowser.Common.Net
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public HttpRequestOptions()
|
public HttpRequestOptions()
|
||||||
{
|
{
|
||||||
EnableHttpCompression = true;
|
|
||||||
|
|
||||||
RequestHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
RequestHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
||||||
|
|
||||||
LogRequest = true;
|
LogRequest = true;
|
||||||
LogErrors = true;
|
LogErrors = true;
|
||||||
CacheMode = CacheMode.None;
|
CacheMode = CacheMode.None;
|
||||||
|
DecompressionMethod = CompressionMethod.Deflate;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -120,9 +120,11 @@ namespace MediaBrowser.Common.Net
|
||||||
Unconditional = 1
|
Unconditional = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Flags]
|
||||||
public enum CompressionMethod
|
public enum CompressionMethod
|
||||||
{
|
{
|
||||||
Deflate,
|
None = 0b00000001,
|
||||||
Gzip
|
Deflate = 0b00000010,
|
||||||
|
Gzip = 0b00000100
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
using System.Net.Http.Headers;
|
||||||
|
|
||||||
namespace MediaBrowser.Common.Net
|
namespace MediaBrowser.Common.Net
|
||||||
{
|
{
|
||||||
|
@ -50,26 +50,21 @@ namespace MediaBrowser.Common.Net
|
||||||
/// Gets or sets the headers.
|
/// Gets or sets the headers.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The headers.</value>
|
/// <value>The headers.</value>
|
||||||
public Dictionary<string, string> Headers { get; set; }
|
public HttpResponseHeaders Headers { get; set; }
|
||||||
|
|
||||||
private readonly IDisposable _disposable;
|
|
||||||
|
|
||||||
public HttpResponseInfo(IDisposable disposable)
|
|
||||||
{
|
|
||||||
_disposable = disposable;
|
|
||||||
Headers = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
||||||
}
|
|
||||||
public HttpResponseInfo()
|
public HttpResponseInfo()
|
||||||
{
|
{
|
||||||
Headers = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public HttpResponseInfo(HttpResponseHeaders headers)
|
||||||
|
{
|
||||||
|
Headers = headers;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
if (_disposable != null)
|
// Only IDisposable for backwards compatibility
|
||||||
{
|
|
||||||
_disposable.Dispose();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,24 +24,28 @@ namespace MediaBrowser.Providers.TV.TheTVDB
|
||||||
{
|
{
|
||||||
_cache = memoryCache;
|
_cache = memoryCache;
|
||||||
_tvDbClient = new TvDbClient();
|
_tvDbClient = new TvDbClient();
|
||||||
_tvDbClient.Authentication.AuthenticateAsync(TvdbUtils.TvdbApiKey);
|
|
||||||
_tokenCreatedAt = DateTime.Now;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public TvDbClient TvDbClient
|
private TvDbClient TvDbClient
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
if (string.IsNullOrEmpty(_tvDbClient.Authentication.Token))
|
||||||
|
{
|
||||||
|
_tvDbClient.Authentication.AuthenticateAsync(TvdbUtils.TvdbApiKey).GetAwaiter().GetResult();
|
||||||
|
_tokenCreatedAt = DateTime.Now;
|
||||||
|
}
|
||||||
|
|
||||||
// Refresh if necessary
|
// Refresh if necessary
|
||||||
if (_tokenCreatedAt < DateTime.Now.Subtract(TimeSpan.FromHours(20)))
|
if (_tokenCreatedAt < DateTime.Now.Subtract(TimeSpan.FromHours(20)))
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
_tvDbClient.Authentication.RefreshTokenAsync();
|
_tvDbClient.Authentication.RefreshTokenAsync().GetAwaiter().GetResult();
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
_tvDbClient.Authentication.AuthenticateAsync(TvdbUtils.TvdbApiKey);
|
_tvDbClient.Authentication.AuthenticateAsync(TvdbUtils.TvdbApiKey).GetAwaiter().GetResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
_tokenCreatedAt = DateTime.Now;
|
_tokenCreatedAt = DateTime.Now;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 37636dae5c6c0b0711dfc7612f843b864dd59469
|
Subproject commit c9e70d95643e84437189dd500b0380ec0fbbf659
|
|
@ -1,4 +1,4 @@
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: AssemblyVersion("10.3.5")]
|
[assembly: AssemblyVersion("10.3.6")]
|
||||||
[assembly: AssemblyFileVersion("10.3.5")]
|
[assembly: AssemblyFileVersion("10.3.6")]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
# We just wrap `build` so this is really it
|
# We just wrap `build` so this is really it
|
||||||
name: "jellyfin"
|
name: "jellyfin"
|
||||||
version: "10.3.5"
|
version: "10.3.6"
|
||||||
packages:
|
packages:
|
||||||
- debian-package-x64
|
- debian-package-x64
|
||||||
- debian-package-armhf
|
- debian-package-armhf
|
||||||
|
|
|
@ -1,20 +1,36 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
NAME=jellyfin
|
# restart.sh - Jellyfin server restart script
|
||||||
|
# Part of the Jellyfin project (https://github.com/jellyfin)
|
||||||
|
#
|
||||||
|
# This script restarts the Jellyfin daemon on Linux when using
|
||||||
|
# the Restart button on the admin dashboard. It supports the
|
||||||
|
# systemctl, service, and traditional /etc/init.d (sysv) restart
|
||||||
|
# methods, chosen automatically by which one is found first (in
|
||||||
|
# that order).
|
||||||
|
#
|
||||||
|
# This script is used by the Debian/Ubuntu/Fedora/CentOS packages.
|
||||||
|
|
||||||
restart_cmds=(
|
get_service_command() {
|
||||||
"systemctl restart ${NAME}"
|
for command in systemctl service; do
|
||||||
"service ${NAME} restart"
|
if which $command &>/dev/null; then
|
||||||
"/etc/init.d/${NAME} restart"
|
echo $command && return
|
||||||
"s6-svc -t /var/run/s6/services/${NAME}"
|
fi
|
||||||
)
|
done
|
||||||
|
echo "sysv"
|
||||||
|
}
|
||||||
|
|
||||||
for restart_cmd in "${restart_cmds[@]}"; do
|
cmd="$( get_service_command )"
|
||||||
cmd=$(echo "$restart_cmd" | awk '{print $1}')
|
echo "Detected service control platform '$cmd'; using it to restart Jellyfin..."
|
||||||
cmd_loc=$(command -v ${cmd})
|
case $cmd in
|
||||||
if [[ -n "$cmd_loc" ]]; then
|
'systemctl')
|
||||||
restart_cmd=$(echo "$restart_cmd" | sed -e "s%${cmd}%${cmd_loc}%")
|
echo "sleep 2; /usr/bin/sudo $( which systemctl ) restart jellyfin" | at now
|
||||||
echo "sleep 2; sudo $restart_cmd > /dev/null 2>&1" | at now > /dev/null 2>&1
|
;;
|
||||||
exit 0
|
'service')
|
||||||
fi
|
echo "sleep 2; /usr/bin/sudo $( which service ) jellyfin restart" | at now
|
||||||
done
|
;;
|
||||||
|
'sysv')
|
||||||
|
echo "sleep 2; /usr/bin/sudo /etc/init.d/jellyfin restart" | at now
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
exit 0
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
jellyfin (10.3.6-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* New upstream version 10.3.6; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.6
|
||||||
|
|
||||||
|
-- Jellyfin Packaging Team <packaging@jellyfin.org> Sat, 06 Jul 2019 13:34:19 -0400
|
||||||
|
|
||||||
jellyfin (10.3.5-1) unstable; urgency=medium
|
jellyfin (10.3.5-1) unstable; urgency=medium
|
||||||
|
|
||||||
* New upstream version 10.3.5; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.5
|
* New upstream version 10.3.5; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.5
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: jellyfin
|
Name: jellyfin
|
||||||
Version: 10.3.5
|
Version: 10.3.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: The Free Software Media Browser
|
Summary: The Free Software Media Browser
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
|
@ -140,6 +140,8 @@ fi
|
||||||
%systemd_postun_with_restart jellyfin.service
|
%systemd_postun_with_restart jellyfin.service
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jul 06 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
||||||
|
- New upstream version 10.3.6; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.6
|
||||||
* Sun Jun 09 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
* Sun Jun 09 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
||||||
- New upstream version 10.3.5; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.5
|
- New upstream version 10.3.5; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.5
|
||||||
* Thu Jun 06 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
* Thu Jun 06 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
||||||
|
|
|
@ -1,6 +1,36 @@
|
||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
NAME=jellyfin
|
# restart.sh - Jellyfin server restart script
|
||||||
restart_cmd="/usr/bin/systemctl restart ${NAME}"
|
# Part of the Jellyfin project (https://github.com/jellyfin)
|
||||||
echo "sleep 2; sudo $restart_cmd > /dev/null 2>&1" | at now > /dev/null 2>&1
|
#
|
||||||
|
# This script restarts the Jellyfin daemon on Linux when using
|
||||||
|
# the Restart button on the admin dashboard. It supports the
|
||||||
|
# systemctl, service, and traditional /etc/init.d (sysv) restart
|
||||||
|
# methods, chosen automatically by which one is found first (in
|
||||||
|
# that order).
|
||||||
|
#
|
||||||
|
# This script is used by the Debian/Ubuntu/Fedora/CentOS packages.
|
||||||
|
|
||||||
|
get_service_command() {
|
||||||
|
for command in systemctl service; do
|
||||||
|
if which $command &>/dev/null; then
|
||||||
|
echo $command && return
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo "sysv"
|
||||||
|
}
|
||||||
|
|
||||||
|
cmd="$( get_service_command )"
|
||||||
|
echo "Detected service control platform '$cmd'; using it to restart Jellyfin..."
|
||||||
|
case $cmd in
|
||||||
|
'systemctl')
|
||||||
|
echo "sleep 2; /usr/bin/sudo $( which systemctl ) restart jellyfin" | at now
|
||||||
|
;;
|
||||||
|
'service')
|
||||||
|
echo "sleep 2; /usr/bin/sudo $( which service ) jellyfin restart" | at now
|
||||||
|
;;
|
||||||
|
'sysv')
|
||||||
|
echo "sleep 2; /usr/bin/sudo /etc/init.d/jellyfin restart" | at now
|
||||||
|
;;
|
||||||
|
esac
|
||||||
exit 0
|
exit 0
|
Loading…
Reference in New Issue
Block a user