actionScheduler = $actionScheduler; $this->wordPress = $wordPress; $this->automationStorage = $automationStorage; $this->automationRunStorage = $automationRunStorage; $this->subjectLoader = $subjectLoader; $this->wp = $wp; $this->subjectTransformerHandler = $subjectTransformerHandler; } public function initialize(): void { $this->wordPress->addAction(Hooks::TRIGGER, [$this, 'processTrigger'], 10, 2); } /** @param Subject[] $subjects */ public function processTrigger(Trigger $trigger, array $subjects): void { $automations = $this->automationStorage->getActiveAutomationsByTrigger($trigger); if (!$automations) { return; } $subjects = $this->subjectTransformerHandler->getAllSubjects($subjects); foreach ($automations as $automation) { $step = $automation->getTrigger($trigger->getKey()); if (!$step) { throw Exceptions::automationTriggerNotFound($automation->getId(), $trigger->getKey()); } // ensure subjects are registered and loadable $subjectEntries = $this->subjectLoader->getSubjectsEntries($subjects); foreach ($subjectEntries as $entry) { $entry->getPayload(); } $automationRun = new AutomationRun($automation->getId(), $automation->getVersionId(), $trigger->getKey(), $subjects); $stepRunArgs = new StepRunArgs($automation, $automationRun, $step, $subjectEntries); $createAutomationRun = $trigger->isTriggeredBy($stepRunArgs); $createAutomationRun = $this->wp->applyFilters( Hooks::AUTOMATION_RUN_CREATE, $createAutomationRun, $stepRunArgs ); if (!$createAutomationRun) { continue; } $automationRunId = $this->automationRunStorage->createAutomationRun($automationRun); $nextStep = $step->getNextSteps()[0] ?? null; $this->actionScheduler->enqueue(Hooks::AUTOMATION_STEP, [ [ 'automation_run_id' => $automationRunId, 'step_id' => $nextStep ? $nextStep->getId() : null, ], ]); $this->automationRunStorage->updateNextStep($automationRunId, $nextStep ? $nextStep->getId() : null); } } }