automationStorage = $automationStorage; $this->automationRunStorage = $automationRunStorage; $this->subjectLoader = $subjectLoader; $this->subjectTransformerHandler = $subjectTransformerHandler; $this->filterHandler = $filterHandler; $this->stepScheduler = $stepScheduler; $this->stepRunLoggerFactory = $stepRunLoggerFactory; $this->wordPress = $wordPress; } 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; } // expand all subject transformations and load subject entries $subjects = $this->subjectTransformerHandler->getAllSubjects($subjects); $subjectEntries = $this->subjectLoader->getSubjectsEntries($subjects); foreach ($automations as $automation) { $step = $automation->getTrigger($trigger->getKey()); if (!$step) { throw Exceptions::automationTriggerNotFound($automation->getId(), $trigger->getKey()); } $automationRun = new AutomationRun($automation->getId(), $automation->getVersionId(), $trigger->getKey(), $subjects); $stepRunArgs = new StepRunArgs($automation, $automationRun, $step, $subjectEntries, 1); $match = false; try { $match = $this->filterHandler->matchesFilters($stepRunArgs); } catch (Exceptions\Exception $e) { // failed filter evaluation won't match ; } if (!$match) { continue; } $createAutomationRun = $trigger->isTriggeredBy($stepRunArgs); $createAutomationRun = $this->wordPress->applyFilters( Hooks::AUTOMATION_RUN_CREATE, $createAutomationRun, $stepRunArgs ); if (!$createAutomationRun) { continue; } $automationRunId = $this->automationRunStorage->createAutomationRun($automationRun); $automationRun->setId($automationRunId); $this->stepScheduler->scheduleNextStep($stepRunArgs); $logger = $this->stepRunLoggerFactory->createLogger($automationRunId, $step->getId(), AutomationRunLog::TYPE_TRIGGER, 1); $logger->logStepData($step); $logger->logSuccess(); } } }