*/ namespace app\admin\controller; use app\model\AdminApp; use app\model\AdminGroup; use app\model\AdminList; use app\util\ReturnCode; use app\util\Tools; class InterfaceGroup extends Base { /** * 获取接口组列表 * @return array * @throws \think\exception\DbException * @author zhaoxiang */ public function index() { $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($limit, false, ['page' => $start])->toArray(); return $this->buildSuccess([ 'list' => $listObj['data'], 'count' => $listObj['total'] ]); } /** * 获取全部有效的接口组 * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException * @author zhaoxiang */ public function getAll() { $listInfo = (new AdminGroup())->where(['status' => 1])->select(); return $this->buildSuccess([ 'list' => $listInfo ]); } /** * 接口组状态编辑 * @return array * @author zhaoxiang */ public function changeStatus() { $id = $this->request->get('id'); $status = $this->request->get('status'); $res = AdminGroup::update([ 'status' => $status ], [ 'id' => $id, 'is_official' => 0 ]); if ($res === false) { return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '操作失败'); } else { return $this->buildSuccess([]); } } /** * 添加接口组 * @return array * @author zhaoxiang */ public function add() { $postData = $this->request->post(); $res = AdminGroup::create($postData); if ($res === false) { return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '操作失败'); } else { return $this->buildSuccess([]); } } /** * 接口组编辑 * @return array * @author zhaoxiang */ public function edit() { $postData = $this->request->post(); $res = AdminGroup::get($postData['id']); if ($res['is_official'] == 1) { return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '官方数据,禁止操作'); } else { $res = AdminGroup::update($postData); } if ($res === false) { return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '操作失败'); } else { return $this->buildSuccess([]); } } /** * 接口组删除 * @return array * @throws \think\exception\DbException * @author zhaoxiang */ public function del() { $hash = $this->request->get('hash'); if (!$hash) { return $this->buildFailed(ReturnCode::EMPTY_PARAMS, '缺少必要参数'); } if ($hash === 'default') { return $this->buildFailed(ReturnCode::INVALID, '系统预留关键数据,禁止删除!'); } $res = AdminGroup::get(['hash' => $hash]); if ($res['is_official'] == 1) { return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '官方数据,禁止操作'); } AdminList::update(['group_hash' => 'default'], ['group_hash' => $hash]); $hashRule = AdminApp::all([ 'app_api_show' => ['like', "%$hash%"] ]); 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([]); } }