Files
firefly-iii/app/Handlers/Events/UpdatedGroupEventHandler.php

56 lines
1.8 KiB
PHP
Raw Normal View History

2016-10-22 09:31:27 +02:00
<?php
/**
2019-03-30 11:03:39 +01:00
* UpdatedGroupEventHandler.php
2017-10-21 08:40:00 +02:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
2016-10-22 09:31:27 +02:00
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
2016-10-22 09:31:27 +02:00
*
2017-10-21 08:40:00 +02:00
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 14:41:58 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2016-10-22 09:31:27 +02:00
*/
declare(strict_types=1);
2016-10-22 09:31:27 +02:00
namespace FireflyIII\Handlers\Events;
2019-03-30 11:03:39 +01:00
use FireflyIII\Events\UpdatedTransactionGroup;
2019-06-08 06:19:21 +02:00
use FireflyIII\Exceptions\FireflyException;
2019-06-21 19:06:50 +02:00
use FireflyIII\Models\TransactionJournal;
use FireflyIII\TransactionRules\Engine\RuleEngine;
2016-10-22 09:31:27 +02:00
/**
2019-03-30 11:03:39 +01:00
* Class UpdatedGroupEventHandler
2016-10-22 09:31:27 +02:00
*/
2019-03-30 11:03:39 +01:00
class UpdatedGroupEventHandler
2016-10-22 09:31:27 +02:00
{
/**
* This method will check all the rules when a journal is updated.
*
2019-03-30 11:03:39 +01:00
* @param UpdatedTransactionGroup $updatedJournalEvent
2016-10-22 09:31:27 +02:00
*/
2019-06-21 19:06:50 +02:00
public function processRules(UpdatedTransactionGroup $updatedJournalEvent): void
2016-10-22 09:31:27 +02:00
{
2019-06-21 19:06:50 +02:00
/** @var RuleEngine $ruleEngine */
$ruleEngine = app(RuleEngine::class);
$ruleEngine->setUser($updatedJournalEvent->transactionGroup->user);
$ruleEngine->setAllRules(true);
$ruleEngine->setTriggerMode(RuleEngine::TRIGGER_UPDATE);
$journals = $updatedJournalEvent->transactionGroup->transactionJournals;
2019-06-21 19:06:50 +02:00
/** @var TransactionJournal $journal */
2019-03-30 11:03:39 +01:00
foreach ($journals as $journal) {
2019-06-21 19:06:50 +02:00
$ruleEngine->processTransactionJournal($journal);
2016-10-22 09:31:27 +02:00
}
}
2016-10-23 12:42:44 +02:00
}