firefly-iii/app/Handlers/Events/StoredGroupEventHandler.php

63 lines
2.1 KiB
PHP
Raw Normal View History

2016-10-22 02:31:27 -05:00
<?php
/**
2019-03-30 05:03:39 -05:00
* StoredGroupEventHandler.php
2020-01-28 01:45:38 -06:00
* Copyright (c) 2019 james@firefly-iii.org
2016-10-22 02:31:27 -05:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2016-10-22 02:31:27 -05:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
2017-10-21 01:40:00 -05:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 01:40:00 -05:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2017-10-21 01:40:00 -05:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2016-10-22 02:31:27 -05:00
*/
declare(strict_types=1);
2016-10-22 02:31:27 -05:00
namespace FireflyIII\Handlers\Events;
2019-03-30 05:03:39 -05:00
use FireflyIII\Events\StoredTransactionGroup;
2019-06-21 12:06:50 -05:00
use FireflyIII\Models\TransactionJournal;
use FireflyIII\TransactionRules\Engine\RuleEngine;
2019-06-22 06:09:11 -05:00
use Log;
2016-10-22 02:31:27 -05:00
/**
2019-03-30 05:03:39 -05:00
* Class StoredGroupEventHandler
2016-10-22 02:31:27 -05:00
*/
2019-03-30 05:03:39 -05:00
class StoredGroupEventHandler
2016-10-22 02:31:27 -05:00
{
/**
* This method grabs all the users rules and processes them.
*
* @param StoredTransactionGroup $storedGroupEvent
2016-10-22 02:31:27 -05:00
*/
public function processRules(StoredTransactionGroup $storedGroupEvent): void
2016-10-22 02:31:27 -05:00
{
if (false === $storedGroupEvent->applyRules) {
Log::info(sprintf('Will not run rules on group #%d', $storedGroupEvent->transactionGroup->id));
2019-06-21 12:06:50 -05:00
return;
2019-06-07 10:57:46 -05:00
}
2019-06-22 06:09:11 -05:00
Log::debug('Now in StoredGroupEventHandler::processRules()');
2016-10-22 02:31:27 -05:00
2019-06-21 12:06:50 -05:00
/** @var RuleEngine $ruleEngine */
$ruleEngine = app(RuleEngine::class);
$ruleEngine->setUser($storedGroupEvent->transactionGroup->user);
2019-06-21 12:06:50 -05:00
$ruleEngine->setAllRules(true);
$ruleEngine->setTriggerMode(RuleEngine::TRIGGER_STORE);
$journals = $storedGroupEvent->transactionGroup->transactionJournals;
2019-03-30 05:03:39 -05:00
2019-06-21 12:06:50 -05:00
/** @var TransactionJournal $journal */
foreach ($journals as $journal) {
$ruleEngine->processTransactionJournal($journal);
2016-10-22 02:31:27 -05:00
}
}
2016-10-23 05:42:44 -05:00
}