mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
39 lines
1.4 KiB
// ==========================================================================
|
|
// EnrichWithExpectedVersionHandler.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using System.Globalization;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Squidex.Infrastructure.CQRS.Commands;
|
|
using Squidex.Infrastructure.Tasks;
|
|
|
|
namespace Squidex.Pipeline.CommandHandlers
|
|
{
|
|
public sealed class EnrichWithExpectedVersionHandler : ICommandHandler
|
|
{
|
|
private readonly IHttpContextAccessor httpContextAccessor;
|
|
|
|
public EnrichWithExpectedVersionHandler(IHttpContextAccessor httpContextAccessor)
|
|
{
|
|
this.httpContextAccessor = httpContextAccessor;
|
|
}
|
|
|
|
public Task<bool> HandleAsync(CommandContext context)
|
|
{
|
|
var headers = httpContextAccessor.HttpContext.Request.Headers;
|
|
var headerMatch = headers["If-Match"].ToString();
|
|
|
|
if (!string.IsNullOrWhiteSpace(headerMatch) && long.TryParse(headerMatch, NumberStyles.Any, CultureInfo.InvariantCulture, out long expectedVersion))
|
|
{
|
|
context.Command.ExpectedVersion = expectedVersion;
|
|
}
|
|
|
|
return TaskHelper.False;
|
|
}
|
|
}
|
|
}
|
|
|