Headless CMS and Content Managment Hub
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.
 
 
 
 
 

141 lines
4.7 KiB

// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ==========================================================================
using System;
using System.Threading;
using System.Threading.Tasks;
using Algolia.Search.Clients;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Squidex.Domain.Apps.Core.HandleRules;
using Squidex.Domain.Apps.Core.Rules.EnrichedEvents;
using Squidex.Domain.Apps.Core.Scripting;
#pragma warning disable IDE0059 // Value assigned to symbol is never used
namespace Squidex.Extensions.Actions.Algolia
{
public sealed class AlgoliaActionHandler : RuleActionHandler<AlgoliaAction, AlgoliaJob>
{
private readonly ClientPool<(string AppId, string ApiKey, string IndexName), ISearchIndex> clients;
private readonly IScriptEngine scriptEngine;
public AlgoliaActionHandler(RuleEventFormatter formatter, IScriptEngine scriptEngine)
: base(formatter)
{
clients = new ClientPool<(string AppId, string ApiKey, string IndexName), ISearchIndex>(key =>
{
var client = new SearchClient(key.AppId, key.ApiKey);
return client.InitIndex(key.IndexName);
});
this.scriptEngine = scriptEngine;
}
protected override async Task<(string Description, AlgoliaJob Data)> CreateJobAsync(EnrichedEvent @event, AlgoliaAction action)
{
if (@event is IEnrichedEntityEvent entityEvent)
{
var delete = @event.ShouldDelete(scriptEngine, action.Delete);
var contentId = entityEvent.Id.ToString();
var ruleDescription = string.Empty;
var ruleJob = new AlgoliaJob
{
AppId = action.AppId,
ApiKey = action.ApiKey,
ContentId = contentId,
IndexName = await FormatAsync(action.IndexName, @event)
};
if (delete)
{
ruleDescription = $"Delete entry from Algolia index: {action.IndexName}";
}
else
{
ruleDescription = $"Add entry to Algolia index: {action.IndexName}";
JObject json;
try
{
string jsonString;
if (!string.IsNullOrEmpty(action.Document))
{
jsonString = await FormatAsync(action.Document, @event);
jsonString = jsonString?.Trim();
}
else
{
jsonString = ToJson(@event);
}
json = JObject.Parse(jsonString);
}
catch (Exception ex)
{
json = new JObject(new JProperty("error", $"Invalid JSON: {ex.Message}"));
}
json["objectID"] = contentId;
ruleJob.Content = json;
}
return (ruleDescription, ruleJob);
}
return ("Ignore", new AlgoliaJob());
}
protected override async Task<Result> ExecuteJobAsync(AlgoliaJob job, CancellationToken ct = default)
{
if (string.IsNullOrWhiteSpace(job.AppId))
{
return Result.Ignored();
}
var index = await clients.GetClientAsync((job.AppId, job.ApiKey, job.IndexName));
try
{
if (job.Content != null)
{
var response = await index.SaveObjectAsync(job.Content, null, ct, true);
return Result.Success(JsonConvert.SerializeObject(response, Formatting.Indented));
}
else
{
var response = await index.DeleteObjectAsync(job.ContentId, null, ct);
return Result.Success(JsonConvert.SerializeObject(response, Formatting.Indented));
}
}
catch (Exception ex)
{
return Result.Failed(ex);
}
}
}
public sealed class AlgoliaJob
{
public string AppId { get; set; }
public string ApiKey { get; set; }
public string ContentId { get; set; }
public string IndexName { get; set; }
public JObject Content { get; set; }
}
}