modified 完成细节

This commit is contained in:
zhaoxiang 2020-10-09 20:15:34 +08:00
parent 59ec352e94
commit b4db39c54d
9 changed files with 264 additions and 10 deletions

26
app/command/ApiAdmin.php Normal file
View File

@ -0,0 +1,26 @@
<?php
declare (strict_types=1);
namespace app\command;
use think\console\Command;
use think\console\Input;
use think\console\Output;
class ApiAdmin extends Command {
protected function configure() {
// 指令配置
$this->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);
}
}

View File

@ -0,0 +1,31 @@
<?php
declare (strict_types=1);
namespace app\command;
use app\util\RouterTool;
use think\console\Command;
use think\console\Input;
use think\console\Output;
class FreshAdminRouter extends Command {
protected function configure(): void {
// 指令配置
$this->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 <zhaoxiang051405@gmail.com>
*/
protected function execute(Input $input, Output $output): void {
RouterTool::buildAdminRouter();
$output->info('路由构建成功');
}
}

124
app/command/Install.php Normal file
View File

@ -0,0 +1,124 @@
<?php
declare (strict_types=1);
namespace app\command;
use app\util\Strs;
use think\console\Command;
use think\console\Input;
use think\console\Output;
use think\db\Connection;
class Install extends Command {
protected function configure(): void {
// 指令配置
$this->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 <zhaoxiang051405@gmail.com>
*/
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 <zhaoxiang051405@gmail.com>
* @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;
}
}

View File

@ -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 <zhaoxiang051405@gmail.com>
*/
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 = '<?php' . PHP_EOL;
$context .= 'use think\facade\Route;' . PHP_EOL;
$context .= "Route::miss('api/Miss/index');" . PHP_EOL;
$context .= "Route::group('admin', function() {" . PHP_EOL;
$menus = (new AdminMenu())->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);
}

View File

@ -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'
],
];

2
install/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
!.gitignore
lock.ini

12
install/apiRoute.tpl Normal file
View File

@ -0,0 +1,12 @@
<?php
/**
* Api路由
*/
use think\facade\Route;
Route::group('api', function() {
{$API_RULE}
//MISS路由定义
Route::miss('api/Miss/index');
})->middleware('ApiResponse');

38
install/apiadmin.tpl Normal file
View File

@ -0,0 +1,38 @@
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
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,
];

17
install/db.tpl Normal file
View File

@ -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