mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-28 17:24:35 -06:00
139 lines
4.3 KiB
PHP
139 lines
4.3 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* DeleteOrphanedTransactions.php
|
|
* Copyright (c) 2019 thegrumpydictator@gmail.com
|
|
*
|
|
* This file is part of Firefly III.
|
|
*
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Firefly III 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace FireflyIII\Console\Commands\Correction;
|
|
|
|
use Exception;
|
|
use FireflyIII\Models\Transaction;
|
|
use FireflyIII\Models\TransactionJournal;
|
|
use Illuminate\Console\Command;
|
|
use Log;
|
|
use stdClass;
|
|
|
|
/**
|
|
* Deletes transactions where the journal has been deleted.
|
|
*/
|
|
class DeleteOrphanedTransactions extends Command
|
|
{
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Deletes orphaned transactions.';
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'firefly-iii:delete-orphaned-transactions';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return int
|
|
* @throws Exception
|
|
*/
|
|
public function handle(): int
|
|
{
|
|
$start = microtime(true);
|
|
$this->deleteOrphanedTransactions();
|
|
$this->deleteFromOrphanedAccounts();
|
|
$end = round(microtime(true) - $start, 2);
|
|
$this->info(sprintf('Verified orphans in %s seconds', $end));
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function deleteFromOrphanedAccounts(): void
|
|
{
|
|
$set
|
|
= Transaction
|
|
::leftJoin('accounts', 'transactions.account_id', '=', 'accounts.id')
|
|
->whereNotNull('accounts.deleted_at')
|
|
->get(['transactions.*']);
|
|
$count = 0;
|
|
/** @var Transaction $transaction */
|
|
foreach ($set as $transaction) {
|
|
// delete journals
|
|
$journal = TransactionJournal::find((int)$transaction->transaction_journal_id);
|
|
if ($journal) {
|
|
try {
|
|
$journal->delete();
|
|
// @codeCoverageIgnoreStart
|
|
} catch (Exception $e) {
|
|
Log::info(sprintf('Could not delete journal %s', $e->getMessage()));
|
|
}
|
|
// @codeCoverageIgnoreEnd
|
|
}
|
|
Transaction::where('transaction_journal_id', (int)$transaction->transaction_journal_id)->delete();
|
|
$this->line(
|
|
sprintf('Deleted transaction journal #%d because account #%d was already deleted.',
|
|
$transaction->transaction_journal_id, $transaction->account_id)
|
|
);
|
|
$count++;
|
|
}
|
|
if (0 === $count) {
|
|
$this->info('No orphaned accounts.');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
private function deleteOrphanedTransactions(): void
|
|
{
|
|
$count = 0;
|
|
$set = Transaction
|
|
::leftJoin('transaction_journals', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
|
|
->whereNotNull('transaction_journals.deleted_at')
|
|
->whereNull('transactions.deleted_at')
|
|
->whereNotNull('transactions.id')
|
|
->get(
|
|
[
|
|
'transaction_journals.id as journal_id',
|
|
'transactions.id as transaction_id',
|
|
]
|
|
);
|
|
/** @var stdClass $entry */
|
|
foreach ($set as $entry) {
|
|
$transaction = Transaction::find((int)$entry->transaction_id);
|
|
$transaction->delete();
|
|
$this->info(
|
|
sprintf(
|
|
'Transaction #%d (part of deleted transaction journal #%d) has been deleted as well.',
|
|
$entry->transaction_id,
|
|
$entry->journal_id
|
|
)
|
|
);
|
|
++$count;
|
|
}
|
|
if (0 === $count) {
|
|
$this->info('No orphaned transactions.');
|
|
}
|
|
|
|
}
|
|
}
|