2020-04-20 00:35:48 +02:00
|
|
|
<?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) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2020-04-20 00:35:48 +02:00
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
2020-12-10 11:48:16 +01:00
|
|
|
use App\Jobs\Util\VersionCheck;
|
2020-09-06 11:38:10 +02:00
|
|
|
use Composer\Console\Application;
|
2020-04-20 00:35:48 +02:00
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
use Symfony\Component\Console\Input\ArrayInput;
|
2020-12-15 21:37:30 +01:00
|
|
|
use Symfony\Component\Console\Output\BufferedOutput;
|
2020-04-20 00:35:48 +02:00
|
|
|
|
|
|
|
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
|
2020-04-20 00:35:48 +02:00
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
set_time_limit(0);
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
info('running post update');
|
2020-05-25 01:45:12 +02:00
|
|
|
|
2020-04-20 00:35:48 +02:00
|
|
|
try {
|
2020-09-06 11:38:10 +02:00
|
|
|
Artisan::call('migrate', ['--force' => true]);
|
2020-12-10 11:06:24 +01:00
|
|
|
} catch (\Exception $e) {
|
|
|
|
info("I wasn't able to migrate the data.");
|
2020-04-20 00:35:48 +02:00
|
|
|
}
|
|
|
|
|
2020-12-16 21:10:06 +01:00
|
|
|
info("finished migrating");
|
|
|
|
|
2020-12-15 21:35:54 +01:00
|
|
|
putenv('COMPOSER_HOME=' . __DIR__ . '/vendor/bin/composer');
|
|
|
|
|
|
|
|
$input = new ArrayInput(['command' => 'install', '--no-dev' => 'true']);
|
|
|
|
$application = new Application();
|
|
|
|
$application->setAutoExit(false);
|
2020-12-15 21:37:30 +01:00
|
|
|
$output = new BufferedOutput();
|
2020-12-15 21:35:54 +01:00
|
|
|
$application->run($input, $output);
|
|
|
|
|
2020-12-16 21:10:06 +01:00
|
|
|
info("finished running composer install ");
|
|
|
|
|
2020-12-16 12:52:40 +01:00
|
|
|
info(print_r($output->fetch(), 1));
|
2020-12-15 21:37:30 +01:00
|
|
|
|
2020-04-20 00:35:48 +02:00
|
|
|
try {
|
|
|
|
Artisan::call('optimize');
|
2020-12-10 11:06:24 +01:00
|
|
|
} catch (\Exception $e) {
|
|
|
|
info("I wasn't able to optimize.");
|
2020-04-20 00:35:48 +02:00
|
|
|
}
|
|
|
|
|
2020-12-16 21:06:40 +01:00
|
|
|
info("optimized");
|
|
|
|
|
2020-12-15 21:35:54 +01:00
|
|
|
try {
|
|
|
|
Artisan::call('view:clear');
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
info("I wasn't able to clear the views.");
|
|
|
|
}
|
2020-09-07 12:00:20 +02:00
|
|
|
|
2020-12-16 21:06:40 +01:00
|
|
|
info("view cleared");
|
|
|
|
|
2020-12-15 21:35:54 +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-16 21:06:40 +01:00
|
|
|
info("sent for version check");
|
|
|
|
|
2020-09-07 12:00:20 +02:00
|
|
|
echo "Done.";
|
2020-04-20 00:35:48 +02:00
|
|
|
}
|
|
|
|
}
|