215 lines
7.3 KiB
PHP
215 lines
7.3 KiB
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Automation\Engine\Control;
|
|
|
|
use Exception;
|
|
use MailPoet\Automation\Engine\Control\Steps\ActionStepRunner;
|
|
use MailPoet\Automation\Engine\Data\Step;
|
|
use MailPoet\Automation\Engine\Data\StepRunArgs;
|
|
use MailPoet\Automation\Engine\Data\StepValidationArgs;
|
|
use MailPoet\Automation\Engine\Data\SubjectEntry;
|
|
use MailPoet\Automation\Engine\Data\Workflow;
|
|
use MailPoet\Automation\Engine\Data\WorkflowRun;
|
|
use MailPoet\Automation\Engine\Data\WorkflowRunLog;
|
|
use MailPoet\Automation\Engine\Exceptions;
|
|
use MailPoet\Automation\Engine\Exceptions\InvalidStateException;
|
|
use MailPoet\Automation\Engine\Hooks;
|
|
use MailPoet\Automation\Engine\Integration\Action;
|
|
use MailPoet\Automation\Engine\Integration\Payload;
|
|
use MailPoet\Automation\Engine\Integration\Subject;
|
|
use MailPoet\Automation\Engine\Registry;
|
|
use MailPoet\Automation\Engine\Storage\WorkflowRunLogStorage;
|
|
use MailPoet\Automation\Engine\Storage\WorkflowRunStorage;
|
|
use MailPoet\Automation\Engine\Storage\WorkflowStorage;
|
|
use MailPoet\Automation\Engine\WordPress;
|
|
use Throwable;
|
|
|
|
class StepHandler {
|
|
/** @var ActionScheduler */
|
|
private $actionScheduler;
|
|
|
|
/** @var ActionStepRunner */
|
|
private $actionStepRunner;
|
|
|
|
/** @var SubjectLoader */
|
|
private $subjectLoader;
|
|
|
|
/** @var WordPress */
|
|
private $wordPress;
|
|
|
|
/** @var WorkflowRunStorage */
|
|
private $workflowRunStorage;
|
|
|
|
/** @var WorkflowStorage */
|
|
private $workflowStorage;
|
|
|
|
/** @var array<string, StepRunner> */
|
|
private $stepRunners;
|
|
|
|
/** @var WorkflowRunLogStorage */
|
|
private $workflowRunLogStorage;
|
|
|
|
/** @var Hooks */
|
|
private $hooks;
|
|
|
|
/** @var Registry */
|
|
private $registry;
|
|
|
|
public function __construct(
|
|
ActionScheduler $actionScheduler,
|
|
ActionStepRunner $actionStepRunner,
|
|
Hooks $hooks,
|
|
SubjectLoader $subjectLoader,
|
|
WordPress $wordPress,
|
|
WorkflowRunStorage $workflowRunStorage,
|
|
WorkflowRunLogStorage $workflowRunLogStorage,
|
|
WorkflowStorage $workflowStorage,
|
|
Registry $registry
|
|
) {
|
|
$this->actionScheduler = $actionScheduler;
|
|
$this->actionStepRunner = $actionStepRunner;
|
|
$this->hooks = $hooks;
|
|
$this->subjectLoader = $subjectLoader;
|
|
$this->wordPress = $wordPress;
|
|
$this->workflowRunStorage = $workflowRunStorage;
|
|
$this->workflowRunLogStorage = $workflowRunLogStorage;
|
|
$this->workflowStorage = $workflowStorage;
|
|
$this->registry = $registry;
|
|
}
|
|
|
|
public function initialize(): void {
|
|
$this->wordPress->addAction(Hooks::WORKFLOW_STEP, [$this, 'handle']);
|
|
$this->addStepRunner(Step::TYPE_ACTION, $this->actionStepRunner);
|
|
$this->wordPress->doAction(Hooks::STEP_RUNNER_INITIALIZE, [$this]);
|
|
}
|
|
|
|
public function addStepRunner(string $stepType, StepRunner $stepRunner): void {
|
|
$this->stepRunners[$stepType] = $stepRunner;
|
|
}
|
|
|
|
/** @param mixed $args */
|
|
public function handle($args): void {
|
|
// TODO: args validation
|
|
if (!is_array($args)) {
|
|
throw new InvalidStateException();
|
|
}
|
|
|
|
// Action Scheduler catches only Exception instances, not other errors.
|
|
// We need to convert them to exceptions to be processed and logged.
|
|
try {
|
|
$this->handleStep($args);
|
|
} catch (Throwable $e) {
|
|
$status = $e instanceof InvalidStateException && $e->getErrorCode() === 'mailpoet_automation_workflow_not_active' ? WorkflowRun::STATUS_CANCELLED : WorkflowRun::STATUS_FAILED;
|
|
$this->workflowRunStorage->updateStatus($status, (int)$args['workflow_run_id']);
|
|
if (!$e instanceof Exception) {
|
|
throw new Exception($e->getMessage(), intval($e->getCode()), $e);
|
|
}
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
private function handleStep(array $args): void {
|
|
$workflowRunId = $args['workflow_run_id'];
|
|
$stepId = $args['step_id'];
|
|
|
|
$workflowRun = $this->workflowRunStorage->getWorkflowRun($workflowRunId);
|
|
if (!$workflowRun) {
|
|
throw Exceptions::workflowRunNotFound($workflowRunId);
|
|
}
|
|
|
|
if ($workflowRun->getStatus() !== WorkflowRun::STATUS_RUNNING) {
|
|
throw Exceptions::workflowRunNotRunning($workflowRunId, $workflowRun->getStatus());
|
|
}
|
|
|
|
$workflow = $this->workflowStorage->getWorkflow($workflowRun->getWorkflowId(), $workflowRun->getVersionId());
|
|
if (!$workflow) {
|
|
throw Exceptions::workflowVersionNotFound($workflowRun->getWorkflowId(), $workflowRun->getVersionId());
|
|
}
|
|
if (!in_array($workflow->getStatus(), [Workflow::STATUS_ACTIVE, Workflow::STATUS_DEACTIVATING], true)) {
|
|
throw Exceptions::workflowNotActive($workflowRun->getWorkflowId());
|
|
}
|
|
|
|
// complete workflow run
|
|
if (!$stepId) {
|
|
$this->workflowRunStorage->updateStatus(WorkflowRun::STATUS_COMPLETE, $workflowRunId);
|
|
return;
|
|
}
|
|
|
|
$stepData = $workflow->getStep($stepId);
|
|
if (!$stepData) {
|
|
throw Exceptions::workflowStepNotFound($stepId);
|
|
}
|
|
$step = $this->registry->getStep($stepData->getKey());
|
|
$stepType = $stepData->getType();
|
|
if (isset($this->stepRunners[$stepType])) {
|
|
$log = new WorkflowRunLog($workflowRun->getId(), $stepData->getId());
|
|
try {
|
|
$requiredSubjects = $step instanceof Action ? $step->getSubjectKeys() : [];
|
|
$subjectEntries = $this->getSubjectEntries($workflowRun, $requiredSubjects);
|
|
$args = new StepRunArgs($workflow, $workflowRun, $stepData, $subjectEntries);
|
|
$validationArgs = new StepValidationArgs($workflow, $stepData, array_map(function (SubjectEntry $entry) {
|
|
return $entry->getSubject();
|
|
}, $subjectEntries));
|
|
$this->stepRunners[$stepType]->run($args, $validationArgs);
|
|
$log->markCompletedSuccessfully();
|
|
} catch (Throwable $e) {
|
|
$log->markFailed();
|
|
$log->setError($e);
|
|
throw $e;
|
|
} finally {
|
|
try {
|
|
$this->hooks->doWorkflowStepAfterRun($log);
|
|
} catch (Throwable $e) {
|
|
// Ignore integration errors
|
|
}
|
|
$this->workflowRunLogStorage->createWorkflowRunLog($log);
|
|
}
|
|
} else {
|
|
throw new InvalidStateException();
|
|
}
|
|
|
|
$nextStep = $stepData->getNextSteps()[0] ?? null;
|
|
$nextStepArgs = [
|
|
[
|
|
'workflow_run_id' => $workflowRunId,
|
|
'step_id' => $nextStep ? $nextStep->getId() : null,
|
|
],
|
|
];
|
|
|
|
// next step scheduled by action
|
|
if ($this->actionScheduler->hasScheduledAction(Hooks::WORKFLOW_STEP, $nextStepArgs)) {
|
|
return;
|
|
}
|
|
|
|
// no need to schedule a new step if the next step is null, complete the run
|
|
if (!$nextStep) {
|
|
$this->workflowRunStorage->updateStatus(WorkflowRun::STATUS_COMPLETE, $workflowRunId);
|
|
return;
|
|
}
|
|
|
|
// enqueue next step
|
|
$this->actionScheduler->enqueue(Hooks::WORKFLOW_STEP, $nextStepArgs);
|
|
// TODO: allow long-running steps (that are not done here yet)
|
|
}
|
|
|
|
/** @return SubjectEntry<Subject<Payload>>[] */
|
|
private function getSubjectEntries(WorkflowRun $workflowRun, array $requiredSubjectKeys): array {
|
|
$subjectDataMap = [];
|
|
foreach ($workflowRun->getSubjects() as $data) {
|
|
$subjectDataMap[$data->getKey()] = array_merge($subjectDataMap[$data->getKey()] ?? [], [$data]);
|
|
}
|
|
|
|
$subjectEntries = [];
|
|
foreach ($requiredSubjectKeys as $key) {
|
|
$subjectData = $subjectDataMap[$key] ?? null;
|
|
if (!$subjectData) {
|
|
throw Exceptions::subjectDataNotFound($key, $workflowRun->getId());
|
|
}
|
|
foreach ($subjectData as $data) {
|
|
$subjectEntries[] = $this->subjectLoader->getSubjectEntry($data);
|
|
}
|
|
}
|
|
return $subjectEntries;
|
|
}
|
|
}
|