mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-05 19:41:43 +08:00
modified 完成接口功能移植
This commit is contained in:
parent
3160491af6
commit
d916d98fbe
158
app/controller/admin/InterfaceGroup.php
Normal file
158
app/controller/admin/InterfaceGroup.php
Normal file
@ -0,0 +1,158 @@
|
||||
<?php
|
||||
declare (strict_types=1);
|
||||
/**
|
||||
* 接口组维护
|
||||
* @since 2018-02-11
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
|
||||
namespace app\controller\admin;
|
||||
|
||||
use app\model\AdminApp;
|
||||
use app\model\AdminGroup;
|
||||
use app\model\AdminList;
|
||||
use app\util\ReturnCode;
|
||||
use think\Response;
|
||||
|
||||
class InterfaceGroup extends Base {
|
||||
|
||||
/**
|
||||
* 获取接口组列表
|
||||
* @return Response
|
||||
* @throws \think\db\exception\DbException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function index(): Response {
|
||||
$limit = $this->request->get('size', config('apiadmin.ADMIN_LIST_DEFAULT'));
|
||||
$start = $this->request->get('page', 1);
|
||||
$keywords = $this->request->get('keywords', '');
|
||||
$type = $this->request->get('type', '');
|
||||
$status = $this->request->get('status', '');
|
||||
|
||||
$obj = new AdminGroup();
|
||||
if (strlen($status)) {
|
||||
$obj = $obj->where('status', $status);
|
||||
}
|
||||
if ($type) {
|
||||
switch ($type) {
|
||||
case 1:
|
||||
$obj = $obj->where('hash', $keywords);
|
||||
break;
|
||||
case 2:
|
||||
$obj = $obj->whereLike('name', "%{$keywords}%");
|
||||
break;
|
||||
}
|
||||
}
|
||||
$listObj = $obj->order('create_time', 'desc')->paginate(['page' => $start, 'list_rows' => $limit])->toArray();
|
||||
|
||||
return $this->buildSuccess([
|
||||
'list' => $listObj['data'],
|
||||
'count' => $listObj['total']
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取全部有效的接口组
|
||||
* @return Response
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function getAll(): Response {
|
||||
$listInfo = (new AdminGroup())->where(['status' => 1])->select();
|
||||
|
||||
return $this->buildSuccess([
|
||||
'list' => $listInfo
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 接口组状态编辑
|
||||
* @return Response
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function changeStatus(): Response {
|
||||
$id = $this->request->get('id');
|
||||
$status = $this->request->get('status');
|
||||
$res = AdminGroup::update([
|
||||
'id' => $id,
|
||||
'status' => $status,
|
||||
]);
|
||||
if ($res === false) {
|
||||
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
|
||||
}
|
||||
|
||||
return $this->buildSuccess();
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加接口组
|
||||
* @return Response
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function add(): Response {
|
||||
$postData = $this->request->post();
|
||||
$res = AdminGroup::create($postData);
|
||||
if ($res === false) {
|
||||
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
|
||||
}
|
||||
|
||||
return $this->buildSuccess();
|
||||
}
|
||||
|
||||
/**
|
||||
* 接口组编辑
|
||||
* @return Response
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function edit(): Response {
|
||||
$postData = $this->request->post();
|
||||
$res = AdminGroup::update($postData);
|
||||
if ($res === false) {
|
||||
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
|
||||
}
|
||||
|
||||
return $this->buildSuccess();
|
||||
}
|
||||
|
||||
/**
|
||||
* 接口组删除
|
||||
* @return Response
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function del(): Response {
|
||||
$hash = $this->request->get('hash');
|
||||
if (!$hash) {
|
||||
return $this->buildFailed(ReturnCode::EMPTY_PARAMS, '缺少必要参数');
|
||||
}
|
||||
if ($hash === 'default') {
|
||||
return $this->buildFailed(ReturnCode::INVALID, '系统预留关键数据,禁止删除!');
|
||||
}
|
||||
|
||||
AdminList::update(['group_hash' => 'default'], ['group_hash' => $hash]);
|
||||
$hashRule = (new AdminApp())->whereLike('app_api_show', "%$hash%")->select();
|
||||
if ($hashRule) {
|
||||
foreach ($hashRule as $rule) {
|
||||
$appApiShowArr = json_decode($rule->app_api_show, true);
|
||||
if (!empty($appApiShowArr[$hash])) {
|
||||
if (isset($appApiShowArr['default'])) {
|
||||
$appApiShowArr['default'] = array_merge($appApiShowArr['default'], $appApiShowArr[$hash]);
|
||||
} else {
|
||||
$appApiShowArr['default'] = $appApiShowArr[$hash];
|
||||
}
|
||||
}
|
||||
unset($appApiShowArr[$hash]);
|
||||
$rule->app_api_show = json_encode($appApiShowArr);
|
||||
$rule->save();
|
||||
}
|
||||
}
|
||||
|
||||
AdminGroup::destroy(['hash' => $hash]);
|
||||
|
||||
return $this->buildSuccess();
|
||||
}
|
||||
}
|
201
app/controller/admin/InterfaceList.php
Normal file
201
app/controller/admin/InterfaceList.php
Normal file
@ -0,0 +1,201 @@
|
||||
<?php
|
||||
declare (strict_types=1);
|
||||
/**
|
||||
* 接口管理
|
||||
* @since 2018-02-11
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
|
||||
namespace app\controller\admin;
|
||||
|
||||
use app\model\AdminApp;
|
||||
use app\model\AdminFields;
|
||||
use app\model\AdminList;
|
||||
use app\util\ReturnCode;
|
||||
use think\facade\Env;
|
||||
use think\Response;
|
||||
|
||||
class InterfaceList extends Base {
|
||||
|
||||
/**
|
||||
* 获取接口列表
|
||||
* @return Response
|
||||
* @throws \think\db\exception\DbException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function index(): Response {
|
||||
$limit = $this->request->get('size', config('apiadmin.ADMIN_LIST_DEFAULT'));
|
||||
$start = $this->request->get('page', 1);
|
||||
$keywords = $this->request->get('keywords', '');
|
||||
$type = $this->request->get('type', '');
|
||||
$status = $this->request->get('status', '');
|
||||
|
||||
$obj = new AdminList();
|
||||
if (strlen($status)) {
|
||||
$obj = $obj->where('status', $status);
|
||||
}
|
||||
if ($type) {
|
||||
switch ($type) {
|
||||
case 1:
|
||||
$obj = $obj->where('hash', $keywords);
|
||||
break;
|
||||
case 2:
|
||||
$obj = $obj->whereLike('info', "%{$keywords}%");
|
||||
break;
|
||||
case 3:
|
||||
$obj = $obj->whereLike('api_class', "%{$keywords}%");
|
||||
break;
|
||||
}
|
||||
}
|
||||
$listObj = $obj->order('id', 'DESC')->paginate(['page' => $start, 'list_rows' => $limit])->toArray();
|
||||
|
||||
return $this->buildSuccess([
|
||||
'list' => $listObj['data'],
|
||||
'count' => $listObj['total']
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取接口唯一标识
|
||||
* @return Response
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function getHash(): Response {
|
||||
$res['hash'] = uniqid();
|
||||
|
||||
return $this->buildSuccess($res);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增接口
|
||||
* @return Response
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function add(): Response {
|
||||
$postData = $this->request->post();
|
||||
if (!preg_match("/^[A-Za-z0-9_\/]+$/", $postData['api_class'])) {
|
||||
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '真实类名只允许填写字母,数字和/');
|
||||
}
|
||||
|
||||
$res = AdminList::create($postData);
|
||||
if ($res === false) {
|
||||
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
|
||||
}
|
||||
|
||||
return $this->buildSuccess();
|
||||
}
|
||||
|
||||
/**
|
||||
* 接口状态编辑
|
||||
* @return Response
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function changeStatus(): Response {
|
||||
$hash = $this->request->get('hash');
|
||||
$status = $this->request->get('status');
|
||||
$res = AdminList::update([
|
||||
'status' => $status
|
||||
], [
|
||||
'hash' => $hash
|
||||
]);
|
||||
if ($res === false) {
|
||||
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
|
||||
}
|
||||
cache('ApiInfo:' . $hash, null);
|
||||
|
||||
return $this->buildSuccess();
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑接口
|
||||
* @return Response
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function edit(): Response {
|
||||
$postData = $this->request->post();
|
||||
if (!preg_match("/^[A-Za-z0-9_\/]+$/", $postData['api_class'])) {
|
||||
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '真实类名只允许填写字母,数字和/');
|
||||
}
|
||||
|
||||
$res = AdminList::update($postData);
|
||||
if ($res === false) {
|
||||
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
|
||||
}
|
||||
cache('ApiInfo:' . $postData['hash'], null);
|
||||
|
||||
return $this->buildSuccess();
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除接口
|
||||
* @return Response
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function del(): Response {
|
||||
$hash = $this->request->get('hash');
|
||||
if (!$hash) {
|
||||
return $this->buildFailed(ReturnCode::EMPTY_PARAMS, '缺少必要参数');
|
||||
}
|
||||
|
||||
$hashRule = (new AdminApp())->whereLike('app_api', "%$hash%")->select();
|
||||
if ($hashRule) {
|
||||
$oldInfo = (new AdminList())->where('hash', $hash)->find();
|
||||
foreach ($hashRule as $rule) {
|
||||
$appApiArr = explode(',', $rule->app_api);
|
||||
$appApiIndex = array_search($hash, $appApiArr);
|
||||
array_splice($appApiArr, $appApiIndex, 1);
|
||||
$rule->app_api = implode(',', $appApiArr);
|
||||
|
||||
$appApiShowArrOld = json_decode($rule->app_api_show, true);
|
||||
$appApiShowArr = $appApiShowArrOld[$oldInfo->groupHash];
|
||||
$appApiShowIndex = array_search($hash, $appApiShowArr);
|
||||
array_splice($appApiShowArr, $appApiShowIndex, 1);
|
||||
$appApiShowArrOld[$oldInfo->groupHash] = $appApiShowArr;
|
||||
$rule->app_api_show = json_encode($appApiShowArrOld);
|
||||
|
||||
$rule->save();
|
||||
}
|
||||
}
|
||||
|
||||
AdminList::destroy(['hash' => $hash]);
|
||||
AdminFields::destroy(['hash' => $hash]);
|
||||
|
||||
cache('ApiInfo:' . $hash, null);
|
||||
|
||||
return $this->buildSuccess();
|
||||
}
|
||||
|
||||
/**
|
||||
* 刷新接口路由
|
||||
* @return Response
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function refresh(): Response {
|
||||
$rootPath = Env::get('root_path');
|
||||
$apiRoutePath = $rootPath . 'route/apiRoute.php';
|
||||
$tplPath = $rootPath . 'application/install/apiRoute.tpl';
|
||||
$methodArr = ['*', 'POST', 'GET'];
|
||||
|
||||
$tplOriginStr = file_get_contents($tplPath);
|
||||
$listInfo = (new AdminList())->where('status', 1)->select();
|
||||
$tplStr = [];
|
||||
foreach ($listInfo as $value) {
|
||||
if ($value['hash_type'] === 1) {
|
||||
array_push($tplStr, 'Route::rule(\'' . addslashes($value->api_class) . '\',\'api/' . addslashes($value->api_class) . '\', \'' . $methodArr[$value->method] . '\')->middleware([\'ApiAuth\', \'ApiPermission\', \'RequestFilter\', \'ApiLog\']);');
|
||||
} else {
|
||||
array_push($tplStr, 'Route::rule(\'' . addslashes($value->hash) . '\',\'api/' . addslashes($value->api_class) . '\', \'' . $methodArr[$value->method] . '\')->middleware([\'ApiAuth\', \'ApiPermission\', \'RequestFilter\', \'ApiLog\']);');
|
||||
}
|
||||
}
|
||||
$tplOriginStr = str_replace(['{$API_RULE}'], [implode($tplStr, PHP_EOL . ' ')], $tplOriginStr);
|
||||
|
||||
file_put_contents($apiRoutePath, $tplOriginStr);
|
||||
|
||||
return $this->buildSuccess();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user