firefly-iii/app/Rules/Processor.php

134 lines
3.1 KiB
PHP
Raw Normal View History

2016-01-13 00:16:29 -06:00
<?php
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
2016-01-13 00:16:29 -06:00
/**
* Processor.php
2016-01-13 00:16:29 -06:00
* Copyright (C) 2016 Sander Dorigo
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Rules;
use FireflyIII\Models\Rule;
use FireflyIII\Models\RuleAction;
2016-01-13 00:16:29 -06:00
use FireflyIII\Models\RuleTrigger;
use FireflyIII\Models\TransactionJournal;
2016-02-17 09:30:54 -06:00
use FireflyIII\Rules\Actions\ActionFactory;
2016-02-17 11:23:20 -06:00
use FireflyIII\Rules\Actions\ActionInterface;
use FireflyIII\Rules\Triggers\TriggerFactory;
2016-02-17 11:23:20 -06:00
use FireflyIII\Rules\Triggers\TriggerInterface;
use Illuminate\Support\Collection;
2016-01-13 00:47:26 -06:00
use Log;
2016-01-13 00:16:29 -06:00
/**
* Class Processor
2016-01-13 00:16:29 -06:00
*
* @package FireflyIII\Rules
*/
class Processor
2016-01-13 00:16:29 -06:00
{
/** @var Collection */
private $actions;
2016-01-13 00:16:29 -06:00
/** @var TransactionJournal */
private $journal;
2016-01-20 08:23:36 -06:00
/** @var Rule */
private $rule;
/** @var Collection */
private $triggers;
2016-01-13 00:16:29 -06:00
/**
* Processor constructor.
*
2016-01-13 00:16:29 -06:00
*/
private function __construct()
2016-01-13 00:16:29 -06:00
{
2016-01-20 08:23:36 -06:00
}
/**
* @param Rule $rule
*
* @return Processor
2016-01-20 08:23:36 -06:00
*/
public static function make(Rule $rule)
2016-01-20 08:23:36 -06:00
{
$self = new self;
$self->rule = $rule;
$self->triggers = $rule->ruleTriggers()->orderBy('order', 'ASC')->get();
$self->actions = $rule->ruleActions()->orderBy('order', 'ASC')->get();
2016-01-20 08:23:36 -06:00
return $self;
2016-01-20 08:23:36 -06:00
}
/**
* @param TransactionJournal $journal
2016-01-20 08:23:36 -06:00
*/
public function handleTransactionJournal(TransactionJournal $journal)
2016-01-13 00:16:29 -06:00
{
$this->journal = $journal;
2016-01-13 00:16:29 -06:00
// get all triggers:
$triggered = $this->triggered();
if ($triggered) {
2016-01-13 00:47:26 -06:00
Log::debug('Rule #' . $this->rule->id . ' was triggered. Now process each action.');
$this->actions();
2016-01-13 00:16:29 -06:00
}
}
2016-01-20 08:23:36 -06:00
/**
* @return bool
*/
private function actions()
2016-01-20 08:23:36 -06:00
{
/**
* @var int $index
* @var RuleAction $action
*/
2016-02-17 12:08:27 -06:00
foreach ($this->actions as $action) {
2016-01-20 08:23:36 -06:00
/** @var ActionInterface $actionClass */
$actionClass = ActionFactory::getAction($action);
$actionClass->act($this->journal);
2016-01-20 08:23:36 -06:00
if ($action->stop_processing) {
break;
}
}
return true;
}
2016-01-13 00:16:29 -06:00
/**
* Method to check whether the current transaction would be triggered
* by the given list of triggers
2016-02-17 11:23:20 -06:00
*
2016-01-13 00:16:29 -06:00
* @return bool
2016-02-17 11:23:20 -06:00
*/
private function triggered()
2016-02-17 11:23:20 -06:00
{
2016-01-13 00:47:26 -06:00
$foundTriggers = 0;
$hitTriggers = 0;
2016-01-13 00:16:29 -06:00
/** @var RuleTrigger $trigger */
foreach ($this->triggers as $trigger) {
2016-01-13 00:47:26 -06:00
$foundTriggers++;
2016-02-17 11:23:20 -06:00
/** @var TriggerInterface $triggerObject */
$triggerObject = TriggerFactory::getTrigger($trigger);
2016-02-17 12:08:27 -06:00
// no need to keep pushing the journal around!
if ($triggerObject->triggered($this->journal)) {
2016-01-13 00:47:26 -06:00
$hitTriggers++;
2016-01-13 00:16:29 -06:00
}
2016-01-14 23:35:31 -06:00
if ($trigger->stop_processing) {
break;
}
2016-01-13 00:16:29 -06:00
2016-01-13 00:47:26 -06:00
}
Log::debug('Total: ' . $foundTriggers . ' found triggers. ' . $hitTriggers . ' triggers were hit.');
2016-01-13 00:16:29 -06:00
2016-01-13 00:47:26 -06:00
return ($hitTriggers == $foundTriggers);
2016-02-17 11:23:20 -06:00
2016-01-13 00:16:29 -06:00
}
}