Files
firefly-iii/app/Console/Commands/Correction/DeleteEmptyGroups.php

71 lines
2.2 KiB
PHP
Raw Normal View History

2019-03-18 16:53:05 +01:00
<?php
/**
* DeleteEmptyGroups.php
2020-01-23 20:35:02 +01:00
* Copyright (c) 2020 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/>.
*/
2019-08-17 12:09:03 +02:00
declare(strict_types=1);
2019-03-18 16:53:05 +01:00
2019-03-23 08:10:59 +01:00
namespace FireflyIII\Console\Commands\Correction;
2019-03-18 16:53:05 +01:00
2019-03-23 08:10:59 +01:00
use Exception;
use FireflyIII\Console\Commands\ShowsFriendlyMessages;
2019-03-23 08:10:59 +01:00
use FireflyIII\Models\TransactionGroup;
2019-03-18 16:53:05 +01:00
use Illuminate\Console\Command;
/**
2019-03-23 08:10:59 +01:00
* Class DeleteEmptyGroups
2019-03-18 16:53:05 +01:00
*/
2019-03-23 08:10:59 +01:00
class DeleteEmptyGroups extends Command
2019-03-18 16:53:05 +01:00
{
use ShowsFriendlyMessages;
2019-03-23 08:10:59 +01:00
protected $description = 'Delete empty transaction groups.';
protected $signature = 'firefly-iii:delete-empty-groups';
2019-03-18 16:53:05 +01:00
/**
* Execute the console command.
*
2021-03-12 06:30:40 +01:00
* @return int
2019-06-13 15:48:35 +02:00
* @throws Exception;
*
2019-03-18 16:53:05 +01:00
*/
public function handle(): int
{
$groupIds
= TransactionGroup::leftJoin('transaction_journals', 'transaction_groups.id', '=', 'transaction_journals.transaction_group_id')
->whereNull('transaction_journals.id')->get(['transaction_groups.id'])->pluck('id')->toArray();
2019-10-02 18:03:58 +02:00
2019-10-05 06:48:57 +02:00
$total = count($groupIds);
2019-10-02 18:03:58 +02:00
if ($total > 0) {
$this->friendlyInfo(sprintf('Deleted %d empty transaction group(s).', $total));
2019-10-02 18:03:58 +02:00
// again, chunks for SQLite.
2019-10-05 06:48:57 +02:00
$chunks = array_chunk($groupIds, 500);
2019-10-02 18:03:58 +02:00
foreach ($chunks as $chunk) {
2019-10-05 06:48:57 +02:00
TransactionGroup::whereNull('deleted_at')->whereIn('id', $chunk)->delete();
2019-10-02 18:03:58 +02:00
}
2019-03-18 16:53:05 +01:00
}
if (0 === $total) {
$this->friendlyInfo('Verified there are no empty groups.');
}
2020-03-21 15:43:41 +01:00
2019-03-23 08:10:59 +01:00
return 0;
2019-03-18 16:53:05 +01:00
}
}