where(['name' => $name])->value('value'), true); return empty($data) ? [] : $data; } else { return data_save('SystemData', ['name' => $name, 'value' => json_encode($value, JSON_UNESCAPED_UNICODE)], 'name'); } } } if (!function_exists('_sysmsg')) { /** * 增加系统消息 * @param string $title 消息标题 * @param string $desc 消息描述 * @param string $url 访问链接 * @param string $node 权限节点 * @return boolean */ function _sysmsg($title, $desc, $url, $node) { return \app\admin\service\MessageService::add($title, $desc, $url, $node); } } if (!function_exists('_syslog')) { /** * 写入系统日志 * @param string $action 日志行为 * @param string $content 日志内容 * @return boolean */ function _syslog($action, $content) { return \app\admin\service\OplogService::write($action, $content); } } if (!function_exists('local_image')) { /** * 下载远程文件到本地 * @param string $url 远程图片地址 * @return string */ function local_image($url) { $result = \library\File::down($url); if (isset($result['url'])) { return $result['url']; } else { return $url; } } } if (!function_exists('base64_image')) { /** * base64 图片上传接口 * @param string $content * @param string $predir * @return string */ function base64_image($content, $predir = 'base64/') { try { if (preg_match('|^data:image/(.*?);base64,|i', $content)) { list($ext, $base) = explode('|||', preg_replace('|^data:image/(.*?);base64,|i', '$1|||', $content)); $info = \library\File::save($predir . md5($base) . '.' . (empty($ext) ? 'tmp' : $ext), base64_decode($base)); return $info['url']; } else { return $content; } } catch (\Exception $e) { return $content; } } } // 系统权限检查中间键 \think\facade\Middleware::add(function (\think\Request $request, \Closure $next) { // 系统消息处理 if (($code = $request->get('messagecode')) > 0) \app\admin\service\MessageService::set($code); // 节点忽略跳过 $node = \library\tools\Node::current(); foreach (\app\admin\service\AuthService::getIgnore() as $str) if (stripos($node, $str) === 0) return $next($request); // 节点权限查询 $auth = \think\Db::name('SystemNode')->cache(true, 60)->field('is_auth,is_login')->where(['node' => $node])->find(); $info = ['is_auth' => $auth['is_auth'], 'is_login' => $auth['is_auth'] ? 1 : $auth['is_login']]; // 登录状态检查 if (!empty($info['is_login']) && !\app\admin\service\AuthService::isLogin()) { $message = ['code' => 0, 'msg' => '抱歉,您还没有登录获取访问权限!', 'url' => url('@admin/login')]; return $request->isAjax() ? json($message) : redirect($message['url']); } // 访问权限检查 if (!empty($info['is_auth']) && !\app\admin\service\AuthService::checkAuthNode($node)) { return json(['code' => 0, 'msg' => '抱歉,您没有访问该模块的权限!']); } else { return $next($request); } });