Files
espocrm/application/Espo/Core/Console/CommandManager.php
2022-05-17 16:39:16 +03:00

158 lines
4.6 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2022 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Core\Console;
use Espo\Core\InjectableFactory;
use Espo\Core\Utils\Metadata;
use Espo\Core\Utils\Util;
use Espo\Core\Console\Exceptions\CommandNotSpecified;
use Espo\Core\Console\Exceptions\CommandNotFound;
use Espo\Core\Console\Command\Params;
/**
* Processes console commands.
*/
class CommandManager
{
private InjectableFactory $injectableFactory;
private Metadata $metadata;
private const DEFAULT_COMMAND = 'Help';
private const DEFAULT_COMMAND_FLAG = 'help';
public function __construct(InjectableFactory $injectableFactory, Metadata $metadata)
{
$this->injectableFactory = $injectableFactory;
$this->metadata = $metadata;
}
/**
* @param array<int,string> $argv
*
* @return int<0, 255> Exit-status.
*/
public function run(array $argv): int
{
$command = $this->getCommandNameFromArgv($argv);
$params = $this->createParamsFromArgv($argv);
if (
$command === null &&
(
$params->hasFlag(self::DEFAULT_COMMAND_FLAG) ||
count($params->getFlagList()) === 0 &&
count($params->getOptions()) === 0 &&
count($params->getArgumentList()) === 0
)
) {
$command = self::DEFAULT_COMMAND;
}
if ($command === null) {
throw new CommandNotSpecified("Command name is not specified.");
}
$io = new IO();
$commandObj = $this->createCommand($command);
if (!$commandObj instanceof Command) {
// for backward compatibility
assert(method_exists($commandObj, 'run'));
$commandObj->run($params->getOptions(), $params->getFlagList(), $params->getArgumentList());
return 0;
}
$commandObj->run($params, $io);
return $io->getExitStatus();
}
/**
* @param array<int,string> $argv
*/
private function getCommandNameFromArgv(array $argv): ?string
{
$command = isset($argv[1]) ? trim($argv[1]) : null;
if ($command === null && count($argv) < 2) {
return null;
}
if (!$command || !ctype_alpha($command[0])) {
return null;
}
return ucfirst(Util::hyphenToCamelCase($command));
}
private function createCommand(string $command): object
{
$className = $this->getClassName($command);
return $this->injectableFactory->create($className);
}
/**
* @return class-string<Command>
*/
private function getClassName(string $command): string
{
/** @var ?class-string<Command> */
$className =
$this->metadata->get(['app', 'consoleCommands', lcfirst($command), 'className']);
if ($className) {
return $className;
}
$className = 'Espo\\Core\\Console\\Commands\\' . $command;
if (!class_exists($className)) {
throw new CommandNotFound("Command '" . Util::camelCaseToHyphen($command) ."' does not exist.");
}
/** @var class-string<Command> */
return $className;
}
/**
* @param array<int,string> $argv
*/
private function createParamsFromArgv(array $argv): Params
{
return Params::fromArgs(array_slice($argv, 1));
}
}