mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-24 09:13:27 +01:00
31 lines
851 B
C#
31 lines
851 B
C#
using System.Threading.Tasks;
|
|
using Lidarr.Http.Extensions;
|
|
using Microsoft.AspNetCore.Http;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
namespace Lidarr.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);
|
|
}
|
|
}
|
|
}
|