rule = $rule; $this->journal = $journal; } /** * @return TransactionJournal */ public function getJournal() { return $this->journal; } /** * @param TransactionJournal $journal */ public function setJournal($journal) { $this->journal = $journal; } /** * @return Rule */ public function getRule() { return $this->rule; } /** * @param Rule $rule */ public function setRule($rule) { $this->rule = $rule; } public function handle() { // get all triggers: $triggered = $this->triggered(); if ($triggered) { Log::debug('Rule #' . $this->rule->id . ' was triggered. Now process each action.'); $this->actions(); } } /** * Checks whether the current transaction is triggered by the current rule * @return boolean */ public function isTriggered() { return $this->triggered(); } /** * Checks whether the current transaction is triggered by the list of given triggers * @return boolean */ public function isTriggeredBy(array $triggers) { return $this->triggeredBy($triggers); } /** * @return bool */ protected function actions() { /** * @var int $index * @var RuleAction $action */ foreach ($this->rule->ruleActions()->orderBy('order', 'ASC')->get() as $action) { /** @var ActionInterface $actionClass */ $actionClass = ActionFactory::getAction($action, $this->journal); $actionClass->act(); if ($action->stop_processing) { break; } } return true; } /** * Method to check whether the current transaction would be triggered * by the given list of triggers * @return bool */ protected function triggeredBy($triggers) { $foundTriggers = 0; $hitTriggers = 0; /** @var RuleTrigger $trigger */ foreach ($triggers as $trigger) { $foundTriggers++; /** @var TriggerInterface $triggerClass */ $triggerClass = TriggerFactory::getTrigger($trigger, $this->journal); if ($triggerClass->triggered()) { $hitTriggers++; } if ($trigger->stop_processing) { break; } } Log::debug('Total: ' . $foundTriggers . ' found triggers. ' . $hitTriggers . ' triggers were hit.'); return ($hitTriggers == $foundTriggers); } /** * Checks whether the current transaction is triggered by the current rule * @return bool */ protected function triggered() { return $this->triggeredBy($this->rule->ruleTriggers()->orderBy('order', 'ASC')->get()); } }