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.
 
 
 
 
 

89 lines
2.6 KiB

// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ==========================================================================
using Squidex.Domain.Apps.Core.Rules;
using Squidex.Domain.Apps.Core.Rules.EnrichedEvents;
using Squidex.Flows.Internal.Execution;
namespace Squidex.Domain.Apps.Core.HandleRules;
public sealed record JobResult
{
public static readonly JobResult ConditionPrecheckDoesNotMatch = new JobResult
{
SkipReason = SkipReason.ConditionPrecheckDoesNotMatch,
};
public static readonly JobResult Disabled = new JobResult
{
SkipReason = SkipReason.Disabled,
};
public static readonly JobResult WrongEvent = new JobResult
{
SkipReason = SkipReason.WrongEvent,
};
public static readonly JobResult FromRule = new JobResult
{
SkipReason = SkipReason.FromRule,
};
public static readonly JobResult NoTrigger = new JobResult
{
SkipReason = SkipReason.NoTrigger,
};
public static readonly JobResult TooOld = new JobResult
{
SkipReason = SkipReason.TooOld,
};
public static readonly JobResult WrongEventForTrigger = new JobResult
{
SkipReason = SkipReason.WrongEventForTrigger,
};
public Rule? Rule { get; init; }
public CreateFlowInstanceRequest<FlowEventContext>? Job { get; init; }
public EnrichedEvent? EnrichedEvent { get; init; }
public Exception? EnrichmentError { get; init; }
public SkipReason SkipReason { get; init; }
public int Offset { get; set; }
public static JobResult Skipped(Rule rule, SkipReason reason)
{
return new JobResult { Rule = rule, SkipReason = reason };
}
public static JobResult ConditionDoesNotMatch(EnrichedEvent? enrichedEvent = null, CreateFlowInstanceRequest<FlowEventContext>? job = null)
{
return new JobResult
{
Job = job,
EnrichedEvent = enrichedEvent,
EnrichmentError = null,
SkipReason = SkipReason.ConditionDoesNotMatch,
};
}
public static JobResult Failed(Exception exception, EnrichedEvent? enrichedEvent = null, CreateFlowInstanceRequest<FlowEventContext>? job = null)
{
return new JobResult
{
Job = job,
EnrichedEvent = enrichedEvent,
EnrichmentError = exception,
SkipReason = SkipReason.Failed,
};
}
}