Files
firefly-iii/app/Handlers/Events/Model/PiggyBankEventHandler.php

90 lines
3.2 KiB
PHP
Raw Normal View History

<?php
2022-12-29 19:41:57 +01:00
/*
* PiggyBankEventHandler.php
2023-01-02 06:52:18 +01:00
* Copyright (c) 2023 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* 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.
*
* This program 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 Affero General Public License for more details.
*
* 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/>.
*/
2023-01-02 06:52:18 +01:00
declare(strict_types=1);
namespace FireflyIII\Handlers\Events\Model;
2025-06-02 20:32:58 +02:00
use FireflyIII\Events\Model\PiggyBank\ChangedName;
use FireflyIII\Models\Account;
use FireflyIII\Models\Rule;
use FireflyIII\Models\RuleAction;
2025-05-27 17:06:15 +02:00
use FireflyIII\Models\TransactionGroup;
use FireflyIII\Events\Model\PiggyBank\ChangedAmount;
use FireflyIII\Models\PiggyBankEvent;
2022-12-11 07:29:06 +01:00
/**
* Class PiggyBankEventHandler
*/
class PiggyBankEventHandler
{
public function changedPiggyBankName(ChangedName $event): void
{
2025-06-02 20:32:58 +02:00
// loop all accounts, collect all user's rules.
/** @var Account $account */
foreach ($event->piggyBank->accounts as $account) {
2025-06-02 20:32:58 +02:00
/** @var Rule $rule */
foreach ($account->user->rules as $rule) {
2025-06-02 20:32:58 +02:00
/** @var RuleAction $ruleAction */
foreach ($rule->ruleActions()->where('action_type', 'update_piggy')->get() as $ruleAction) {
if ($event->oldName === $ruleAction->action_value) {
2025-06-02 20:32:58 +02:00
$ruleAction->action_value = $event->newName;
$ruleAction->save();
}
}
}
}
}
public function changePiggyAmount(ChangedAmount $event): void
{
// find journal if group is present.
$journal = $event->transactionJournal;
2025-05-27 17:06:15 +02:00
if ($event->transactionGroup instanceof TransactionGroup) {
$journal = $event->transactionGroup->transactionJournals()->first();
}
2025-01-04 08:02:05 +01:00
$date = $journal->date ?? today(config('app.timezone'));
2022-12-11 07:29:06 +01:00
// sanity check: event must not already exist for this journal and piggy bank.
if (null !== $journal) {
$exists = PiggyBankEvent::where('piggy_bank_id', $event->piggyBank->id)
2023-12-20 19:35:52 +01:00
->where('transaction_journal_id', $journal->id)
->exists()
;
2022-12-11 10:43:52 +01:00
if ($exists) {
2023-10-29 06:31:13 +01:00
app('log')->warning('Already have event for this journal and piggy, will not create another.');
2023-12-20 19:35:52 +01:00
2022-12-11 07:29:06 +01:00
return;
}
}
PiggyBankEvent::create(
[
'piggy_bank_id' => $event->piggyBank->id,
'transaction_journal_id' => $journal?->id,
'date' => $date->format('Y-m-d'),
2024-11-06 12:01:29 +01:00
'date_tz' => $date->format('e'),
'amount' => $event->amount,
]
);
}
}