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

72 lines
2.5 KiB
PHP
Raw Normal View History

<?php
/**
* 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;
2020-08-23 01:51:58 -05:00
use FireflyIII\Models\TransactionGroup;
use FireflyIII\Models\TransactionJournal;
use FireflyIII\Services\Internal\Destroy\JournalDestroyService;
use FireflyIII\Services\Internal\Destroy\TransactionGroupDestroyService;
use Log;
/**
* Class DeleteTransaction.
*/
class DeleteTransaction implements ActionInterface
{
2020-08-23 00:42:14 -05:00
/**
* @inheritDoc
*/
public function actOnArray(array $journal): bool
{
2020-08-23 01:51:58 -05:00
$count = TransactionJournal::where('transaction_group_id', $journal['transaction_group_id'])->count();
// destroy entire group.
if (1 === $count) {
Log::debug(
sprintf(
'RuleAction DeleteTransaction DELETED the entire transaction group of journal #%d ("%s").',
$journal['transaction_journal_id'], $journal['description']
)
);
2021-04-05 15:12:57 -05:00
$group = TransactionGroup::find($journal['transaction_group_id']);
2020-08-23 01:51:58 -05:00
$service = app(TransactionGroupDestroyService::class);
$service->destroy($group);
return true;
}
Log::debug(
sprintf('RuleAction DeleteTransaction DELETED transaction journal #%d ("%s").', $journal['transaction_journal_id'], $journal['description'])
);
2020-08-23 01:51:58 -05:00
// trigger delete factory:
$journal = TransactionJournal::find($journal['transaction_group_id']);
2021-11-04 14:16:35 -05:00
if (null !== $journal) {
/** @var JournalDestroyService $service */
$service = app(JournalDestroyService::class);
$service->destroy($journal);
}
2020-08-23 01:51:58 -05:00
return true;
2020-08-23 00:42:14 -05:00
}
}