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

82 lines
2.4 KiB
PHP
Raw Normal View History

2016-10-22 02:31:27 -05:00
<?php
/**
* UpdatedJournalEventHandler.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
declare(strict_types = 1);
namespace FireflyIII\Handlers\Events;
use FireflyIII\Events\UpdatedTransactionJournal;
use FireflyIII\Models\Rule;
use FireflyIII\Models\RuleGroup;
use FireflyIII\Rules\Processor;
use FireflyIII\Support\Events\BillScanner;
/**
* Class UpdatedJournalEventHandler
*
* @package FireflyIII\Handlers\Events
*/
class UpdatedJournalEventHandler
{
/**
* This method will check all the rules when a journal is updated.
*
2016-12-06 09:58:39 -06:00
* @param UpdatedTransactionJournal $updatedJournalEvent
2016-10-22 02:31:27 -05:00
*
* @return bool
*/
2016-12-06 09:58:39 -06:00
public function processRules(UpdatedTransactionJournal $updatedJournalEvent):bool
2016-10-22 02:31:27 -05:00
{
// get all the user's rule groups, with the rules, order by 'order'.
2016-12-06 09:58:39 -06:00
$journal = $updatedJournalEvent->journal;
2016-10-22 02:31:27 -05:00
$groups = $journal->user->ruleGroups()->where('rule_groups.active', 1)->orderBy('order', 'ASC')->get();
//
/** @var RuleGroup $group */
foreach ($groups as $group) {
$rules = $group->rules()
->leftJoin('rule_triggers', 'rules.id', '=', 'rule_triggers.rule_id')
->where('rule_triggers.trigger_type', 'user_action')
->where('rule_triggers.trigger_value', 'update-journal')
->where('rules.active', 1)
->get(['rules.*']);
/** @var Rule $rule */
foreach ($rules as $rule) {
$processor = Processor::make($rule);
$processor->handleTransactionJournal($journal);
if ($rule->stop_processing) {
break;
}
}
}
return true;
}
/**
* This method calls a special bill scanner that will check if the updated journal is part of a bill.
*
2016-12-06 09:58:39 -06:00
* @param UpdatedTransactionJournal $updatedJournalEvent
2016-10-22 02:31:27 -05:00
*
* @return bool
*/
2016-12-06 09:58:39 -06:00
public function scanBills(UpdatedTransactionJournal $updatedJournalEvent): bool
2016-10-22 02:31:27 -05:00
{
2016-12-06 09:58:39 -06:00
$journal = $updatedJournalEvent->journal;
2016-10-22 02:31:27 -05:00
BillScanner::scan($journal);
return true;
}
2016-10-23 05:42:44 -05:00
}