| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 2.3.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Command;
- use Cake\Console\Arguments;
- use Cake\Console\ConsoleIo;
- use Cake\Console\ConsoleOptionParser;
- use Cake\Core\Configure;
- use function Cake\Core\env;
- /**
- * built-in Server command
- */
- class ServerCommand extends Command
- {
- /**
- * Default ServerHost
- *
- * @var string
- */
- public const DEFAULT_HOST = 'localhost';
- /**
- * Default ListenPort
- *
- * @var int
- */
- public const DEFAULT_PORT = 8765;
- /**
- * server host
- *
- * @var string
- */
- protected string $_host = self::DEFAULT_HOST;
- /**
- * listen port
- *
- * @var int
- */
- protected int $_port = self::DEFAULT_PORT;
- /**
- * document root
- *
- * @var string
- */
- protected string $_documentRoot = WWW_ROOT;
- /**
- * ini path
- *
- * @var string
- */
- protected string $_iniPath = '';
- /**
- * Starts up the Command and displays the welcome message.
- * Allows for checking and configuring prior to command or main execution
- *
- * @param \Cake\Console\Arguments $args The command arguments.
- * @param \Cake\Console\ConsoleIo $io The console io
- * @return void
- * @link https://book.cakephp.org/5/en/console-and-shells.html#hook-methods
- */
- protected function startup(Arguments $args, ConsoleIo $io): void
- {
- if ($args->getOption('host')) {
- $this->_host = (string)$args->getOption('host');
- }
- if ($args->getOption('port')) {
- $this->_port = (int)$args->getOption('port');
- }
- if ($args->getOption('document_root')) {
- $this->_documentRoot = (string)$args->getOption('document_root');
- }
- if ($args->getOption('ini_path')) {
- $this->_iniPath = (string)$args->getOption('ini_path');
- }
- // For Windows
- if (substr($this->_documentRoot, -1, 1) === DIRECTORY_SEPARATOR) {
- $this->_documentRoot = substr($this->_documentRoot, 0, strlen($this->_documentRoot) - 1);
- }
- if (preg_match("/^([a-z]:)[\\\]+(.+)$/i", $this->_documentRoot, $m)) {
- $this->_documentRoot = $m[1] . '\\' . $m[2];
- }
- $this->_iniPath = rtrim($this->_iniPath, DIRECTORY_SEPARATOR);
- if (preg_match("/^([a-z]:)[\\\]+(.+)$/i", $this->_iniPath, $m)) {
- $this->_iniPath = $m[1] . '\\' . $m[2];
- }
- $io->out();
- $io->out(sprintf('<info>Welcome to CakePHP %s Console</info>', 'v' . Configure::version()));
- $io->hr();
- $io->out(sprintf('App : %s', Configure::read('App.dir')));
- $io->out(sprintf('Path: %s', APP));
- $io->out(sprintf('DocumentRoot: %s', $this->_documentRoot));
- $io->out(sprintf('Ini Path: %s', $this->_iniPath));
- $io->hr();
- }
- /**
- * Execute.
- *
- * @param \Cake\Console\Arguments $args The command arguments.
- * @param \Cake\Console\ConsoleIo $io The console io
- * @return int|null The exit code or null for success
- */
- public function execute(Arguments $args, ConsoleIo $io): ?int
- {
- $this->startup($args, $io);
- $phpBinary = (string)env('PHP', 'php');
- $command = sprintf(
- '%s -S %s:%d -t %s',
- $phpBinary,
- $this->_host,
- $this->_port,
- escapeshellarg($this->_documentRoot)
- );
- if ($this->_iniPath) {
- $command = sprintf('%s -c %s', $command, $this->_iniPath);
- }
- $command = sprintf('%s %s', $command, escapeshellarg($this->_documentRoot . '/index.php'));
- $port = ':' . $this->_port;
- $io->out(sprintf('built-in server is running in http://%s%s/', $this->_host, $port));
- $io->out('You can exit with <info>`CTRL-C`</info>');
- system($command);
- return static::CODE_SUCCESS;
- }
- /**
- * Hook method for defining this command's option parser.
- *
- * @param \Cake\Console\ConsoleOptionParser $parser The option parser to update
- * @return \Cake\Console\ConsoleOptionParser
- */
- public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser
- {
- $parser->setDescription([
- 'PHP Built-in Server for CakePHP',
- '<warning>[WARN] Don\'t use this in a production environment</warning>',
- ])->addOption('host', [
- 'short' => 'H',
- 'help' => 'ServerHost',
- ])->addOption('port', [
- 'short' => 'p',
- 'help' => 'ListenPort',
- ])->addOption('ini_path', [
- 'short' => 'I',
- 'help' => 'php.ini path',
- ])->addOption('document_root', [
- 'short' => 'd',
- 'help' => 'DocumentRoot',
- ]);
- return $parser;
- }
- }
|