123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373 |
- <?php
- namespace catcher\command\install;
- use catcher\CatchAdmin;
- use catcher\library\InstallLocalModule;
- use think\console\Command;
- use think\console\Input;
- use think\console\input\Option;
- use think\console\Output;
- use think\facade\Console;
- class InstallProjectCommand extends Command
- {
- protected $databaseLink = [];
- protected $defaultModule = ['permissions', 'system'];
- protected function configure()
- {
- $this->setName('catch:install')
- ->addOption('reinstall', '-r',Option::VALUE_NONE, 'reinstall back')
- ->setDescription('install project');
- }
- /**
- *
- * @time 2019年11月29日
- * @param Input $input
- * @param Output $output
- * @return int|void|null
- */
- protected function execute(Input $input, Output $output)
- {
- if ($input->getOption('reinstall')) {
- $this->reInstall();
- $this->project();
- } else {
- $this->detectionEnvironment();
- $this->firstStep();
- $this->secondStep();
- $this->thirdStep();
- $this->finished();
- $this->project();
- }
- }
- /**
- * 环境检测
- *
- * @time 2019年11月29日
- * @return void
- */
- protected function detectionEnvironment(): void
- {
- $this->output->info('environment begin to check...');
- if (version_compare(PHP_VERSION, '7.1.0', '<')) {
- $this->output->error('php version should >= 7.1.0');
- exit();
- }
- $this->output->info('php version ' . PHP_VERSION);
- if (!extension_loaded('mbstring')) {
- $this->output->error('mbstring extension not install');exit();
- }
- $this->output->info('mbstring extension is installed');
- if (!extension_loaded('json')) {
- $this->output->error('json extension not install');
- exit();
- }
- $this->output->info('json extension is installed');
- if (!extension_loaded('openssl')) {
- $this->output->error('openssl extension not install');
- exit();
- }
- $this->output->info('openssl extension is installed');
- if (!extension_loaded('pdo')) {
- $this->output->error('pdo extension not install');
- exit();
- }
- $this->output->info('pdo extension is installed');
- if (!extension_loaded('xml')) {
- $this->output->error('xml extension not install');
- exit();
- }
- $this->output->info('xml extension is installed');
- $this->output->info('🎉 environment checking finished');
- }
- /**
- * 安装第一步
- *
- * @time 2019年11月29日
- * @return mixed
- */
- protected function firstStep()
- {
- if (file_exists($this->app->getRootPath() . '.env')) {
- return false;
- }
- // 设置 app domain
- $appDomain = strtolower($this->output->ask($this->input, '👉 first, you should set app domain: '));
- if (strpos('http://', $appDomain) === false || strpos('https://', $appDomain) === false) {
- $appDomain = 'http://' . $appDomain;
- }
- $answer = strtolower($this->output->ask($this->input, '🤔️ Did You Need to Set Database information? (Y/N): '));
- if ($answer === 'y' || $answer === 'yes') {
- $charset = $this->output->ask($this->input, '👉 please input database charset, default (utf8mb4):') ? : 'utf8mb4';
- $database = '';
- while (!$database) {
- $database = $this->output->ask($this->input, '👉 please input database name: ');
- if ($database) {
- break;
- }
- }
- $host = $this->output->ask($this->input, '👉 please input database host, default (127.0.0.1):') ? : '127.0.0.1';
- $port = $this->output->ask($this->input, '👉 please input database host port, default (3306):') ? : '3306';
- $prefix = $this->output->ask($this->input, '👉 please input table prefix, default (null):') ? : '';
- $username = $this->output->ask($this->input, '👉 please input database username default (root): ') ? : 'root';
- $password = '';
- $tryTimes = 0;
- while (!$password) {
- $password = $this->output->ask($this->input, '👉 please input database password: ');
- if ($password) {
- break;
- }
- // 尝试三次以上未填写,视为密码空
- $tryTimes++;
- if (!$password && $tryTimes > 2) {
- break;
- }
- }
- $this->databaseLink = [$host, $database, $username, $password, $port, $charset, $prefix];
- $this->generateEnvFile($host, $database, $username, $password, $port, $charset, $prefix, $appDomain);
- }
- }
- /**
- * 安装第二部
- *
- * @time 2019年11月29日
- * @return void
- */
- protected function secondStep(): void
- {
- if (file_exists($this->getEnvFilePath())) {
- $connections = \config('database.connections');
- // 因为 env file 导致安装失败
- if (!$this->databaseLink) {
- unlink($this->getEnvFilePath());
- $this->execute($this->input, $this->output);
- } else {
- [
- $connections['mysql']['hostname'],
- $connections['mysql']['database'],
- $connections['mysql']['username'],
- $connections['mysql']['password'],
- $connections['mysql']['hostport'],
- $connections['mysql']['charset'],
- $connections['mysql']['prefix'],
- ] = $this->databaseLink ?: [
- env('mysql.hostname')
- ];
- \config([
- 'connections' => $connections,
- ], 'database');
- $this->migrateAndSeeds();
- }
- }
- }
- /**
- * 生成表结构
- *
- * @time 2020年01月20日
- * @return void
- */
- protected function migrateAndSeeds(): void
- {
- foreach ($this->defaultModule as $m) {
- $module = new InstallLocalModule($m);
- $module->installModuleTables();
- $module->installModuleSeeds();
- $this->output->info('🎉 module [' . $m . '] installed successfully');
- }
- }
- /**
- * 回滚数据
- *
- * @time 2020年09月07日
- * @return void
- */
- protected function migrateRollback()
- {
- foreach ($this->defaultModule as $m) {
- $module = new InstallLocalModule($m);
- $module->rollbackModuleTable();
- $this->output->info('🎉' . $m . ' tables rollback successfully');
- }
- }
- /**
- * 安装第四步
- *
- * @time 2019年11月29日
- * @return void
- */
- protected function thirdStep(): void
- {
- // Console::call('catch:cache');
- }
- /**
- * finally
- *
- * @time 2019年11月30日
- * @return void
- */
- protected function finished(): void
- {
- // todo something
- // create jwt
- Console::call('jwt:create');
- // create service
- Console::call('catch-service:discover');
- }
- /**
- * generate env file
- *
- * @time 2019年11月29日
- * @param $host
- * @param $database
- * @param $username
- * @param $password
- * @param $port
- * @param $charset
- * @param $prefix
- * @param $appDomain
- * @return void
- */
- protected function generateEnvFile($host, $database, $username, $password, $port, $charset, $prefix, $appDomain): void
- {
- try {
- $env = \parse_ini_file(root_path() . '.example.env', true);
- $env['APP']['DOMAIN'] = $appDomain;
- $env['DATABASE']['HOSTNAME'] = $host;
- $env['DATABASE']['DATABASE'] = $database;
- $env['DATABASE']['USERNAME'] = $username;
- $env['DATABASE']['PASSWORD'] = $password;
- $env['DATABASE']['HOSTPORT'] = $port;
- $env['DATABASE']['CHARSET'] = $charset;
- if ($prefix) {
- $env['DATABASE']['PREFIX'] = $prefix;
- }
- $dotEnv = '';
- foreach ($env as $key => $e) {
- if (is_string($e)) {
- $dotEnv .= sprintf('%s = %s', $key, $e === '1' ? 'true' : ($e === '' ? 'false' : $e)) . PHP_EOL;
- $dotEnv .= PHP_EOL;
- } else {
- $dotEnv .= sprintf('[%s]', $key) . PHP_EOL;
- foreach ($e as $k => $v) {
- $dotEnv .= sprintf('%s = %s', $k, $v === '1' ? 'true' : ($v === '' ? 'false' : $v)) . PHP_EOL;
- }
- $dotEnv .= PHP_EOL;
- }
- }
- if ($this->getEnvFile()) {
- $this->output->info('env file has been generated');
- }
- if ((new \mysqli($host, $username, $password, null, $port))->query(sprintf('CREATE DATABASE IF NOT EXISTS %s DEFAULT CHARSET %s COLLATE %s_general_ci;',
- $database, $charset, $charset))) {
- $this->output->info(sprintf('🎉 create database %s successfully', $database));
- } else {
- $this->output->warning(sprintf('create database %s failed,you need create database first by yourself', $database));
- }
- } catch (\Exception $e) {
- $this->output->error($e->getMessage());
- exit(0);
- }
- file_put_contents(root_path() . '.env', $dotEnv);
- }
- /**
- *
- * @time 2019年11月29日
- * @return string
- */
- protected function getEnvFile(): string
- {
- return file_exists(root_path() . '.env') ? root_path() . '.env' : '';
- }
- protected function project()
- {
- $year = date('Y');
- $this->output->info('🎉 project is installed, welcome!');
- $this->output->info(sprintf('
- /-------------------- welcome to use -------------------------\
- | __ __ ___ __ _ |
- | _________ _/ /______/ /_ / | ____/ /___ ___ (_)___ |
- | / ___/ __ `/ __/ ___/ __ \ / /| |/ __ / __ `__ \/ / __ \ |
- | / /__/ /_/ / /_/ /__/ / / / / ___ / /_/ / / / / / / / / / / |
- | \___/\__,_/\__/\___/_/ /_/ /_/ |_\__,_/_/ /_/ /_/_/_/ /_/ |
- | |
- \ __ __ __ __ _ __ _ __ enjoy it ! _ __ __ __ __ __ __ ___ _ @ 2017 ~ %s
- 版本: %s
- 初始账号: catch@admin.com
- 初始密码: catchadmin
- ', $year, CatchAdmin::VERSION));
- exit(0);
- }
- protected function reInstall(): void
- {
- $ask = strtolower($this->output->ask($this->input,'reset project? (Y/N)'));
- if ($ask === 'y' || $ask === 'yes' ) {
- $this->migrateRollback();
- $this->migrateAndSeeds();
- $this->finished();
- }
- }
- /**
- * 获取 env path
- *
- * @time 2020年04月06日
- * @return string
- */
- protected function getEnvFilePath()
- {
- return root_path() . '.env';
- }
- }
|