1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-30 05:07:11 +02:00
invoiceninja/app/Console/Commands/PostUpdate.php

85 lines
1.8 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
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-07 12:18:56 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Console\Commands;
2020-12-10 11:48:16 +01:00
use App\Jobs\Util\VersionCheck;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Artisan;
class PostUpdate extends Command
{
protected $name = 'ninja:post-update';
/**
* 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);
2020-12-29 22:10:03 +01:00
nlog('running post update');
try {
Artisan::call('migrate', ['--force' => true]);
2020-12-10 11:06:24 +01:00
} catch (\Exception $e) {
2020-12-29 22:10:03 +01:00
nlog("I wasn't able to migrate the data.");
}
2020-12-29 22:10:03 +01:00
nlog("finished migrating");
2020-12-16 21:10:06 +01:00
2021-03-26 09:34:39 +01:00
exec('vendor/bin/composer install --no-dev -o');
2020-12-29 22:10:03 +01:00
nlog("finished running composer install ");
2020-12-16 21:12:20 +01:00
try {
Artisan::call('optimize');
2020-12-10 11:06:24 +01:00
} catch (\Exception $e) {
2020-12-29 22:10:03 +01:00
nlog("I wasn't able to optimize.");
}
2020-12-29 22:10:03 +01:00
nlog("optimized");
2020-12-16 21:06:40 +01:00
try {
Artisan::call('view:clear');
} catch (\Exception $e) {
2020-12-29 22:10:03 +01:00
nlog("I wasn't able to clear the views.");
}
2020-09-07 12:00:20 +02:00
2020-12-29 22:10:03 +01:00
nlog("view cleared");
2020-12-16 21:06:40 +01:00
/* For the following to work, the web user (www-data) must own all the directories */
2020-09-07 12:00:20 +02:00
2020-12-10 11:48:16 +01:00
VersionCheck::dispatch();
2020-12-29 22:10:03 +01:00
nlog("sent for version check");
2020-12-16 21:06:40 +01:00
2020-12-17 00:32:42 +01:00
// echo "Done.";
}
}