Call step before save hook more safely and explicitly

[MAILPOET-4515]
This commit is contained in:
Jan Jakes
2022-08-02 10:10:47 +02:00
committed by Veljko V
parent 08e8e88502
commit 24a63f6448
2 changed files with 4 additions and 10 deletions

View File

@ -5,21 +5,15 @@ namespace MailPoet\Automation\Engine\Builder;
use MailPoet\Automation\Engine\Data\Step;
use MailPoet\Automation\Engine\Data\Workflow;
use MailPoet\Automation\Engine\Exceptions;
use MailPoet\Automation\Engine\Hooks;
use MailPoet\Automation\Engine\Registry;
class UpdateStepsController {
/** @var Hooks */
private $hooks;
/** @var Registry */
private $registry;
public function __construct(
Hooks $hooks,
Registry $registry
) {
$this->hooks = $hooks;
$this->registry = $registry;
}
@ -40,15 +34,12 @@ class UpdateStepsController {
throw Exceptions::workflowStepNotFound($key);
}
$stepData = new Step(
return new Step(
$data['id'],
$data['type'],
$data['key'],
$data['next_step_id'] ?? null,
$data['args'] ?? null
);
$this->hooks->doWorkflowStepBeforeSave($stepData);
return $stepData;
}
}

View File

@ -54,6 +54,9 @@ class UpdateWorkflowController {
if (array_key_exists('steps', $data)) {
$this->validateWorkflowSteps($workflow, $data['steps']);
$this->updateStepsController->updateSteps($workflow, $data['steps']);
foreach ($workflow->getSteps() as $step) {
$this->hooks->doWorkflowStepBeforeSave($step);
}
$changed = true;
}