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

88 lines
2.6 KiB
PHP
Raw Normal View History

2019-03-23 08:10:59 +01:00
<?php
/**
* CorrectDatabase.php
2020-01-23 20:35:02 +01:00
* Copyright (c) 2020 james@firefly-iii.org
2019-03-23 08:10:59 +01:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2019-03-23 08:10:59 +01:00
*
* 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.
2019-03-23 08:10:59 +01:00
*
* This program is distributed in the hope that it will be useful,
2019-03-23 08:10:59 +01:00
* 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.
2019-03-23 08:10:59 +01:00
*
* 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-03-23 08:10:59 +01:00
*/
declare(strict_types=1);
namespace FireflyIII\Console\Commands\Correction;
use Artisan;
use Illuminate\Console\Command;
use Schema;
/**
* Class CorrectDatabase
2019-06-10 20:14:00 +02:00
* @codeCoverageIgnore
2019-03-23 08:10:59 +01:00
*/
class CorrectDatabase extends Command
{
/**
* The console command description.
*
* @var string
*/
2019-06-10 20:14:00 +02:00
protected $description = 'Will correct the integrity of your database, if necessary.';
2019-03-23 08:10:59 +01:00
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'firefly-iii:correct-database';
/**
* Execute the console command.
*/
public function handle(): int
{
// if table does not exist, return false
if (!Schema::hasTable('users')) {
return 1;
}
$commands = [
'firefly-iii:fix-piggies',
'firefly-iii:create-link-types',
'firefly-iii:create-access-tokens',
'firefly-iii:remove-bills',
'firefly-iii:enable-currencies',
'firefly-iii:fix-transfer-budgets',
'firefly-iii:fix-uneven-amount',
'firefly-iii:delete-zero-amount',
'firefly-iii:delete-orphaned-transactions',
'firefly-iii:delete-empty-journals',
'firefly-iii:delete-empty-groups',
'firefly-iii:fix-account-types',
2019-06-13 15:48:35 +02:00
'firefly-iii:rename-meta-fields',
2019-09-21 07:33:13 +02:00
'firefly-iii:fix-ob-currencies',
2019-09-21 11:03:00 +02:00
'firefly-iii:fix-long-descriptions',
2019-12-28 06:58:49 +01:00
'firefly-iii:fix-recurring-transactions',
2019-09-21 11:03:00 +02:00
'firefly-iii:restore-oauth-keys'
2019-03-23 08:10:59 +01:00
];
foreach ($commands as $command) {
$this->line(sprintf('Now executing %s', $command));
Artisan::call($command);
$result = Artisan::output();
echo $result;
}
return 0;
}
2019-08-17 12:09:03 +02:00
}