2020-04-20 08:35:48 +10:00
|
|
|
<?php
|
2020-09-07 20:18:56 +10:00
|
|
|
/**
|
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-07 20:18:56 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-07 20:18:56 +10:00
|
|
|
*/
|
2020-04-20 08:35:48 +10:00
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
2020-12-10 21:48:16 +11:00
|
|
|
use App\Jobs\Util\VersionCheck;
|
2023-01-19 07:54:15 +11:00
|
|
|
use App\Utils\Traits\AppSetup;
|
2020-04-20 08:35:48 +10:00
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
|
|
|
|
|
|
class PostUpdate extends Command
|
|
|
|
|
{
|
2023-01-19 07:54:15 +11:00
|
|
|
use AppSetup;
|
|
|
|
|
|
2020-04-20 08:35:48 +10:00
|
|
|
/**
|
|
|
|
|
* The name and signature of the console command.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $signature = 'ninja:post-update';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The console command description.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $description = 'Run basic upgrade commands';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Execute the console command.
|
|
|
|
|
*
|
|
|
|
|
* @return mixed
|
2020-10-28 21:10:49 +11:00
|
|
|
* @throws \Exception
|
2020-04-20 08:35:48 +10:00
|
|
|
*/
|
|
|
|
|
public function handle()
|
|
|
|
|
{
|
|
|
|
|
set_time_limit(0);
|
|
|
|
|
|
2021-04-30 14:29:27 +10:00
|
|
|
info('running post update');
|
2020-05-25 09:45:12 +10:00
|
|
|
|
2020-04-20 08:35:48 +10:00
|
|
|
try {
|
2020-09-06 19:38:10 +10:00
|
|
|
Artisan::call('migrate', ['--force' => true]);
|
2020-12-10 21:06:24 +11:00
|
|
|
} catch (\Exception $e) {
|
2021-04-30 14:29:27 +10:00
|
|
|
info("I wasn't able to migrate the data.");
|
2020-04-20 08:35:48 +10:00
|
|
|
}
|
|
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
info('finished migrating');
|
2020-12-17 07:10:06 +11:00
|
|
|
|
2021-04-29 13:15:39 +10:00
|
|
|
$output = [];
|
2020-12-16 07:35:54 +11:00
|
|
|
|
2022-03-19 14:10:00 +11:00
|
|
|
// exec('vendor/bin/composer install --no-dev -o', $output);
|
2021-04-29 13:15:39 +10:00
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
info(print_r($output, 1));
|
|
|
|
|
info('finished running composer install ');
|
2020-12-16 07:37:30 +11:00
|
|
|
|
2020-04-20 08:35:48 +10:00
|
|
|
try {
|
2022-03-18 10:33:26 +11:00
|
|
|
Artisan::call('optimize');
|
2020-12-10 21:06:24 +11:00
|
|
|
} catch (\Exception $e) {
|
2021-04-30 14:29:27 +10:00
|
|
|
info("I wasn't able to optimize.");
|
2020-04-20 08:35:48 +10:00
|
|
|
}
|
|
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
info('optimized');
|
2020-12-17 07:06:40 +11:00
|
|
|
|
2020-12-16 07:35:54 +11:00
|
|
|
try {
|
|
|
|
|
Artisan::call('view:clear');
|
|
|
|
|
} catch (\Exception $e) {
|
2021-04-30 14:29:27 +10:00
|
|
|
info("I wasn't able to clear the views.");
|
2020-12-16 07:35:54 +11:00
|
|
|
}
|
2020-09-07 20:00:20 +10:00
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
info('view cleared');
|
2020-09-07 20:00:20 +10:00
|
|
|
|
2021-09-26 13:21:03 +02:00
|
|
|
try {
|
|
|
|
|
Artisan::call('queue:restart');
|
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
|
info("I wasn't able to restart the queue.");
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
info('queue restarted');
|
2021-09-26 13:21:03 +02:00
|
|
|
|
2023-01-19 07:54:15 +11:00
|
|
|
$this->buildCache(true);
|
|
|
|
|
|
2020-12-10 21:48:16 +11:00
|
|
|
VersionCheck::dispatch();
|
|
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
info('Sent for version check');
|
2020-04-20 08:35:48 +10:00
|
|
|
}
|
|
|
|
|
}
|