mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-17 05:01:54 +01:00
31 lines
855 B
C#
31 lines
855 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using Prowlarr.Http.Extensions;
|
|
|
|
namespace Prowlarr.Http.Middleware
|
|
{
|
|
public class VersionMiddleware
|
|
{
|
|
private const string VERSIONHEADER = "X-Application-Version";
|
|
|
|
private readonly RequestDelegate _next;
|
|
private readonly string _version;
|
|
|
|
public VersionMiddleware(RequestDelegate next)
|
|
{
|
|
_next = next;
|
|
_version = BuildInfo.Version.ToString();
|
|
}
|
|
|
|
public async Task InvokeAsync(HttpContext context)
|
|
{
|
|
if (context.Request.IsApiRequest() && !context.Response.Headers.ContainsKey(VERSIONHEADER))
|
|
{
|
|
context.Response.Headers.Add(VERSIONHEADER, _version);
|
|
}
|
|
|
|
await _next(context);
|
|
}
|
|
}
|
|
}
|