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.
91 lines
2.6 KiB
91 lines
2.6 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using NodaTime;
|
|
using Squidex.Domain.Apps.Core.HandleRules;
|
|
using Squidex.Domain.Apps.Entities.Rules;
|
|
using Squidex.Infrastructure.Reflection;
|
|
using Squidex.Web;
|
|
|
|
namespace Squidex.Areas.Api.Controllers.Rules.Models
|
|
{
|
|
public sealed class RuleEventDto : Resource
|
|
{
|
|
/// <summary>
|
|
/// The id of the event.
|
|
/// </summary>
|
|
public Guid Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// The time when the event has been created.
|
|
/// </summary>
|
|
public Instant Created { get; set; }
|
|
|
|
/// <summary>
|
|
/// The description.
|
|
/// </summary>
|
|
[Required]
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// The name of the event.
|
|
/// </summary>
|
|
[Required]
|
|
public string EventName { get; set; }
|
|
|
|
/// <summary>
|
|
/// The last dump.
|
|
/// </summary>
|
|
public string LastDump { get; set; }
|
|
|
|
/// <summary>
|
|
/// The number of calls.
|
|
/// </summary>
|
|
public int NumCalls { get; set; }
|
|
|
|
/// <summary>
|
|
/// The next attempt.
|
|
/// </summary>
|
|
public Instant? NextAttempt { get; set; }
|
|
|
|
/// <summary>
|
|
/// The result of the event.
|
|
/// </summary>
|
|
public RuleResult Result { get; set; }
|
|
|
|
/// <summary>
|
|
/// The result of the job.
|
|
/// </summary>
|
|
public RuleJobResult JobResult { get; set; }
|
|
|
|
public static RuleEventDto FromRuleEvent(IRuleEventEntity ruleEvent, ApiController controller, string app)
|
|
{
|
|
var result = new RuleEventDto();
|
|
|
|
SimpleMapper.Map(ruleEvent, result);
|
|
SimpleMapper.Map(ruleEvent.Job, result);
|
|
|
|
return result.CreateLinks(controller, app);
|
|
}
|
|
|
|
private RuleEventDto CreateLinks(ApiController controller, string app)
|
|
{
|
|
var values = new { app, id = Id };
|
|
|
|
AddPutLink("update", controller.Url<RulesController>(x => nameof(x.PutEvent), values));
|
|
|
|
if (NextAttempt.HasValue)
|
|
{
|
|
AddDeleteLink("delete", controller.Url<RulesController>(x => nameof(x.DeleteEvent), values));
|
|
}
|
|
|
|
return this;
|
|
}
|
|
}
|
|
}
|
|
|