mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Remove DynamicCorsMiddleware
This commit is contained in:
parent
eba0d9e387
commit
e97ccd87fb
@ -1,66 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.AspNetCore.Cors.Infrastructure;
|
|
||||||
using Microsoft.AspNetCore.Http;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using Microsoft.Net.Http.Headers;
|
|
||||||
|
|
||||||
namespace Jellyfin.Server.Middleware
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Dynamic cors middleware.
|
|
||||||
/// </summary>
|
|
||||||
public class DynamicCorsMiddleware
|
|
||||||
{
|
|
||||||
private readonly RequestDelegate _next;
|
|
||||||
private readonly ILogger<DynamicCorsMiddleware> _logger;
|
|
||||||
private readonly CorsMiddleware _corsMiddleware;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Initializes a new instance of the <see cref="DynamicCorsMiddleware"/> class.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="next">Next request delegate.</param>
|
|
||||||
/// <param name="corsService">Instance of the <see cref="ICorsService"/> interface.</param>
|
|
||||||
/// <param name="loggerFactory">Instance of the <see cref="ILoggerFactory"/> interface.</param>
|
|
||||||
/// <param name="policyName">The cors policy name.</param>
|
|
||||||
public DynamicCorsMiddleware(
|
|
||||||
RequestDelegate next,
|
|
||||||
ICorsService corsService,
|
|
||||||
ILoggerFactory loggerFactory,
|
|
||||||
string policyName)
|
|
||||||
{
|
|
||||||
_corsMiddleware = new CorsMiddleware(next, corsService, loggerFactory, policyName);
|
|
||||||
_next = next;
|
|
||||||
_logger = loggerFactory.CreateLogger<DynamicCorsMiddleware>();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Invoke request.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="context">Request context.</param>
|
|
||||||
/// <param name="corsPolicyProvider">Instance of the <see cref="ICorsPolicyProvider"/> interface.</param>
|
|
||||||
/// <returns>Task.</returns>
|
|
||||||
///
|
|
||||||
public async Task Invoke(HttpContext context, ICorsPolicyProvider corsPolicyProvider)
|
|
||||||
{
|
|
||||||
// Only execute if is preflight request.
|
|
||||||
if (string.Equals(context.Request.Method, CorsConstants.PreflightHttpMethod, StringComparison.OrdinalIgnoreCase))
|
|
||||||
{
|
|
||||||
// Invoke original cors middleware.
|
|
||||||
await _corsMiddleware.Invoke(context, corsPolicyProvider).ConfigureAwait(false);
|
|
||||||
if (context.Response.Headers.TryGetValue(HeaderNames.AccessControlAllowOrigin, out var headerValue)
|
|
||||||
&& string.Equals(headerValue, "*", StringComparison.Ordinal))
|
|
||||||
{
|
|
||||||
context.Response.Headers[HeaderNames.AccessControlAllowOrigin] = context.Request.Host.Value;
|
|
||||||
|
|
||||||
// Always allow credentials.
|
|
||||||
context.Response.Headers[HeaderNames.AccessControlAllowCredentials] = "true";
|
|
||||||
_logger.LogDebug("Overwriting CORS response header: {HeaderName}: {HeaderValue}", HeaderNames.AccessControlAllowOrigin, context.Request.Host.Value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Call the next delegate/middleware in the pipeline
|
|
||||||
await this._next(context).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -80,7 +80,7 @@ namespace Jellyfin.Server
|
|||||||
app.UseAuthentication();
|
app.UseAuthentication();
|
||||||
app.UseJellyfinApiSwagger(_serverConfigurationManager);
|
app.UseJellyfinApiSwagger(_serverConfigurationManager);
|
||||||
app.UseRouting();
|
app.UseRouting();
|
||||||
app.UseMiddleware<DynamicCorsMiddleware>(ServerCorsPolicy.DefaultPolicyName);
|
app.UseCors(ServerCorsPolicy.DefaultPolicyName);
|
||||||
app.UseAuthorization();
|
app.UseAuthorization();
|
||||||
if (_serverConfigurationManager.Configuration.EnableMetrics)
|
if (_serverConfigurationManager.Configuration.EnableMetrics)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user