You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.0 KiB
88 lines
2.0 KiB
<?php |
|
|
|
/** |
|
* This file is part of CodeIgniter 4 framework. |
|
* |
|
* (c) CodeIgniter Foundation <admin@codeigniter.com> |
|
* |
|
* For the full copyright and license information, please view |
|
* the LICENSE file that was distributed with this source code. |
|
*/ |
|
|
|
namespace CodeIgniter\CLI; |
|
|
|
use CodeIgniter\CodeIgniter; |
|
use Config\App; |
|
use Config\Services; |
|
use Exception; |
|
|
|
/** |
|
* Console |
|
* |
|
* @see \CodeIgniter\CLI\ConsoleTest |
|
*/ |
|
class Console |
|
{ |
|
/** |
|
* Runs the current command discovered on the CLI. |
|
* |
|
* @return int|void |
|
* |
|
* @throws Exception |
|
*/ |
|
public function run() |
|
{ |
|
// Create CLIRequest |
|
$appConfig = config(App::class); |
|
Services::createRequest($appConfig, true); |
|
// Load Routes |
|
Services::routes()->loadRoutes(); |
|
|
|
$runner = Services::commands(); |
|
$params = array_merge(CLI::getSegments(), CLI::getOptions()); |
|
$params = $this->parseParamsForHelpOption($params); |
|
$command = array_shift($params) ?? 'list'; |
|
|
|
return $runner->run($command, $params); |
|
} |
|
|
|
/** |
|
* Displays basic information about the Console. |
|
* |
|
* @return void |
|
*/ |
|
public function showHeader(bool $suppress = false) |
|
{ |
|
if ($suppress) { |
|
return; |
|
} |
|
|
|
CLI::write(sprintf( |
|
'CodeIgniter v%s Command Line Tool - Server Time: %s UTC%s', |
|
CodeIgniter::CI_VERSION, |
|
date('Y-m-d H:i:s'), |
|
date('P') |
|
), 'green'); |
|
CLI::newLine(); |
|
} |
|
|
|
/** |
|
* Introspects the `$params` passed for presence of the |
|
* `--help` option. |
|
* |
|
* If present, it will be found as `['help' => null]`. |
|
* We'll remove that as an option from `$params` and |
|
* unshift it as argument instead. |
|
*/ |
|
private function parseParamsForHelpOption(array $params): array |
|
{ |
|
if (array_key_exists('help', $params)) { |
|
unset($params['help']); |
|
|
|
$params = $params === [] ? ['list'] : $params; |
|
array_unshift($params, 'help'); |
|
} |
|
|
|
return $params; |
|
} |
|
}
|
|
|