firefly-iii/app/Rules/Processor.php

177 lines
4.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\AbstractTrigger;
use FireflyIII\Rules\Triggers\TriggerFactory;
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
{
$this->triggers = new Collection;
$this->actions = new Collection;
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;
$triggerSet = $rule->ruleTriggers()->orderBy('order', 'ASC')->get();
/** @var RuleTrigger $trigger */
foreach ($triggerSet as $trigger) {
$self->triggers->push(TriggerFactory::getTrigger($trigger));
}
$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 string $triggerName
* @param string $triggerValue
*
* @return Processor
*/
public static function makeFromString(string $triggerName, string $triggerValue)
{
$self = new self;
$trigger = TriggerFactory::makeTriggerFromStrings($triggerName, $triggerValue, false);
$self->triggers->push($trigger);
return $self;
}
/**
* @param array $triggers
*
* @return Processor
*/
public static function makeFromStringArray(array $triggers)
{
$self = new self;
foreach ($triggers as $entry) {
$trigger = TriggerFactory::makeTriggerFromStrings($entry['type'], $entry['value'], $entry['stopProcessing']);
$self->triggers->push($trigger);
}
return $self;
}
2016-01-20 08:23:36 -06:00
/**
* @param TransactionJournal $journal
*
* @return bool
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) {
if ($this->actions->count() > 0) {
$this->actions();
}
return true;
2016-01-13 00:16:29 -06:00
}
return false;
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 AbstractTrigger $trigger */
if ($trigger->triggered($this->journal)) {
2016-01-13 00:47:26 -06:00
$hitTriggers++;
2016-01-13 00:16:29 -06:00
}
if ($trigger->stopProcessing) {
2016-01-14 23:35:31 -06:00
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
}
}