First Local Commit - After Clean up.
Signed-off-by: Rick Hays <rhays@haysgang.com>
This commit is contained in:
268
system/CLI/BaseCommand.php
Normal file
268
system/CLI/BaseCommand.php
Normal file
@@ -0,0 +1,268 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014-2019 British Columbia Institute of Technology
|
||||
* Copyright (c) 2019 CodeIgniter Foundation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author CodeIgniter Dev Team
|
||||
* @copyright 2019 CodeIgniter Foundation
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 4.0.0
|
||||
* @filesource
|
||||
*/
|
||||
|
||||
namespace CodeIgniter\CLI;
|
||||
|
||||
use Psr\Log\LoggerInterface;
|
||||
|
||||
/**
|
||||
* Class BaseCommand
|
||||
*
|
||||
* @property $group
|
||||
* @property $name
|
||||
* @property $description
|
||||
*
|
||||
* @package CodeIgniter\CLI
|
||||
*/
|
||||
abstract class BaseCommand
|
||||
{
|
||||
|
||||
/**
|
||||
* The group the command is lumped under
|
||||
* when listing commands.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $group;
|
||||
|
||||
/**
|
||||
* The Command's name
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $name;
|
||||
|
||||
/**
|
||||
* the Command's usage description
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $usage;
|
||||
|
||||
/**
|
||||
* the Command's short description
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description;
|
||||
|
||||
/**
|
||||
* the Command's options description
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $options = [];
|
||||
|
||||
/**
|
||||
* the Command's Arguments description
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $arguments = [];
|
||||
|
||||
/**
|
||||
* The Logger to use for a command
|
||||
*
|
||||
* @var \Psr\Log\LoggerInterface
|
||||
*/
|
||||
protected $logger;
|
||||
|
||||
/**
|
||||
* Instance of the CommandRunner controller
|
||||
* so commands can call other commands.
|
||||
*
|
||||
* @var \CodeIgniter\CLI\CommandRunner
|
||||
*/
|
||||
protected $commands;
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* BaseCommand constructor.
|
||||
*
|
||||
* @param \Psr\Log\LoggerInterface $logger
|
||||
* @param \CodeIgniter\CLI\CommandRunner $commands
|
||||
*/
|
||||
public function __construct(LoggerInterface $logger, CommandRunner $commands)
|
||||
{
|
||||
$this->logger = $logger;
|
||||
$this->commands = $commands;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Actually execute a command.
|
||||
* This has to be over-ridden in any concrete implementation.
|
||||
*
|
||||
* @param array $params
|
||||
*/
|
||||
abstract public function run(array $params);
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Can be used by a command to run other commands.
|
||||
*
|
||||
* @param string $command
|
||||
* @param array $params
|
||||
*
|
||||
* @return mixed
|
||||
* @throws \ReflectionException
|
||||
*/
|
||||
protected function call(string $command, array $params = [])
|
||||
{
|
||||
// The CommandRunner will grab the first element
|
||||
// for the command name.
|
||||
array_unshift($params, $command);
|
||||
|
||||
return $this->commands->index($params);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* A simple method to display an error with line/file,
|
||||
* in child commands.
|
||||
*
|
||||
* @param \Exception $e
|
||||
*/
|
||||
protected function showError(\Exception $e)
|
||||
{
|
||||
CLI::newLine();
|
||||
CLI::error($e->getMessage());
|
||||
CLI::write($e->getFile() . ' - ' . $e->getLine());
|
||||
CLI::newLine();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Makes it simple to access our protected properties.
|
||||
*
|
||||
* @param string $key
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function __get(string $key)
|
||||
{
|
||||
if (isset($this->$key))
|
||||
{
|
||||
return $this->$key;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Makes it simple to check our protected properties.
|
||||
*
|
||||
* @param string $key
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function __isset(string $key): bool
|
||||
{
|
||||
return isset($this->$key);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* show Help include (usage,arguments,description,options)
|
||||
*/
|
||||
public function showHelp()
|
||||
{
|
||||
// 4 spaces instead of tab
|
||||
$tab = ' ';
|
||||
CLI::write(lang('CLI.helpDescription'), 'yellow');
|
||||
CLI::write($tab . $this->description);
|
||||
CLI::newLine();
|
||||
|
||||
CLI::write(lang('CLI.helpUsage'), 'yellow');
|
||||
$usage = empty($this->usage) ? $this->name . ' [arguments]' : $this->usage;
|
||||
CLI::write($tab . $usage);
|
||||
CLI::newLine();
|
||||
|
||||
$pad = max($this->getPad($this->options, 6), $this->getPad($this->arguments, 6));
|
||||
|
||||
if (! empty($this->arguments))
|
||||
{
|
||||
CLI::write(lang('CLI.helpArguments'), 'yellow');
|
||||
foreach ($this->arguments as $argument => $description)
|
||||
{
|
||||
CLI::write($tab . CLI::color(str_pad($argument, $pad), 'green') . $description, 'yellow');
|
||||
}
|
||||
CLI::newLine();
|
||||
}
|
||||
|
||||
if (! empty($this->options))
|
||||
{
|
||||
CLI::write(lang('CLI.helpOptions'), 'yellow');
|
||||
foreach ($this->options as $option => $description)
|
||||
{
|
||||
CLI::write($tab . CLI::color(str_pad($option, $pad), 'green') . $description, 'yellow');
|
||||
}
|
||||
CLI::newLine();
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Get pad for $key => $value array output
|
||||
*
|
||||
* @param array $array
|
||||
* @param integer $pad
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
public function getPad(array $array, int $pad): int
|
||||
{
|
||||
$max = 0;
|
||||
foreach ($array as $key => $value)
|
||||
{
|
||||
$max = max($max, strlen($key));
|
||||
}
|
||||
return $max + $pad;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
}
|
||||
970
system/CLI/CLI.php
Normal file
970
system/CLI/CLI.php
Normal file
@@ -0,0 +1,970 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014-2019 British Columbia Institute of Technology
|
||||
* Copyright (c) 2019 CodeIgniter Foundation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author CodeIgniter Dev Team
|
||||
* @copyright 2019 CodeIgniter Foundation
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 4.0.0
|
||||
* @filesource
|
||||
*/
|
||||
|
||||
namespace CodeIgniter\CLI;
|
||||
|
||||
use CodeIgniter\CLI\Exceptions\CLIException;
|
||||
|
||||
/**
|
||||
* Set of static methods useful for CLI request handling.
|
||||
*
|
||||
* Portions of this code were initially from the FuelPHP Framework,
|
||||
* version 1.7.x, and used here under the MIT license they were
|
||||
* originally made available under. Reference: http://fuelphp.com
|
||||
*
|
||||
* Some of the code in this class is Windows-specific, and not
|
||||
* possible to test using travis-ci. It has been phpunit-annotated
|
||||
* to prevent messing up code coverage.
|
||||
*
|
||||
* Some of the methods require keyboard input, and are not unit-testable
|
||||
* as a result: input() and prompt().
|
||||
* validate() is internal, and not testable if prompt() isn't.
|
||||
* The wait() method is mostly testable, as long as you don't give it
|
||||
* an argument of "0".
|
||||
* These have been flagged to ignore for code coverage purposes.
|
||||
*
|
||||
* @package CodeIgniter\CLI
|
||||
*/
|
||||
class CLI
|
||||
{
|
||||
|
||||
/**
|
||||
* Is the readline library on the system?
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
public static $readline_support = false;
|
||||
|
||||
/**
|
||||
* The message displayed at prompts.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public static $wait_msg = 'Press any key to continue...';
|
||||
|
||||
/**
|
||||
* Has the class already been initialized?
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
protected static $initialized = false;
|
||||
|
||||
/**
|
||||
* Foreground color list
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $foreground_colors = [
|
||||
'black' => '0;30',
|
||||
'dark_gray' => '1;30',
|
||||
'blue' => '0;34',
|
||||
'dark_blue' => '1;34',
|
||||
'light_blue' => '1;34',
|
||||
'green' => '0;32',
|
||||
'light_green' => '1;32',
|
||||
'cyan' => '0;36',
|
||||
'light_cyan' => '1;36',
|
||||
'red' => '0;31',
|
||||
'light_red' => '1;31',
|
||||
'purple' => '0;35',
|
||||
'light_purple' => '1;35',
|
||||
'light_yellow' => '0;33',
|
||||
'yellow' => '1;33',
|
||||
'light_gray' => '0;37',
|
||||
'white' => '1;37',
|
||||
];
|
||||
|
||||
/**
|
||||
* Background color list
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $background_colors = [
|
||||
'black' => '40',
|
||||
'red' => '41',
|
||||
'green' => '42',
|
||||
'yellow' => '43',
|
||||
'blue' => '44',
|
||||
'magenta' => '45',
|
||||
'cyan' => '46',
|
||||
'light_gray' => '47',
|
||||
];
|
||||
|
||||
/**
|
||||
* List of array segments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $segments = [];
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected static $options = [];
|
||||
|
||||
/**
|
||||
* Helps track internally whether the last
|
||||
* output was a "write" or a "print" to
|
||||
* keep the output clean and as expected.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected static $lastWrite;
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Static "constructor".
|
||||
*/
|
||||
public static function init()
|
||||
{
|
||||
// Readline is an extension for PHP that makes interactivity with PHP
|
||||
// much more bash-like.
|
||||
// http://www.php.net/manual/en/readline.installation.php
|
||||
static::$readline_support = extension_loaded('readline');
|
||||
|
||||
// clear segments & options to keep testing clean
|
||||
static::$segments = [];
|
||||
static::$options = [];
|
||||
|
||||
static::parseCommandLine();
|
||||
|
||||
static::$initialized = true;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Get input from the shell, using readline or the standard STDIN
|
||||
*
|
||||
* Named options must be in the following formats:
|
||||
* php index.php user -v --v -name=John --name=John
|
||||
*
|
||||
* @param string $prefix
|
||||
* @return string
|
||||
*
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public static function input(string $prefix = null): string
|
||||
{
|
||||
if (static::$readline_support)
|
||||
{
|
||||
return readline($prefix);
|
||||
}
|
||||
|
||||
echo $prefix;
|
||||
|
||||
return fgets(STDIN);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Asks the user for input.
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
* // Takes any input
|
||||
* $color = CLI::prompt('What is your favorite color?');
|
||||
*
|
||||
* // Takes any input, but offers default
|
||||
* $color = CLI::prompt('What is your favourite color?', 'white');
|
||||
*
|
||||
* // Will validate options with the in_list rule and accept only if one of the list
|
||||
* $color = CLI::prompt('What is your favourite color?', array('red','blue'));
|
||||
*
|
||||
* // Do not provide options but requires a valid email
|
||||
* $email = CLI::prompt('What is your email?', null, 'required|valid_email');
|
||||
*
|
||||
* @param string $field Output "field" question
|
||||
* @param string|array $options String to a default value, array to a list of options (the first option will be the default value)
|
||||
* @param string $validation Validation rules
|
||||
*
|
||||
* @return string The user input
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public static function prompt(string $field, $options = null, string $validation = null): string
|
||||
{
|
||||
$extra_output = '';
|
||||
$default = '';
|
||||
|
||||
if (is_string($options))
|
||||
{
|
||||
$extra_output = ' [' . static::color($options, 'white') . ']';
|
||||
$default = $options;
|
||||
}
|
||||
|
||||
if (is_array($options) && $options)
|
||||
{
|
||||
$opts = $options;
|
||||
$extra_output_default = static::color($opts[0], 'white');
|
||||
|
||||
unset($opts[0]);
|
||||
|
||||
if (empty($opts))
|
||||
{
|
||||
$extra_output = $extra_output_default;
|
||||
}
|
||||
else
|
||||
{
|
||||
$extra_output = ' [' . $extra_output_default . ', ' . implode(', ', $opts) . ']';
|
||||
$validation .= '|in_list[' . implode(',', $options) . ']';
|
||||
$validation = trim($validation, '|');
|
||||
}
|
||||
|
||||
$default = $options[0];
|
||||
}
|
||||
|
||||
fwrite(STDOUT, $field . $extra_output . ': ');
|
||||
|
||||
// Read the input from keyboard.
|
||||
$input = trim(static::input()) ?: $default;
|
||||
|
||||
if (isset($validation))
|
||||
{
|
||||
while (! static::validate($field, $input, $validation))
|
||||
{
|
||||
$input = static::prompt($field, $options, $validation);
|
||||
}
|
||||
}
|
||||
|
||||
return empty($input) ? '' : $input;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Validate one prompt "field" at a time
|
||||
*
|
||||
* @param string $field Prompt "field" output
|
||||
* @param string $value Input value
|
||||
* @param string $rules Validation rules
|
||||
*
|
||||
* @return boolean
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
protected static function validate(string $field, string $value, string $rules): bool
|
||||
{
|
||||
$validation = \Config\Services::validation(null, false);
|
||||
$validation->setRule($field, null, $rules);
|
||||
$validation->run([$field => $value]);
|
||||
|
||||
if ($validation->hasError($field))
|
||||
{
|
||||
static::error($validation->getError($field));
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Outputs a string to the CLI without any surrounding newlines.
|
||||
* Useful for showing repeating elements on a single line.
|
||||
*
|
||||
* @param string $text
|
||||
* @param string|null $foreground
|
||||
* @param string|null $background
|
||||
*/
|
||||
public static function print(string $text = '', string $foreground = null, string $background = null)
|
||||
{
|
||||
if ($foreground || $background)
|
||||
{
|
||||
$text = static::color($text, $foreground, $background);
|
||||
}
|
||||
|
||||
static::$lastWrite = null;
|
||||
|
||||
fwrite(STDOUT, $text);
|
||||
}
|
||||
|
||||
/**
|
||||
* Outputs a string to the cli on it's own line.
|
||||
*
|
||||
* @param string $text The text to output
|
||||
* @param string $foreground
|
||||
* @param string $background
|
||||
*/
|
||||
public static function write(string $text = '', string $foreground = null, string $background = null)
|
||||
{
|
||||
if ($foreground || $background)
|
||||
{
|
||||
$text = static::color($text, $foreground, $background);
|
||||
}
|
||||
|
||||
if (static::$lastWrite !== 'write')
|
||||
{
|
||||
$text = PHP_EOL . $text;
|
||||
static::$lastWrite = 'write';
|
||||
}
|
||||
|
||||
fwrite(STDOUT, $text . PHP_EOL);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Outputs an error to the CLI using STDERR instead of STDOUT
|
||||
*
|
||||
* @param string|array $text The text to output, or array of errors
|
||||
* @param string $foreground
|
||||
* @param string $background
|
||||
*/
|
||||
public static function error(string $text, string $foreground = 'light_red', string $background = null)
|
||||
{
|
||||
if ($foreground || $background)
|
||||
{
|
||||
$text = static::color($text, $foreground, $background);
|
||||
}
|
||||
|
||||
fwrite(STDERR, $text . PHP_EOL);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Beeps a certain number of times.
|
||||
*
|
||||
* @param integer $num The number of times to beep
|
||||
*/
|
||||
public static function beep(int $num = 1)
|
||||
{
|
||||
echo str_repeat("\x07", $num);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Waits a certain number of seconds, optionally showing a wait message and
|
||||
* waiting for a key press.
|
||||
*
|
||||
* @param integer $seconds Number of seconds
|
||||
* @param boolean $countdown Show a countdown or not
|
||||
*/
|
||||
public static function wait(int $seconds, bool $countdown = false)
|
||||
{
|
||||
if ($countdown === true)
|
||||
{
|
||||
$time = $seconds;
|
||||
|
||||
while ($time > 0)
|
||||
{
|
||||
fwrite(STDOUT, $time . '... ');
|
||||
sleep(1);
|
||||
$time --;
|
||||
}
|
||||
static::write();
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($seconds > 0)
|
||||
{
|
||||
sleep($seconds);
|
||||
}
|
||||
else
|
||||
{
|
||||
// this chunk cannot be tested because of keyboard input
|
||||
// @codeCoverageIgnoreStart
|
||||
static::write(static::$wait_msg);
|
||||
static::input();
|
||||
// @codeCoverageIgnoreEnd
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* if operating system === windows
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public static function isWindows(): bool
|
||||
{
|
||||
return stripos(PHP_OS, 'WIN') === 0;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Enter a number of empty lines
|
||||
*
|
||||
* @param integer $num Number of lines to output
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function newLine(int $num = 1)
|
||||
{
|
||||
// Do it once or more, write with empty string gives us a new line
|
||||
for ($i = 0; $i < $num; $i ++)
|
||||
{
|
||||
static::write('');
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Clears the screen of output
|
||||
*
|
||||
* @return void
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public static function clearScreen()
|
||||
{
|
||||
static::isWindows()
|
||||
|
||||
// Windows is a bit crap at this, but their terminal is tiny so shove this in
|
||||
? static::newLine(40)
|
||||
|
||||
// Anything with a flair of Unix will handle these magic characters
|
||||
: fwrite(STDOUT, chr(27) . '[H' . chr(27) . '[2J');
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Returns the given text with the correct color codes for a foreground and
|
||||
* optionally a background color.
|
||||
*
|
||||
* @param string $text The text to color
|
||||
* @param string $foreground The foreground color
|
||||
* @param string $background The background color
|
||||
* @param string $format Other formatting to apply. Currently only 'underline' is understood
|
||||
*
|
||||
* @return string The color coded string
|
||||
*/
|
||||
public static function color(string $text, string $foreground, string $background = null, string $format = null): string
|
||||
{
|
||||
if (static::isWindows() && ! isset($_SERVER['ANSICON']))
|
||||
{
|
||||
// @codeCoverageIgnoreStart
|
||||
return $text;
|
||||
// @codeCoverageIgnoreEnd
|
||||
}
|
||||
|
||||
if (! array_key_exists($foreground, static::$foreground_colors))
|
||||
{
|
||||
throw CLIException::forInvalidColor('foreground', $foreground);
|
||||
}
|
||||
|
||||
if ($background !== null && ! array_key_exists($background, static::$background_colors))
|
||||
{
|
||||
throw CLIException::forInvalidColor('background', $background);
|
||||
}
|
||||
|
||||
$string = "\033[" . static::$foreground_colors[$foreground] . 'm';
|
||||
|
||||
if ($background !== null)
|
||||
{
|
||||
$string .= "\033[" . static::$background_colors[$background] . 'm';
|
||||
}
|
||||
|
||||
if ($format === 'underline')
|
||||
{
|
||||
$string .= "\033[4m";
|
||||
}
|
||||
|
||||
$string .= $text . "\033[0m";
|
||||
|
||||
return $string;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Get the number of characters in string having encoded characters
|
||||
* and ignores styles set by the color() function
|
||||
*
|
||||
* @param string $string
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
public static function strlen(?string $string): int
|
||||
{
|
||||
if (is_null($string))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
foreach (static::$foreground_colors as $color)
|
||||
{
|
||||
$string = strtr($string, ["\033[" . $color . 'm' => '']);
|
||||
}
|
||||
|
||||
foreach (static::$background_colors as $color)
|
||||
{
|
||||
$string = strtr($string, ["\033[" . $color . 'm' => '']);
|
||||
}
|
||||
|
||||
$string = strtr($string, ["\033[4m" => '', "\033[0m" => '']);
|
||||
|
||||
return mb_strlen($string);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Attempts to determine the width of the viewable CLI window.
|
||||
* This only works on *nix-based systems, so return a sane default
|
||||
* for Windows environments.
|
||||
*
|
||||
* @param integer $default
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
public static function getWidth(int $default = 80): int
|
||||
{
|
||||
if (static::isWindows() || (int) shell_exec('tput cols') === 0)
|
||||
{
|
||||
// @codeCoverageIgnoreStart
|
||||
return $default;
|
||||
// @codeCoverageIgnoreEnd
|
||||
}
|
||||
|
||||
return (int) shell_exec('tput cols');
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Attempts to determine the height of the viewable CLI window.
|
||||
* This only works on *nix-based systems, so return a sane default
|
||||
* for Windows environments.
|
||||
*
|
||||
* @param integer $default
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
public static function getHeight(int $default = 32): int
|
||||
{
|
||||
if (static::isWindows())
|
||||
{
|
||||
// @codeCoverageIgnoreStart
|
||||
return $default;
|
||||
// @codeCoverageIgnoreEnd
|
||||
}
|
||||
|
||||
return (int) shell_exec('tput lines');
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Displays a progress bar on the CLI. You must call it repeatedly
|
||||
* to update it. Set $thisStep = false to erase the progress bar.
|
||||
*
|
||||
* @param integer|boolean $thisStep
|
||||
* @param integer $totalSteps
|
||||
*/
|
||||
public static function showProgress($thisStep = 1, int $totalSteps = 10)
|
||||
{
|
||||
static $inProgress = false;
|
||||
|
||||
// restore cursor position when progress is continuing.
|
||||
if ($inProgress !== false && $inProgress <= $thisStep)
|
||||
{
|
||||
fwrite(STDOUT, "\033[1A");
|
||||
}
|
||||
$inProgress = $thisStep;
|
||||
|
||||
if ($thisStep !== false)
|
||||
{
|
||||
// Don't allow div by zero or negative numbers....
|
||||
$thisStep = abs($thisStep);
|
||||
$totalSteps = $totalSteps < 1 ? 1 : $totalSteps;
|
||||
|
||||
$percent = intval(($thisStep / $totalSteps) * 100);
|
||||
$step = (int) round($percent / 10);
|
||||
|
||||
// Write the progress bar
|
||||
fwrite(STDOUT, "[\033[32m" . str_repeat('#', $step) . str_repeat('.', 10 - $step) . "\033[0m]");
|
||||
// Textual representation...
|
||||
fwrite(STDOUT, sprintf(' %3d%% Complete', $percent) . PHP_EOL);
|
||||
}
|
||||
else
|
||||
{
|
||||
fwrite(STDOUT, "\007");
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Takes a string and writes it to the command line, wrapping to a maximum
|
||||
* width. If no maximum width is specified, will wrap to the window's max
|
||||
* width.
|
||||
*
|
||||
* If an int is passed into $pad_left, then all strings after the first
|
||||
* will padded with that many spaces to the left. Useful when printing
|
||||
* short descriptions that need to start on an existing line.
|
||||
*
|
||||
* @param string $string
|
||||
* @param integer $max
|
||||
* @param integer $pad_left
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function wrap(string $string = null, int $max = 0, int $pad_left = 0): string
|
||||
{
|
||||
if (empty($string))
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
if ($max === 0)
|
||||
{
|
||||
$max = CLI::getWidth();
|
||||
}
|
||||
|
||||
if (CLI::getWidth() < $max)
|
||||
{
|
||||
$max = CLI::getWidth();
|
||||
}
|
||||
|
||||
$max = $max - $pad_left;
|
||||
|
||||
$lines = wordwrap($string, $max);
|
||||
|
||||
if ($pad_left > 0)
|
||||
{
|
||||
$lines = explode(PHP_EOL, $lines);
|
||||
|
||||
$first = true;
|
||||
|
||||
array_walk($lines, function (&$line, $index) use ($pad_left, &$first) {
|
||||
if (! $first)
|
||||
{
|
||||
$line = str_repeat(' ', $pad_left) . $line;
|
||||
}
|
||||
else
|
||||
{
|
||||
$first = false;
|
||||
}
|
||||
});
|
||||
|
||||
$lines = implode(PHP_EOL, $lines);
|
||||
}
|
||||
|
||||
return $lines;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
//--------------------------------------------------------------------
|
||||
// Command-Line 'URI' support
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Parses the command line it was called from and collects all
|
||||
* options and valid segments.
|
||||
*
|
||||
* I tried to use getopt but had it fail occasionally to find any
|
||||
* options but argc has always had our back. We don't have all of the power
|
||||
* of getopt but this does us just fine.
|
||||
*/
|
||||
protected static function parseCommandLine()
|
||||
{
|
||||
$optionsFound = false;
|
||||
|
||||
// start picking segments off from #1, ignoring the invoking program
|
||||
for ($i = 1; $i < $_SERVER['argc']; $i ++)
|
||||
{
|
||||
// If there's no '-' at the beginning of the argument
|
||||
// then add it to our segments.
|
||||
if (! $optionsFound && mb_strpos($_SERVER['argv'][$i], '-') === false)
|
||||
{
|
||||
static::$segments[] = $_SERVER['argv'][$i];
|
||||
continue;
|
||||
}
|
||||
|
||||
// We set $optionsFound here so that we know to
|
||||
// skip the next argument since it's likely the
|
||||
// value belonging to this option.
|
||||
$optionsFound = true;
|
||||
|
||||
$arg = str_replace('-', '', $_SERVER['argv'][$i]);
|
||||
$value = null;
|
||||
|
||||
// if there is a following segment, and it doesn't start with a dash, it's a value.
|
||||
if (isset($_SERVER['argv'][$i + 1]) && mb_strpos($_SERVER['argv'][$i + 1], '-') !== 0)
|
||||
{
|
||||
$value = $_SERVER['argv'][$i + 1];
|
||||
$i ++;
|
||||
}
|
||||
|
||||
static::$options[$arg] = $value;
|
||||
|
||||
// Reset $optionsFound so it can collect segments
|
||||
// past any options.
|
||||
$optionsFound = false;
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Returns the command line string portions of the arguments, minus
|
||||
* any options, as a string. This is used to pass along to the main
|
||||
* CodeIgniter application.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function getURI(): string
|
||||
{
|
||||
return implode('/', static::$segments);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Returns an individual segment.
|
||||
*
|
||||
* This ignores any options that might have been dispersed between
|
||||
* valid segments in the command:
|
||||
*
|
||||
* // segment(3) is 'three', not '-f' or 'anOption'
|
||||
* > php spark one two -f anOption three
|
||||
*
|
||||
* @param integer $index
|
||||
*
|
||||
* @return mixed|null
|
||||
*/
|
||||
public static function getSegment(int $index)
|
||||
{
|
||||
if (! isset(static::$segments[$index - 1]))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
return static::$segments[$index - 1];
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Returns the raw array of segments found.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function getSegments(): array
|
||||
{
|
||||
return static::$segments;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Gets a single command-line option. Returns TRUE if the option
|
||||
* exists, but doesn't have a value, and is simply acting as a flag.
|
||||
*
|
||||
* @param string $name
|
||||
*
|
||||
* @return boolean|mixed|null
|
||||
*/
|
||||
public static function getOption(string $name)
|
||||
{
|
||||
if (! array_key_exists($name, static::$options))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// If the option didn't have a value, simply return TRUE
|
||||
// so they know it was set, otherwise return the actual value.
|
||||
$val = static::$options[$name] === null ? true : static::$options[$name];
|
||||
|
||||
return $val;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Returns the raw array of options found.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function getOptions(): array
|
||||
{
|
||||
return static::$options;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Returns the options as a string, suitable for passing along on
|
||||
* the CLI to other commands.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function getOptionString(): string
|
||||
{
|
||||
if (empty(static::$options))
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
$out = '';
|
||||
|
||||
foreach (static::$options as $name => $value)
|
||||
{
|
||||
// If there's a space, we need to group
|
||||
// so it will pass correctly.
|
||||
if (mb_strpos($value, ' ') !== false)
|
||||
{
|
||||
$value = '"' . $value . '"';
|
||||
}
|
||||
|
||||
$out .= "-{$name} $value ";
|
||||
}
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Returns a well formatted table
|
||||
*
|
||||
* @param array $tbody List of rows
|
||||
* @param array $thead List of columns
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function table(array $tbody, array $thead = [])
|
||||
{
|
||||
// All the rows in the table will be here until the end
|
||||
$table_rows = [];
|
||||
|
||||
// We need only indexes and not keys
|
||||
if (! empty($thead))
|
||||
{
|
||||
$table_rows[] = array_values($thead);
|
||||
}
|
||||
|
||||
foreach ($tbody as $tr)
|
||||
{
|
||||
$table_rows[] = array_values($tr);
|
||||
}
|
||||
|
||||
// Yes, it really is necessary to know this count
|
||||
$total_rows = count($table_rows);
|
||||
|
||||
// Store all columns lengths
|
||||
// $all_cols_lengths[row][column] = length
|
||||
$all_cols_lengths = [];
|
||||
|
||||
// Store maximum lengths by column
|
||||
// $max_cols_lengths[column] = length
|
||||
$max_cols_lengths = [];
|
||||
|
||||
// Read row by row and define the longest columns
|
||||
for ($row = 0; $row < $total_rows; $row ++)
|
||||
{
|
||||
$column = 0; // Current column index
|
||||
foreach ($table_rows[$row] as $col)
|
||||
{
|
||||
// Sets the size of this column in the current row
|
||||
$all_cols_lengths[$row][$column] = static::strlen($col);
|
||||
|
||||
// If the current column does not have a value among the larger ones
|
||||
// or the value of this is greater than the existing one
|
||||
// then, now, this assumes the maximum length
|
||||
if (! isset($max_cols_lengths[$column]) || $all_cols_lengths[$row][$column] > $max_cols_lengths[$column])
|
||||
{
|
||||
$max_cols_lengths[$column] = $all_cols_lengths[$row][$column];
|
||||
}
|
||||
|
||||
// We can go check the size of the next column...
|
||||
$column ++;
|
||||
}
|
||||
}
|
||||
|
||||
// Read row by row and add spaces at the end of the columns
|
||||
// to match the exact column length
|
||||
for ($row = 0; $row < $total_rows; $row ++)
|
||||
{
|
||||
$column = 0;
|
||||
foreach ($table_rows[$row] as $col)
|
||||
{
|
||||
$diff = $max_cols_lengths[$column] - static::strlen($col);
|
||||
if ($diff)
|
||||
{
|
||||
$table_rows[$row][$column] = $table_rows[$row][$column] . str_repeat(' ', $diff);
|
||||
}
|
||||
$column ++;
|
||||
}
|
||||
}
|
||||
|
||||
$table = '';
|
||||
|
||||
// Joins columns and append the well formatted rows to the table
|
||||
for ($row = 0; $row < $total_rows; $row ++)
|
||||
{
|
||||
// Set the table border-top
|
||||
if ($row === 0)
|
||||
{
|
||||
$cols = '+';
|
||||
foreach ($table_rows[$row] as $col)
|
||||
{
|
||||
$cols .= str_repeat('-', static::strlen($col) + 2) . '+';
|
||||
}
|
||||
$table .= $cols . PHP_EOL;
|
||||
}
|
||||
|
||||
// Set the columns borders
|
||||
$table .= '| ' . implode(' | ', $table_rows[$row]) . ' |' . PHP_EOL;
|
||||
|
||||
// Set the thead and table borders-bottom
|
||||
if ($row === 0 && ! empty($thead) || $row + 1 === $total_rows)
|
||||
{
|
||||
$table .= $cols . PHP_EOL;
|
||||
}
|
||||
}
|
||||
|
||||
fwrite(STDOUT, $table);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
}
|
||||
|
||||
// Ensure the class is initialized. Done outside of code coverage
|
||||
// @codeCoverageIgnoreStart
|
||||
CLI::init();
|
||||
// @codeCoverageIgnoreEnd
|
||||
212
system/CLI/CommandRunner.php
Normal file
212
system/CLI/CommandRunner.php
Normal file
@@ -0,0 +1,212 @@
|
||||
<?php
|
||||
|
||||
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014-2019 British Columbia Institute of Technology
|
||||
* Copyright (c) 2019 CodeIgniter Foundation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author CodeIgniter Dev Team
|
||||
* @copyright 2019 CodeIgniter Foundation
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 4.0.0
|
||||
* @filesource
|
||||
*/
|
||||
|
||||
namespace CodeIgniter\CLI;
|
||||
|
||||
use CodeIgniter\Config\Services;
|
||||
use CodeIgniter\Controller;
|
||||
|
||||
/**
|
||||
* Command runner
|
||||
*/
|
||||
class CommandRunner extends Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* Stores the info about found Commands.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $commands = [];
|
||||
|
||||
/**
|
||||
* Message logger.
|
||||
*
|
||||
* @var \CodeIgniter\Log\Logger
|
||||
*/
|
||||
protected $logger;
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* We map all un-routed CLI methods through this function
|
||||
* so we have the chance to look for a Command first.
|
||||
*
|
||||
* @param string $method
|
||||
* @param array ...$params
|
||||
*
|
||||
* @return mixed
|
||||
* @throws \ReflectionException
|
||||
*/
|
||||
public function _remap($method, ...$params)
|
||||
{
|
||||
// The first param is usually empty, so scrap it.
|
||||
if (empty($params[0]))
|
||||
{
|
||||
array_shift($params);
|
||||
}
|
||||
|
||||
return $this->index($params);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Default command.
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @return mixed
|
||||
* @throws \ReflectionException
|
||||
*/
|
||||
public function index(array $params)
|
||||
{
|
||||
$command = array_shift($params);
|
||||
|
||||
$this->createCommandList();
|
||||
|
||||
if (is_null($command))
|
||||
{
|
||||
$command = 'help';
|
||||
}
|
||||
|
||||
return $this->runCommand($command, $params);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Actually runs the command.
|
||||
*
|
||||
* @param string $command
|
||||
* @param array $params
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
protected function runCommand(string $command, array $params)
|
||||
{
|
||||
if (! isset($this->commands[$command]))
|
||||
{
|
||||
CLI::error(lang('CLI.commandNotFound', [$command]));
|
||||
CLI::newLine();
|
||||
return;
|
||||
}
|
||||
|
||||
// The file would have already been loaded during the
|
||||
// createCommandList function...
|
||||
$className = $this->commands[$command]['class'];
|
||||
$class = new $className($this->logger, $this);
|
||||
|
||||
return $class->run($params);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Scans all Commands directories and prepares a list
|
||||
* of each command with it's group and file.
|
||||
*
|
||||
* @throws \ReflectionException
|
||||
*/
|
||||
protected function createCommandList()
|
||||
{
|
||||
$files = Services::locator()->listFiles('Commands/');
|
||||
|
||||
// If no matching command files were found, bail
|
||||
if (empty($files))
|
||||
{
|
||||
// This should never happen in unit testing.
|
||||
// if it does, we have far bigger problems!
|
||||
// @codeCoverageIgnoreStart
|
||||
return;
|
||||
// @codeCoverageIgnoreEnd
|
||||
}
|
||||
|
||||
// Loop over each file checking to see if a command with that
|
||||
// alias exists in the class. If so, return it. Otherwise, try the next.
|
||||
foreach ($files as $file)
|
||||
{
|
||||
$className = Services::locator()->findQualifiedNameFromPath($file);
|
||||
if (empty($className) || ! class_exists($className))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
$class = new \ReflectionClass($className);
|
||||
|
||||
if (! $class->isInstantiable() || ! $class->isSubclassOf(BaseCommand::class))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
$class = new $className($this->logger, $this);
|
||||
|
||||
// Store it!
|
||||
if ($class->group !== null)
|
||||
{
|
||||
$this->commands[$class->name] = [
|
||||
'class' => $className,
|
||||
'file' => $file,
|
||||
'group' => $class->group,
|
||||
'description' => $class->description,
|
||||
];
|
||||
}
|
||||
|
||||
$class = null;
|
||||
unset($class);
|
||||
}
|
||||
|
||||
asort($this->commands);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Allows access to the current commands that have been found.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getCommands(): array
|
||||
{
|
||||
return $this->commands;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
}
|
||||
106
system/CLI/Console.php
Normal file
106
system/CLI/Console.php
Normal file
@@ -0,0 +1,106 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014-2019 British Columbia Institute of Technology
|
||||
* Copyright (c) 2019 CodeIgniter Foundation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author CodeIgniter Dev Team
|
||||
* @copyright 2019 CodeIgniter Foundation
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 4.0.0
|
||||
* @filesource
|
||||
*/
|
||||
|
||||
namespace CodeIgniter\CLI;
|
||||
|
||||
use CodeIgniter\CodeIgniter;
|
||||
|
||||
/**
|
||||
* Console
|
||||
*/
|
||||
class Console
|
||||
{
|
||||
|
||||
/**
|
||||
* Main CodeIgniter instance.
|
||||
*
|
||||
* @var CodeIgniter
|
||||
*/
|
||||
protected $app;
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Console constructor.
|
||||
*
|
||||
* @param \CodeIgniter\CodeIgniter $app
|
||||
*/
|
||||
public function __construct(CodeIgniter $app)
|
||||
{
|
||||
$this->app = $app;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Runs the current command discovered on the CLI.
|
||||
*
|
||||
* @param boolean $useSafeOutput
|
||||
*
|
||||
* @return \CodeIgniter\HTTP\RequestInterface|\CodeIgniter\HTTP\Response|\CodeIgniter\HTTP\ResponseInterface|mixed
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function run(bool $useSafeOutput = false)
|
||||
{
|
||||
$path = CLI::getURI() ?: 'list';
|
||||
|
||||
// Set the path for the application to route to.
|
||||
$this->app->setPath("ci{$path}");
|
||||
|
||||
return $this->app->useSafeOutput($useSafeOutput)->run();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Displays basic information about the Console.
|
||||
*/
|
||||
public function showHeader()
|
||||
{
|
||||
CLI::newLine(1);
|
||||
|
||||
CLI::write(CLI::color('CodeIgniter CLI Tool', 'green')
|
||||
. ' - Version ' . CodeIgniter::CI_VERSION
|
||||
. ' - Server-Time: ' . date('Y-m-d H:i:sa'));
|
||||
|
||||
CLI::newLine(1);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
}
|
||||
15
system/CLI/Exceptions/CLIException.php
Normal file
15
system/CLI/Exceptions/CLIException.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php namespace CodeIgniter\CLI\Exceptions;
|
||||
|
||||
class CLIException extends \RuntimeException
|
||||
{
|
||||
/**
|
||||
* @param string $type
|
||||
* @param string $color
|
||||
*
|
||||
* @return \CodeIgniter\CLI\Exceptions\CLIException
|
||||
*/
|
||||
public static function forInvalidColor(string $type, string $color)
|
||||
{
|
||||
return new static(lang('CLI.invalidColor', [$type, $color]));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user