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('sysoplog')) { /** * 写入系统日志 * @param string $action 日志行为 * @param string $content 日志内容 * @return boolean */ function sysoplog($action, $content) { return OplogService::write($action, $content); } } if (!function_exists('local_image')) { /** * 下载远程文件到本地 * @param string $url 远程图片地址 * @return string */ function local_image($url) { $result = 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 = File::save($predir . md5($base) . '.' . (empty($ext) ? 'tmp' : $ext), base64_decode($base)); return $info['url']; } else { return $content; } } catch (\Exception $e) { return $content; } } } // 访问权限检查中间键 Middleware::add(function (Request $request, \Closure $next) { // 访问权限检查 if (NodeService::checkAuth()) { return $next($request); } else { if (NodeService::islogin()) { return json(['code' => 0, 'msg' => '抱歉,没有访问该操作的权限!']); } else { return json(['code' => 0, 'msg' => '抱歉,您还没有登录获取访问权限!', 'url' => url('@admin/login')]); } } });