// +----------------------------------------------------------------------
namespace think\console\command\optimize;
use think\console\Command;
use think\console\Input;
use think\console\input\Argument;
use think\console\Output;
class Config extends Command
{
protected function configure()
{
$this->setName('optimize:config')
->addArgument('dir', Argument::OPTIONAL, 'dir name .')
->setDescription('Build config cache.');
}
protected function execute(Input $input, Output $output)
{
// 加载配置文件
$dir = $input->getArgument('dir') ?: '';
$path = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . ($dir ? $dir . DIRECTORY_SEPARATOR : '');
if (!is_dir($path)) {
try {
mkdir($path, 0755, true);
} catch (\Exception $e) {
// 创建失败
}
}
$file = $path . 'config.php';
$config = $this->loadConfig($dir);
$content = 'writeln("Succeed!");
} else {
$output->writeln("config build fail");
}
}
public function loadConfig($dir = '')
{
$configPath = $this->app->getRootPath() . ($dir ? 'app' . DIRECTORY_SEPARATOR . $dir . DIRECTORY_SEPARATOR : '') . 'config' . DIRECTORY_SEPARATOR;
$files = [];
if (is_dir($configPath)) {
$files = glob($configPath . '*' . $this->app->getConfigExt());
}
foreach ($files as $file) {
$this->app->config->load($file, pathinfo($file, PATHINFO_FILENAME));
}
return $this->app->config->get();
}
}