diff --git a/app/command/ApiAdmin.php b/app/command/ApiAdmin.php new file mode 100644 index 0000000..659d21f --- /dev/null +++ b/app/command/ApiAdmin.php @@ -0,0 +1,26 @@ +setName('apiadmin:test') + ->setDescription('ApiAdmin默认命令行脚本,主要用于内部测试和研究'); + } + + protected function execute(Input $input, Output $output): void { + $a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; + foreach ($a as $k => &$v) { + if ($v === 5) { + $v = 55; + } + } + dump($a); + } +} diff --git a/app/command/FreshAdminRouter.php b/app/command/FreshAdminRouter.php new file mode 100644 index 0000000..d36349e --- /dev/null +++ b/app/command/FreshAdminRouter.php @@ -0,0 +1,31 @@ +setName('apiadmin:adminRouter')->setDescription('自动构建后端路由'); + } + + /** + * php think apiadmin:adminRouter + * @param Input $input + * @param Output $output + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author zhaoxiang + */ + protected function execute(Input $input, Output $output): void { + RouterTool::buildAdminRouter(); + $output->info('路由构建成功'); + } +} diff --git a/app/command/Install.php b/app/command/Install.php new file mode 100644 index 0000000..08b16d5 --- /dev/null +++ b/app/command/Install.php @@ -0,0 +1,124 @@ +setName('apiadmin:install') + ->setDescription('ApiAdmin安装脚本'); + } + + /** + * php think apiadmin:install --db mysql://root:123456@127.0.0.1:3306/apiadmin#utf8mb4 + * @param Input $input + * @param Output $output + * @return int|void|null + * @throws \think\Exception + * @author zhaoxiang + */ + protected function execute(Input $input, Output $output) { + $tplPath = root_path() . 'install' . DIRECTORY_SEPARATOR; + $lockFile = $tplPath . 'lock.ini'; + + if (file_exists($lockFile)) { + $output->highlight("You have already installed it, please do not reinstall!"); + $output->highlight("If necessary, delete the app/install/lock.ini and try again"); + exit; + } + + if (!is_writable($tplPath)) { + $output->highlight($tplPath . 'cannot be modified!'); + exit; + } + + $tempPath = runtime_path(); + if (!is_writable($tempPath)) { + $output->highlight($tempPath . 'cannot be modified!'); + exit; + } + + if (!extension_loaded('redis')) { + $output->highlight('Redis extension missing!'); + exit; + } + + try { + $options = $this->parseDsnConfig($output); + + Connection::instance($options)->getTables($options['database']); + + //处理数据库配置文件 + $dbConf = str_replace([ + '{$DB_TYPE}', '{$DB_HOST}', '{$DB_NAME}', + '{$DB_USER}', '{$DB_PASSWORD}', '{$DB_PORT}', + '{$DB_CHAR}' + ], [ + $options['type'], $options['hostname'], $options['database'], + $options['username'], $options['password'], $options['hostport'], + $options['charset'] + ], file_get_contents($tplPath . 'db.tpl')); + file_put_contents(root_path() . '.env', $dbConf); + $output->info('Database configuration updated successfully'); + + //处理ApiAdmin自定义配置 + $authKey = substr(Strs::uuid(), 1, -1); + $apiConf = str_replace('{$AUTH_KEY}', $authKey, file_get_contents($tplPath . 'apiadmin.tpl')); + file_put_contents(config_path() . 'apiadmin.php', $apiConf); + $output->info('ApiAdmin configuration updated successfully'); + + //生成lock文件,并且写入用户名密码 + file_put_contents($lockFile, $authKey); + $output->info('Lock file initialization successful'); + } catch (\PDOException $e) { + $output->highlight($e->getMessage()); + } + } + + /** + * DSN解析 + * @param $output + * @return array + * @author zhaoxiang + * @desc mysql://root:123456@127.0.0.1:3306/apiadmin#utf8mb4 + */ + private function parseDsnConfig($output) { + $output->comment('please input database type(default mysql):'); + $input = trim(fgets(fopen('php://stdin', 'r'))); + $dsn['type'] = $input ? $input : 'mysql'; + + $output->comment('please input database username(default root):'); + $input = trim(fgets(fopen('php://stdin', 'r'))); + $dsn['username'] = $input ? $input : 'root'; + + $output->comment('please input database password(default 123456):'); + $input = trim(fgets(fopen('php://stdin', 'r'))); + $dsn['password'] = $input ? $input : '123456'; + + $output->comment('please input database host(default 127.0.0.1):'); + $input = trim(fgets(fopen('php://stdin', 'r'))); + $dsn['hostname'] = $input ? $input : '127.0.0.1'; + + $output->comment('please input database port(default 3306):'); + $input = trim(fgets(fopen('php://stdin', 'r'))); + $dsn['hostport'] = $input ? $input : '3306'; + + $output->comment('please input database name(default apiadmin):'); + $input = trim(fgets(fopen('php://stdin', 'r'))); + $dsn['database'] = $input ? $input : 'apiadmin'; + + $output->comment('please input database charset(default utf8mb4):'); + $input = trim(fgets(fopen('php://stdin', 'r'))); + $dsn['charset'] = $input ? $input : 'utf8mb4'; + + return $dsn; + } +} diff --git a/app/util/RouterTool.php b/app/util/RouterTool.php index 9210029..dbcbde0 100644 --- a/app/util/RouterTool.php +++ b/app/util/RouterTool.php @@ -10,7 +10,7 @@ namespace app\util; use app\model\AdminMenu; -use think\facade\Env; +use think\App; class RouterTool { @@ -21,10 +21,11 @@ class RouterTool { * @throws \think\db\exception\ModelNotFoundException * @author zhaoxiang */ - public static function buildAdminRouter():void { + public static function buildAdminRouter(): void { $methodArr = ['*', 'get', 'post', 'put', 'delete']; - $routePath = Env::get('route_path') . 'route.php'; - $bakPath = Env::get('route_path') . 'route.bak'; + $routePath = (new App())->getRootPath() . 'route' . DIRECTORY_SEPARATOR . 'app.php'; + $bakPath = (new App())->getRootPath() . 'route' . DIRECTORY_SEPARATOR . 'app.bak'; + if (file_exists($bakPath)) { unlink($bakPath); } @@ -34,19 +35,20 @@ class RouterTool { $context = 'select(); if ($menus) { foreach ($menus as $menu) { + $menu = $menu->toArray(); + $menuUrl = str_replace('admin/', '', $menu['url']); if ($menu['url']) { - $context .= "Route::rule('{$menu['url']}', '{$menu['url']}', '" . - $methodArr[$menu['method']] . "')" . - self::getAdminMiddleware($menu) . PHP_EOL; + $context .= " Route::rule('{$menuUrl}', 'admin.{$menuUrl}', '" + . $methodArr[$menu['method']] . "')" . self::getAdminMiddleware($menu) . PHP_EOL; } } } - $context .= "Route::group('admin', function() {Route::miss('admin/Miss/index');})->middleware('AdminResponse');" . PHP_EOL; + $context .= " Route::miss('admin.Miss/index');" . PHP_EOL . "});" . PHP_EOL; file_put_contents($routePath, $context); } diff --git a/config/console.php b/config/console.php index b58c02b..5d6d4a2 100644 --- a/config/console.php +++ b/config/console.php @@ -5,6 +5,8 @@ return [ // 指令定义 'commands' => [ - 'hello' => 'app\command\Hello', + 'apiadmin:adminRouter' => 'app\command\FreshAdminRouter', + 'apiadmin:install' => 'app\command\Install', + 'apiadmin:test' => 'app\command\ApiAdmin' ], ]; diff --git a/install/.gitignore b/install/.gitignore new file mode 100644 index 0000000..8d96e5b --- /dev/null +++ b/install/.gitignore @@ -0,0 +1,2 @@ +!.gitignore +lock.ini diff --git a/install/apiRoute.tpl b/install/apiRoute.tpl new file mode 100644 index 0000000..70dc76f --- /dev/null +++ b/install/apiRoute.tpl @@ -0,0 +1,12 @@ +middleware('ApiResponse'); diff --git a/install/apiadmin.tpl b/install/apiadmin.tpl new file mode 100644 index 0000000..3cbcc46 --- /dev/null +++ b/install/apiadmin.tpl @@ -0,0 +1,38 @@ + +// +---------------------------------------------------------------------- + +return [ + 'APP_VERSION' => '5.0', + 'APP_NAME' => 'ApiAdmin', + + //鉴权相关 + 'USER_ADMINISTRATOR' => [1], + + //安全秘钥 + 'AUTH_KEY' => '{$AUTH_KEY}', + + //后台登录状态维持时间[目前只有登录和解锁会重置登录时间] + 'ONLINE_TIME' => 86400, + //AccessToken失效时间 + 'ACCESS_TOKEN_TIME_OUT' => 86400, + 'COMPANY_NAME' => 'ApiAdmin开发维护团队', + + //跨域配置 + 'CROSS_DOMAIN' => [ + 'Access-Control-Allow-Origin' => '*', + 'Access-Control-Allow-Methods' => 'POST,PUT,GET,DELETE', + 'Access-Control-Allow-Headers' => 'Version, Access-Token, User-Token, Api-Auth, User-Agent, Keep-Alive, Origin, No-Cache, X-Requested-With, If-Modified-Since, Pragma, Last-Modified, Cache-Control, Expires, Content-Type, X-E4M-With', + 'Access-Control-Allow-Credentials' => 'true' + ], + + //后台列表默认一页显示数量 + 'ADMIN_LIST_DEFAULT' => 20, +]; diff --git a/install/db.tpl b/install/db.tpl new file mode 100644 index 0000000..0fba679 --- /dev/null +++ b/install/db.tpl @@ -0,0 +1,17 @@ +APP_DEBUG = true + +[APP] +DEFAULT_TIMEZONE = Asia/Shanghai + +[DATABASE] +TYPE = {$DB_TYPE} +HOSTNAME = {$DB_HOST} +DATABASE = {$DB_NAME} +USERNAME = {$DB_USER} +PASSWORD = {$DB_PASSWORD} +HOSTPORT = {$DB_PORT} +CHARSET = {$DB_CHAR} +DEBUG = false + +[LANG] +default_lang = zh-cn