error(mb_convert_encoding($e->getMessage(), 'UTF-8', 'UTF-8,GBK,GB2312,BIG5')); } $this->auth = Auth::instance(); $routePath = $this->app->request->controllerPath . '/' . $this->request->action(true); $token = $this->request->server('HTTP_BATOKEN', $this->request->request('batoken', Cookie::get('batoken') ?: false)); if (!action_in_arr($this->noNeedLogin)) { $this->auth->init($token); if (!$this->auth->isLogin()) { $this->error(__('Please login first'), [ 'type' => $this->auth::NEED_LOGIN ], $this->auth::LOGIN_RESPONSE_CODE); } if (!action_in_arr($this->noNeedPermission)) { if (!$this->auth->check($routePath)) { $this->error(__('You have no permission'), [], 401); } } } elseif ($token) { try { $this->auth->init($token); } catch (HttpResponseException) { } } // 管理员验权和登录标签位 Event::trigger('backendInit', $this->auth); } /** * 构建查询参数 * @throws Throwable */ public function queryBuilder(): array { if (empty($this->model)) { return []; } $pk = $this->model->getPk(); $quickSearch = $this->request->get("quickSearch/s", ''); $limit = $this->request->get("limit/d", 10); $order = $this->request->get("order/s", ''); $search = $this->request->get("search/a", []); $initKey = $this->request->get("initKey/s", $pk); $initValue = $this->request->get("initValue", ''); $initOperator = $this->request->get("initOperator/s", 'in'); $where = []; $modelTable = strtolower($this->model->getTable()); $alias[$modelTable] = parse_name(basename(str_replace('\\', '/', get_class($this->model)))); $mainTableAlias = $alias[$modelTable] . '.'; // 快速搜索 if ($quickSearch) { $quickSearchArr = is_array($this->quickSearchField) ? $this->quickSearchField : explode(',', $this->quickSearchField); foreach ($quickSearchArr as $k => $v) { $quickSearchArr[$k] = str_contains($v, '.') ? $v : $mainTableAlias . $v; } $where[] = [implode("|", $quickSearchArr), "LIKE", '%' . str_replace('%', '\%', $quickSearch) . '%']; } if ($initValue) { $where[] = [$initKey, $initOperator, $initValue]; $limit = 999999; } // 排序 if ($order) { $order = explode(',', $order); if (!empty($order[0]) && !empty($order[1]) && ($order[1] == 'asc' || $order[1] == 'desc')) { $order = [$order[0] => $order[1]]; } } else { if (is_array($this->defaultSortField)) { $order = $this->defaultSortField; } else { $order = explode(',', $this->defaultSortField); if (!empty($order[0]) && !empty($order[1])) { $order = [$order[0] => $order[1]]; } else { $order = [$pk => 'desc']; } } } // 通用搜索组装 foreach ($search as $field) { if (!is_array($field) || !isset($field['operator']) || !isset($field['field']) || !isset($field['val'])) { continue; } $field['operator'] = $this->getOperatorByAlias($field['operator']); $fieldName = str_contains($field['field'], '.') ? $field['field'] : $mainTableAlias . $field['field']; // 日期时间 if (isset($field['render']) && $field['render'] == 'datetime') { if ($field['operator'] == 'RANGE') { $datetimeArr = explode(',', $field['val']); if (!isset($datetimeArr[1])) { continue; } $datetimeArr = array_filter(array_map("strtotime", $datetimeArr)); $where[] = [$fieldName, str_replace('RANGE', 'BETWEEN', $field['operator']), $datetimeArr]; continue; } $where[] = [$fieldName, '=', strtotime($field['val'])]; continue; } // 范围查询 if ($field['operator'] == 'RANGE' || $field['operator'] == 'NOT RANGE') { $arr = explode(',', $field['val']); // 重新确定操作符 if (!isset($arr[0]) || $arr[0] === '') { $operator = $field['operator'] == 'RANGE' ? '<=' : '>'; $arr = $arr[1]; } elseif (!isset($arr[1]) || $arr[1] === '') { $operator = $field['operator'] == 'RANGE' ? '>=' : '<'; $arr = $arr[0]; } else { $operator = str_replace('RANGE', 'BETWEEN', $field['operator']); } $where[] = [$fieldName, $operator, $arr]; continue; } switch ($field['operator']) { case '=': case '<>': $where[] = [$fieldName, $field['operator'], (string)$field['val']]; break; case 'LIKE': case 'NOT LIKE': $where[] = [$fieldName, $field['operator'], '%' . str_replace('%', '\%', $field['val']) . '%']; break; case '>': case '>=': case '<': case '<=': $where[] = [$fieldName, $field['operator'], intval($field['val'])]; break; case 'FIND_IN_SET': if (is_array($field['val'])) { foreach ($field['val'] as $val) { $where[] = [$fieldName, 'find in set', $val]; } } else { $where[] = [$fieldName, 'find in set', $field['val']]; } break; case 'IN': case 'NOT IN': $where[] = [$fieldName, $field['operator'], is_array($field['val']) ? $field['val'] : explode(',', $field['val'])]; break; case 'NULL': case 'NOT NULL': $where[] = [$fieldName, strtolower($field['operator']), '']; break; } } // 数据权限 $dataLimitAdminIds = $this->getDataLimitAdminIds(); if ($dataLimitAdminIds) { $where[] = [$mainTableAlias . $this->dataLimitField, 'in', $dataLimitAdminIds]; } return [$where, $alias, $limit, $order]; } /** * 数据权限控制-获取有权限访问的管理员Ids * @throws Throwable */ protected function getDataLimitAdminIds(): array { if (!$this->dataLimit || $this->auth->isSuperAdmin()) { return []; } $adminIds = []; if ($this->dataLimit == 'parent') { // 取得当前管理员的下级分组们 $parentGroups = $this->auth->getAdminChildGroups(); if ($parentGroups) { // 取得分组内的所有管理员 $adminIds = $this->auth->getGroupAdmins($parentGroups); } } elseif (is_numeric($this->dataLimit) && $this->dataLimit > 0) { // 在组内,可查看所有,不在组内,可查看自己的 $adminIds = $this->auth->getGroupAdmins([$this->dataLimit]); return in_array($this->auth->id, $adminIds) ? [] : [$this->auth->id]; } elseif ($this->dataLimit == 'allAuth' || $this->dataLimit == 'allAuthAndOthers') { // 取得拥有他所有权限的分组 $allAuthGroups = $this->auth->getAllAuthGroups($this->dataLimit); // 取得分组内的所有管理员 $adminIds = $this->auth->getGroupAdmins($allAuthGroups); } $adminIds[] = $this->auth->id; return array_unique($adminIds); } /** * 从别名获取原始的逻辑运算符 * @param string $operator 逻辑运算符别名 * @return string 原始的逻辑运算符,无别名则原样返回 */ protected function getOperatorByAlias(string $operator): string { $alias = [ 'ne' => '<>', 'eq' => '=', 'gt' => '>', 'egt' => '>=', 'lt' => '<', 'elt' => '<=', ]; return $alias[$operator] ?? $operator; } }