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.
68 lines
2.3 KiB
68 lines
2.3 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Squidex.Domain.Apps.Core.HandleRules;
|
|
using Squidex.Domain.Apps.Core.HandleRules.Actions.Utils;
|
|
using Squidex.Domain.Apps.Core.HandleRules.EnrichedEvents;
|
|
using Squidex.Infrastructure;
|
|
|
|
namespace Squidex.Extensions.Actions.Fastly
|
|
{
|
|
public sealed class FastlyActionHandler : RuleActionHandler<FastlyAction, FastlyJob>
|
|
{
|
|
private const string Description = "Purge key in fastly";
|
|
|
|
private readonly IHttpClientFactory httpClientFactory;
|
|
|
|
public FastlyActionHandler(RuleEventFormatter formatter, IHttpClientFactory httpClientFactory)
|
|
: base(formatter)
|
|
{
|
|
Guard.NotNull(httpClientFactory, nameof(httpClientFactory));
|
|
|
|
this.httpClientFactory = httpClientFactory;
|
|
}
|
|
|
|
protected override (string Description, FastlyJob Data) CreateJob(EnrichedEvent @event, FastlyAction action)
|
|
{
|
|
var ruleJob = new FastlyJob
|
|
{
|
|
Key = @event.AggregateId.ToString(),
|
|
FastlyApiKey = action.ApiKey,
|
|
FastlyServiceID = action.ServiceId
|
|
};
|
|
|
|
return (Description, ruleJob);
|
|
}
|
|
|
|
protected override async Task<(string Dump, Exception Exception)> ExecuteJobAsync(FastlyJob job)
|
|
{
|
|
using (var httpClient = httpClientFactory.CreateClient())
|
|
{
|
|
httpClient.Timeout = TimeSpan.FromSeconds(2);
|
|
|
|
var requestUrl = $"https://api.fastly.com/service/{job.FastlyServiceID}/purge/{job.Key}";
|
|
var request = new HttpRequestMessage(HttpMethod.Post, requestUrl);
|
|
|
|
request.Headers.Add("Fastly-Key", job.FastlyApiKey);
|
|
|
|
return await httpClient.OneWayRequestAsync(request, null);
|
|
}
|
|
}
|
|
}
|
|
|
|
public sealed class FastlyJob
|
|
{
|
|
public string FastlyApiKey { get; set; }
|
|
|
|
public string FastlyServiceID { get; set; }
|
|
|
|
public string Key { get; set; }
|
|
}
|
|
}
|
|
|