1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Console/Commands/PostUpdate.php

96 lines
2.1 KiB
PHP
Raw Normal View History

<?php
2020-09-07 12:18:56 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-07 12:18:56 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-09-07 12:18:56 +02:00
*/
namespace App\Console\Commands;
2020-12-10 11:48:16 +01:00
use App\Jobs\Util\VersionCheck;
use App\Utils\Traits\AppSetup;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Artisan;
class PostUpdate extends Command
{
use AppSetup;
/**
* 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 11:10:49 +01:00
* @throws \Exception
*/
public function handle()
{
set_time_limit(0);
2021-04-30 06:29:27 +02:00
info('running post update');
try {
Artisan::call('migrate', ['--force' => true]);
2020-12-10 11:06:24 +01:00
} catch (\Exception $e) {
2021-04-30 06:29:27 +02:00
info("I wasn't able to migrate the data.");
}
info('finished migrating');
2020-12-16 21:10:06 +01:00
2021-04-29 05:15:39 +02:00
$output = [];
2022-03-19 04:10:00 +01:00
// exec('vendor/bin/composer install --no-dev -o', $output);
2021-04-29 05:15:39 +02:00
info(print_r($output, 1));
info('finished running composer install ');
try {
// Artisan::call('optimize');
Artisan::call('config:clear');
2020-12-10 11:06:24 +01:00
} catch (\Exception $e) {
info("I wasn't able to clear config.");
}
info('cleared config');
2020-12-16 21:06:40 +01:00
try {
Artisan::call('view:clear');
} catch (\Exception $e) {
2021-04-30 06:29:27 +02:00
info("I wasn't able to clear the views.");
}
2020-09-07 12:00:20 +02:00
info('view cleared');
2020-09-07 12:00:20 +02:00
try {
Artisan::call('queue:restart');
} catch (\Exception $e) {
info("I wasn't able to restart the queue.");
}
info('queue restarted');
$this->buildCache(true);
2020-12-10 11:48:16 +01:00
VersionCheck::dispatch();
info('Sent for version check');
}
}