Add shadow attribute before save trigger

pull/9589/head
Vincenzo Caputo 2024-02-25 15:51:01 +00:00
parent e93beba4d3
commit 02de43a49e
1 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,44 @@
<?php
include_once APP . 'Model/WorkflowModules/WorkflowBaseModule.php';
class Module_shadow_attribute_before_save extends WorkflowBaseTriggerModule
{
public $id = 'shadow-attribute-before-save';
public $scope = 'attribute';
public $name = 'Shadow Attribute Before Save';
public $description = 'This trigger is called just before a Shadow Attribute is saved in the database';
public $icon = 'cube';
public $inputs = 0;
public $outputs = 1;
public $blocking = true;
public $misp_core_format = true;
public $trigger_overhead = self::OVERHEAD_MEDIUM;
public function __construct()
{
parent::__construct();
}
public function normalizeData(array $data)
{
$this->Event = ClassRegistry::init('Event');
$this->Attribute = ClassRegistry::init('Attribute');
if (empty($data['ShadowAttribute'])) {
return false;
}
// If we're dealing with a proposed edit, we retrieve the data about the attribute
if ($data['ShadowAttribute']['old_id']) {
$event = $this->Attribute->fetchAttribute($data['ShadowAttribute']['old_id']);
$event['Attribute']['ShadowAttribute'] = array($data['ShadowAttribute']);
} else {
// If it is a proposal to add a new attribute, we retrieve only the data about the event
$event = $this->Event->quickFetchEvent($data['ShadowAttribute']['event_id']);
$event['Event']['ShadowAttribute'] = [$data['ShadowAttribute']];
}
$event = parent::normalizeData($event);
return $event;
}
}