Files
firefly-iii/app/TransactionRules/Actions/DeleteTransaction.php

86 lines
3.0 KiB
PHP
Raw Permalink Normal View History

<?php
2022-12-29 19:42:26 +01:00
/**
* DeleteTransaction.php
* Copyright (c) 2019 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/>.
*/
declare(strict_types=1);
namespace FireflyIII\TransactionRules\Actions;
2026-01-24 13:52:35 +01:00
use FireflyIII\Events\Model\TransactionGroup\TransactionGroupRequestsAuditLogEntry;
2022-10-02 06:23:31 +02:00
use FireflyIII\Models\RuleAction;
2020-08-23 08:51:58 +02:00
use FireflyIII\Models\TransactionGroup;
use FireflyIII\Models\TransactionJournal;
use FireflyIII\Services\Internal\Destroy\JournalDestroyService;
use FireflyIII\Services\Internal\Destroy\TransactionGroupDestroyService;
2026-01-23 15:09:50 +01:00
use Illuminate\Support\Facades\Log;
/**
* Class DeleteTransaction.
*/
class DeleteTransaction implements ActionInterface
{
2022-10-02 06:23:31 +02:00
/**
* TriggerInterface constructor.
*/
2026-01-23 15:09:50 +01:00
public function __construct(
private readonly RuleAction $action
) {}
2022-10-02 06:23:31 +02:00
2020-08-23 07:42:14 +02:00
public function actOnArray(array $journal): bool
{
$count = TransactionJournal::where('transaction_group_id', $journal['transaction_group_id'])->count();
2020-08-23 08:51:58 +02:00
// destroy entire group.
if (1 === $count) {
2026-01-23 15:09:50 +01:00
Log::debug(sprintf(
'RuleAction DeleteTransaction DELETED the entire transaction group of journal #%d ("%s").',
$journal['transaction_journal_id'],
$journal['description']
));
2023-12-20 19:35:52 +01:00
2023-11-28 17:18:31 +01:00
/** @var TransactionGroup $group */
2021-04-05 22:12:57 +02:00
$group = TransactionGroup::find($journal['transaction_group_id']);
2020-08-23 08:51:58 +02:00
$service = app(TransactionGroupDestroyService::class);
$service->destroy($group);
2026-01-24 13:52:35 +01:00
event(new TransactionGroupRequestsAuditLogEntry($this->action->rule, $group, 'delete_group', null, null));
2022-10-02 06:23:31 +02:00
2020-08-23 08:51:58 +02:00
return true;
}
2026-01-23 15:09:50 +01:00
Log::debug(sprintf(
'RuleAction DeleteTransaction DELETED transaction journal #%d ("%s").',
$journal['transaction_journal_id'],
$journal['description']
));
2020-08-23 08:51:58 +02:00
// trigger delete factory:
2023-12-20 19:35:52 +01:00
/** @var null|TransactionJournal $object */
2023-11-28 17:18:31 +01:00
$object = TransactionJournal::find($journal['transaction_journal_id']);
2022-10-02 20:23:11 +02:00
if (null !== $object) {
2021-11-04 20:16:35 +01:00
/** @var JournalDestroyService $service */
$service = app(JournalDestroyService::class);
2022-10-02 20:23:11 +02:00
$service->destroy($object);
2026-01-24 13:52:35 +01:00
event(new TransactionGroupRequestsAuditLogEntry($this->action->rule, $object, 'delete_journal', null, null));
2021-11-04 20:16:35 +01:00
}
2020-08-23 08:51:58 +02:00
return true;
2020-08-23 07:42:14 +02:00
}
}