mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-16 14:48:11 +00:00
Refactor upgrade and verify commands.
This commit is contained in:
108
app/Console/Commands/Integrity/ReportIntegrity.php
Normal file
108
app/Console/Commands/Integrity/ReportIntegrity.php
Normal file
@@ -0,0 +1,108 @@
|
||||
<?php
|
||||
/**
|
||||
* ReportIntegrity.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/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace FireflyIII\Console\Commands\Integrity;
|
||||
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
use Schema;
|
||||
use Artisan;
|
||||
|
||||
/**
|
||||
* Class ReportIntegrity
|
||||
*/
|
||||
class ReportIntegrity extends Command
|
||||
{
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Will report on the integrity of your database.';
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'firefly-iii:report-integrity';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
public function handle(): int
|
||||
{
|
||||
// if table does not exist, return false
|
||||
if (!Schema::hasTable('users')) {
|
||||
return 1;
|
||||
}
|
||||
$commands = [
|
||||
'firefly-iii:report-empty-objects',
|
||||
'firefly-iii:report-sum',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
// 'firefly-iii:',
|
||||
];
|
||||
foreach ($commands as $command) {
|
||||
$this->line(sprintf('Now executing %s', $command));
|
||||
Artisan::call($command);
|
||||
$result = Artisan::output();
|
||||
echo $result;
|
||||
}
|
||||
|
||||
// $this->reportEmptyBudgets();
|
||||
// $this->reportEmptyCategories();
|
||||
// $this->reportObject('tag');
|
||||
// $this->reportAccounts();
|
||||
// $this->reportBudgetLimits();
|
||||
// $this->reportSum();
|
||||
// $this->reportJournals();
|
||||
// $this->reportTransactions();
|
||||
// $this->reportDeletedAccounts();
|
||||
// $this->reportNoTransactions();
|
||||
// $this->reportTransfersBudgets();
|
||||
// $this->reportIncorrectJournals();
|
||||
// $this->repairPiggyBanks();
|
||||
// $this->createLinkTypes();
|
||||
// $this->createAccessTokens();
|
||||
// $this->fixDoubleAmounts(); // is a report function!
|
||||
// $this->fixBadMeta();
|
||||
// $this->removeBills();
|
||||
// $this->enableCurrencies();
|
||||
// $this->reportZeroAmount();
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user