mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-21 19:22:45 +08:00
128 lines
3.1 KiB
PHP
128 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace Bootstrap;
|
|
|
|
use App\Providers\Cache as CacheProvider;
|
|
use App\Providers\CliDispatcher as DispatcherProvider;
|
|
use App\Providers\Config as ConfigProvider;
|
|
use App\Providers\Crypt as CryptProvider;
|
|
use App\Providers\Database as DatabaseProvider;
|
|
use App\Providers\EventsManager as EventsManagerProvider;
|
|
use App\Providers\Logger as LoggerProvider;
|
|
use App\Providers\MetaData as MetaDataProvider;
|
|
use App\Providers\Provider as AppProvider;
|
|
use Phalcon\Cli\Console;
|
|
use Phalcon\Di\FactoryDefault\Cli;
|
|
use Phalcon\Loader;
|
|
use Phalcon\Text;
|
|
|
|
class ConsoleKernel extends Kernel
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
$this->di = new Cli();
|
|
$this->app = new Console();
|
|
$this->loader = new Loader();
|
|
|
|
$this->initAppEnv();
|
|
$this->initAppConfig();
|
|
$this->initAppSetting();
|
|
$this->registerLoaders();
|
|
$this->registerServices();
|
|
$this->registerErrorHandler();
|
|
}
|
|
|
|
public function handle()
|
|
{
|
|
$this->app->setDI($this->di);
|
|
|
|
$options = getopt('', ['task:', 'action:']);
|
|
|
|
if (!empty($options['task']) && !empty($options['action'])) {
|
|
|
|
$this->app->handle($options);
|
|
|
|
} else {
|
|
|
|
$options = [];
|
|
|
|
foreach ($_SERVER['argv'] as $k => $arg) {
|
|
if ($k == 1) {
|
|
$options['task'] = $this->handleTaskName($arg);
|
|
} elseif ($k == 2) {
|
|
$options['action'] = $this->handleActionName($arg);
|
|
} elseif ($k >= 3) {
|
|
$options['params'][] = $arg;
|
|
}
|
|
}
|
|
|
|
$this->app->handle($options);
|
|
|
|
echo PHP_EOL . PHP_EOL;
|
|
}
|
|
}
|
|
|
|
protected function registerLoaders()
|
|
{
|
|
$this->loader->registerNamespaces([
|
|
'App' => app_path(),
|
|
'Bootstrap' => bootstrap_path(),
|
|
]);
|
|
|
|
$this->loader->registerFiles([
|
|
vendor_path('autoload.php'),
|
|
app_path('Library/Helper.php'),
|
|
]);
|
|
|
|
$this->loader->register();
|
|
}
|
|
|
|
protected function registerServices()
|
|
{
|
|
$providers = [
|
|
ConfigProvider::class,
|
|
CacheProvider::class,
|
|
CryptProvider::class,
|
|
DatabaseProvider::class,
|
|
EventsManagerProvider::class,
|
|
LoggerProvider::class,
|
|
MetaDataProvider::class,
|
|
DispatcherProvider::class,
|
|
];
|
|
|
|
foreach ($providers as $provider) {
|
|
|
|
/**
|
|
* @var AppProvider $service
|
|
*/
|
|
$service = new $provider($this->di);
|
|
|
|
$service->register();
|
|
}
|
|
}
|
|
|
|
protected function registerErrorHandler()
|
|
{
|
|
return new ConsoleErrorHandler();
|
|
}
|
|
|
|
protected function handleTaskName($name)
|
|
{
|
|
return Text::uncamelize($name);
|
|
}
|
|
|
|
protected function handleActionName($name)
|
|
{
|
|
$name = Text::uncamelize($name);
|
|
|
|
return lcfirst(Text::camelize($name));
|
|
}
|
|
|
|
}
|