mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Enable automatic url decoding
This commit is contained in:
parent
557a2ad715
commit
81d675990f
@ -78,6 +78,16 @@ namespace Jellyfin.Server.Extensions
|
|||||||
return appBuilder.UseMiddleware<LanFilteringMiddleware>();
|
return appBuilder.UseMiddleware<LanFilteringMiddleware>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Enables url decoding before binding to the application pipeline.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="appBuilder">The <see cref="IApplicationBuilder"/>.</param>
|
||||||
|
/// <returns>The updated application builder.</returns>
|
||||||
|
public static IApplicationBuilder UseQueryStringDecoding(this IApplicationBuilder appBuilder)
|
||||||
|
{
|
||||||
|
return appBuilder.UseMiddleware<QueryStringDecodingMiddleware>();
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Adds base url redirection to the application pipeline.
|
/// Adds base url redirection to the application pipeline.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
42
Jellyfin.Server/Middleware/QueryStringDecodingMiddleware.cs
Normal file
42
Jellyfin.Server/Middleware/QueryStringDecodingMiddleware.cs
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
using System;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Http;
|
||||||
|
using Microsoft.AspNetCore.Http.Features;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
|
namespace Jellyfin.Server.Middleware
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// URL decodes the querystring before binding.
|
||||||
|
/// </summary>
|
||||||
|
public class QueryStringDecodingMiddleware
|
||||||
|
{
|
||||||
|
private readonly RequestDelegate _next;
|
||||||
|
private readonly ILogger<QueryStringDecodingMiddleware> _logger;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="QueryStringDecodingMiddleware"/> class.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="next">The next delegate in the pipeline.</param>
|
||||||
|
/// <param name="logger">The logger.</param>
|
||||||
|
public QueryStringDecodingMiddleware(
|
||||||
|
RequestDelegate next,
|
||||||
|
ILogger<QueryStringDecodingMiddleware> logger)
|
||||||
|
{
|
||||||
|
_next = next;
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Executes the middleware action.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="httpContext">The current HTTP context.</param>
|
||||||
|
/// <returns>The async task.</returns>
|
||||||
|
public async Task Invoke(HttpContext httpContext)
|
||||||
|
{
|
||||||
|
httpContext.Features.Set<IQueryFeature>(new UrlDecodeQueryFeature(httpContext.Features.Get<IQueryFeature>()));
|
||||||
|
|
||||||
|
await _next(httpContext).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
75
Jellyfin.Server/Middleware/UrlDecodeQueryFeature.cs
Normal file
75
Jellyfin.Server/Middleware/UrlDecodeQueryFeature.cs
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Web;
|
||||||
|
using Microsoft.AspNetCore.Http;
|
||||||
|
using Microsoft.AspNetCore.Http.Features;
|
||||||
|
using Microsoft.Extensions.Primitives;
|
||||||
|
|
||||||
|
namespace Jellyfin.Server.Middleware
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the <see cref="UrlDecodeQueryFeature"/>.
|
||||||
|
/// </summary>
|
||||||
|
public class UrlDecodeQueryFeature : IQueryFeature
|
||||||
|
{
|
||||||
|
private IQueryCollection? _store;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="UrlDecodeQueryFeature"/> class.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="feature">The <see cref="IQueryFeature"/> instance.</param>
|
||||||
|
public UrlDecodeQueryFeature(IQueryFeature feature)
|
||||||
|
{
|
||||||
|
Query = feature.Query;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets a value indicating the url decoded <see cref="IQueryCollection"/>.
|
||||||
|
/// </summary>
|
||||||
|
public IQueryCollection Query
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return _store ?? QueryCollection.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
set
|
||||||
|
{
|
||||||
|
// Only interested in where the querystring is encoded which shows up as one key with everything else in the value.
|
||||||
|
if (value.Count != 1)
|
||||||
|
{
|
||||||
|
_store = value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Encoded querystrings have no value, so don't process anything if a values is present.
|
||||||
|
var kvp = value.First();
|
||||||
|
if (!string.IsNullOrEmpty(kvp.Value))
|
||||||
|
{
|
||||||
|
_store = value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unencode and re-parse querystring.
|
||||||
|
var unencodedKey = HttpUtility.UrlDecode(kvp.Key);
|
||||||
|
|
||||||
|
if (string.Equals(unencodedKey, kvp.Key, System.StringComparison.Ordinal))
|
||||||
|
{
|
||||||
|
_store = value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var pairs = new Dictionary<string, StringValues>();
|
||||||
|
var queryString = unencodedKey.Split('&', System.StringSplitOptions.RemoveEmptyEntries);
|
||||||
|
|
||||||
|
foreach (var pair in queryString)
|
||||||
|
{
|
||||||
|
var item = pair.Split('=', System.StringSplitOptions.RemoveEmptyEntries);
|
||||||
|
pairs.Add(item[0], new StringValues(item.Length == 2 ? item[1] : string.Empty));
|
||||||
|
}
|
||||||
|
|
||||||
|
_store = new QueryCollection(pairs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -150,6 +150,7 @@ namespace Jellyfin.Server
|
|||||||
|
|
||||||
mainApp.UseAuthentication();
|
mainApp.UseAuthentication();
|
||||||
mainApp.UseJellyfinApiSwagger(_serverConfigurationManager);
|
mainApp.UseJellyfinApiSwagger(_serverConfigurationManager);
|
||||||
|
mainApp.UseQueryStringDecoding();
|
||||||
mainApp.UseRouting();
|
mainApp.UseRouting();
|
||||||
mainApp.UseAuthorization();
|
mainApp.UseAuthorization();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user