mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
modified 去除原先的wiki代码
This commit is contained in:
parent
616de4ffdb
commit
372a8109ec
46
application/http/middleware/WikiAuth.php
Normal file
46
application/http/middleware/WikiAuth.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
namespace app\http\middleware;
|
||||
|
||||
use app\util\ReturnCode;
|
||||
|
||||
class WikiAuth {
|
||||
|
||||
/**
|
||||
* ApiAuth鉴权
|
||||
* @param \think\facade\Request $request
|
||||
* @param \Closure $next
|
||||
* @return mixed|\think\response\Json
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function handle($request, \Closure $next) {
|
||||
$header = config('apiadmin.CROSS_DOMAIN');
|
||||
$ApiAuth = $request->header('apiAuth', '');
|
||||
if ($ApiAuth) {
|
||||
$userInfo = cache('Login:' . $ApiAuth);
|
||||
if (!$userInfo) {
|
||||
$userInfo = cache('WikiLogin:' . $ApiAuth);
|
||||
} else {
|
||||
$userInfo = json_decode($userInfo, true);
|
||||
$userInfo['app_id'] = -1;
|
||||
}
|
||||
if (!$userInfo || !isset($userInfo['id'])) {
|
||||
return json([
|
||||
'code' => ReturnCode::AUTH_ERROR,
|
||||
'msg' => 'ApiAuth不匹配',
|
||||
'data' => []
|
||||
])->header($header);
|
||||
} else {
|
||||
$request->API_WIKI_USER_INFO = $userInfo;
|
||||
}
|
||||
|
||||
return $next($request);
|
||||
} else {
|
||||
return json([
|
||||
'code' => ReturnCode::AUTH_ERROR,
|
||||
'msg' => '缺少ApiAuth',
|
||||
'data' => []
|
||||
])->header($header);
|
||||
}
|
||||
}
|
||||
}
|
@ -7,7 +7,13 @@
|
||||
namespace app\wiki\controller;
|
||||
|
||||
|
||||
use app\model\AdminApp;
|
||||
use app\model\AdminFields;
|
||||
use app\model\AdminGroup;
|
||||
use app\model\AdminList;
|
||||
use app\util\DataType;
|
||||
use app\util\ReturnCode;
|
||||
use app\util\Tools;
|
||||
|
||||
class Api extends Base {
|
||||
|
||||
@ -56,4 +62,104 @@ class Api extends Base {
|
||||
return $this->buildSuccess($result);
|
||||
}
|
||||
|
||||
public function login() {
|
||||
$appId = $this->request->post('username');
|
||||
$appSecret = $this->request->post('password');
|
||||
|
||||
$appInfo = AdminApp::get(['app_id' => $appId, 'app_secret' => $appSecret]);
|
||||
if (!empty($appInfo)) {
|
||||
if ($appInfo->app_status) {
|
||||
//保存用户信息和登录凭证
|
||||
$appInfo = $appInfo->toArray();
|
||||
|
||||
$apiAuth = md5(uniqid() . time());
|
||||
cache('WikiLogin:' . $apiAuth, $appInfo, config('apiadmin.ONLINE_TIME'));
|
||||
cache('WikiLogin:' . $appInfo['id'], $apiAuth, config('apiadmin.ONLINE_TIME'));
|
||||
$appInfo['apiAuth'] = $apiAuth;
|
||||
|
||||
return $this->buildSuccess($appInfo, '登录成功');
|
||||
} else {
|
||||
return $this->buildFailed(ReturnCode::LOGIN_ERROR, '当前应用已被封禁,请联系管理员');
|
||||
}
|
||||
} else {
|
||||
return $this->buildFailed(ReturnCode::LOGIN_ERROR, 'AppId或AppSecret错误');
|
||||
}
|
||||
}
|
||||
|
||||
public function groupList() {
|
||||
$groupInfo = AdminGroup::all();
|
||||
$groupInfo = Tools::buildArrFromObj($groupInfo, 'hash');
|
||||
$apiInfo = AdminList::all();
|
||||
$apiInfo = Tools::buildArrFromObj($apiInfo, 'hash');
|
||||
|
||||
$app_api_show = json_decode($this->appInfo['app_api_show'], true);
|
||||
|
||||
$listInfo = [];
|
||||
foreach ($app_api_show as $key => $item) {
|
||||
$_listInfo = $groupInfo[$key];
|
||||
foreach ($item as $apiItem) {
|
||||
$_listInfo['api_info'][] = $apiInfo[$apiItem];
|
||||
}
|
||||
|
||||
$listInfo[] = $_listInfo;
|
||||
}
|
||||
|
||||
return $this->buildSuccess($listInfo);
|
||||
}
|
||||
|
||||
public function detail() {
|
||||
$groupHash = $this->request->route('groupHash');
|
||||
$hash = $this->request->route('hash', '');
|
||||
$this->appInfo['app_api_show'] = json_decode($this->appInfo['app_api_show'], true);
|
||||
if (!isset($this->appInfo['app_api_show'][$groupHash]) || empty($this->appInfo['app_api_show'][$groupHash])) {
|
||||
$this->error('请求非法', url('/wiki/index'));
|
||||
}
|
||||
|
||||
if (!$hash) {
|
||||
$hash = $this->appInfo['app_api_show'][$groupHash][0];
|
||||
} else {
|
||||
if (!in_array($hash, $this->appInfo['app_api_show'][$groupHash])) {
|
||||
$this->error('请求非法', url('/wiki/index'));
|
||||
}
|
||||
}
|
||||
|
||||
$apiList = (new AdminList())->whereIn('hash', $this->appInfo['app_api_show'][$groupHash])->where(['group_hash' => $groupHash])->select();
|
||||
$apiList = Tools::buildArrFromObj($apiList);
|
||||
$apiList = Tools::buildArrByNewKey($apiList, 'hash');
|
||||
|
||||
if (!$hash) {
|
||||
$hash = $this->appInfo['app_api_show'][$groupHash][0];
|
||||
}
|
||||
$detail = $apiList[$hash];
|
||||
|
||||
$request = AdminFields::all(['hash' => $hash, 'type' => 0]);
|
||||
$response = AdminFields::all(['hash' => $hash, 'type' => 1]);
|
||||
$dataType = array(
|
||||
DataType::TYPE_INTEGER => 'Integer',
|
||||
DataType::TYPE_STRING => 'String',
|
||||
DataType::TYPE_BOOLEAN => 'Boolean',
|
||||
DataType::TYPE_ENUM => 'Enum',
|
||||
DataType::TYPE_FLOAT => 'Float',
|
||||
DataType::TYPE_FILE => 'File',
|
||||
DataType::TYPE_ARRAY => 'Array',
|
||||
DataType::TYPE_OBJECT => 'Object',
|
||||
DataType::TYPE_MOBILE => 'Mobile'
|
||||
);
|
||||
|
||||
$groupInfo = AdminGroup::get(['hash' => $groupHash]);
|
||||
$groupInfo->hot = $groupInfo->hot + 1;
|
||||
$groupInfo->save();
|
||||
|
||||
return view('', [
|
||||
'groupInfo' => $groupInfo->toArray(),
|
||||
'request' => $request,
|
||||
'response' => $response,
|
||||
'dataType' => $dataType,
|
||||
'apiList' => $apiList,
|
||||
'detail' => $detail,
|
||||
'hash' => $hash,
|
||||
'groupHash' => $groupHash
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -9,25 +9,15 @@ namespace app\wiki\controller;
|
||||
|
||||
|
||||
use app\util\ReturnCode;
|
||||
use think\facade\Config;
|
||||
use think\Controller;
|
||||
use think\exception\HttpResponseException;
|
||||
use think\facade\Request;
|
||||
use think\facade\Response;
|
||||
use think\facade\View as ViewTemplate;
|
||||
use think\facade\Url;
|
||||
|
||||
class Base extends Controller {
|
||||
|
||||
protected $appInfo;
|
||||
|
||||
public function checkLogin() {
|
||||
$appInfo = session('app_info');
|
||||
if ($appInfo) {
|
||||
$this->appInfo = json_decode($appInfo, true);
|
||||
} else {
|
||||
$this->redirect(url('/wiki/login'));
|
||||
}
|
||||
public function __construct() {
|
||||
parent::__construct();
|
||||
$this->appInfo = $this->request->API_WIKI_USER_INFO;
|
||||
}
|
||||
|
||||
public function buildSuccess($data, $msg = '操作成功', $code = ReturnCode::SUCCESS) {
|
||||
@ -50,62 +40,4 @@ class Base extends Controller {
|
||||
return json($return);
|
||||
}
|
||||
|
||||
public function error($msg = '', $url = null, $data = '', $wait = 3, array $header = []) {
|
||||
if (is_null($url)) {
|
||||
$url = Request::instance()->isAjax() ? '' : 'javascript:history.back(-1);';
|
||||
} elseif ('' !== $url && !strpos($url, '://') && 0 !== strpos($url, '/')) {
|
||||
$url = Url::build($url);
|
||||
}
|
||||
|
||||
$type = 'html';
|
||||
$result = [
|
||||
'code' => 0,
|
||||
'msg' => $msg,
|
||||
'data' => $data,
|
||||
'url' => $url,
|
||||
'wait' => $wait,
|
||||
];
|
||||
|
||||
if ('html' == strtolower($type)) {
|
||||
$template = Config::get('template');
|
||||
$view = Config::get('view_replace_str');
|
||||
|
||||
$result = ViewTemplate::instance($template, $view)
|
||||
->fetch(Config::get('dispatch_error_tmpl'), $result);
|
||||
}
|
||||
|
||||
$response = Response::create($result, $type)->header($header);
|
||||
|
||||
throw new HttpResponseException($response);
|
||||
}
|
||||
|
||||
public function success($msg = '', $url = null, $data = '', $wait = 3, array $header = []) {
|
||||
if (is_null($url) && !is_null(Request::instance()->server('HTTP_REFERER'))) {
|
||||
$url = Request::instance()->server('HTTP_REFERER');
|
||||
} elseif ('' !== $url && !strpos($url, '://') && 0 !== strpos($url, '/')) {
|
||||
$url = Url::build($url);
|
||||
}
|
||||
|
||||
$type = 'html';
|
||||
$result = [
|
||||
'code' => 1,
|
||||
'msg' => $msg,
|
||||
'data' => $data,
|
||||
'url' => $url,
|
||||
'wait' => $wait,
|
||||
];
|
||||
|
||||
if ('html' == strtolower($type)) {
|
||||
$template = Config::get('template');
|
||||
$view = Config::get('view_replace_str');
|
||||
|
||||
$result = ViewTemplate::instance($template, $view)
|
||||
->fetch(Config::get('dispatch_success_tmpl'), $result);
|
||||
}
|
||||
|
||||
$response = Response::create($result, $type)->header($header);
|
||||
|
||||
throw new HttpResponseException($response);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,178 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @since 2017/07/27 创建
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
|
||||
namespace app\wiki\controller;
|
||||
|
||||
|
||||
use app\model\AdminApp;
|
||||
use app\model\AdminFields;
|
||||
use app\model\AdminGroup;
|
||||
use app\model\AdminList;
|
||||
use app\util\DataType;
|
||||
use app\util\ReturnCode;
|
||||
use app\util\Tools;
|
||||
|
||||
class Index extends Base {
|
||||
|
||||
/**
|
||||
* 获取应用列表
|
||||
* @return \think\response\View
|
||||
* @throws \think\exception\DbException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function index() {
|
||||
$this->checkLogin();
|
||||
|
||||
$groupInfo = AdminGroup::all();
|
||||
$groupInfo = Tools::buildArrFromObj($groupInfo);
|
||||
$groupInfo = Tools::buildArrByNewKey($groupInfo, 'hash');
|
||||
|
||||
$this->appInfo = AdminApp::get(['app_id' => $this->appInfo['app_id']]);
|
||||
$this->appInfo['app_api_show'] = json_decode($this->appInfo['app_api_show'], true);
|
||||
|
||||
return view('', [
|
||||
'groupInfo' => $groupInfo,
|
||||
'appInfo' => $this->appInfo
|
||||
]);
|
||||
}
|
||||
|
||||
public function detail() {
|
||||
$this->checkLogin();
|
||||
|
||||
$groupHash = $this->request->route('groupHash');
|
||||
$hash = $this->request->route('hash', '');
|
||||
$this->appInfo['app_api_show'] = json_decode($this->appInfo['app_api_show'], true);
|
||||
if (!isset($this->appInfo['app_api_show'][$groupHash]) || empty($this->appInfo['app_api_show'][$groupHash])) {
|
||||
$this->error('请求非法', url('/wiki/index'));
|
||||
}
|
||||
|
||||
if (!$hash) {
|
||||
$hash = $this->appInfo['app_api_show'][$groupHash][0];
|
||||
} else {
|
||||
if (!in_array($hash, $this->appInfo['app_api_show'][$groupHash])) {
|
||||
$this->error('请求非法', url('/wiki/index'));
|
||||
}
|
||||
}
|
||||
|
||||
$apiList = (new AdminList())->whereIn('hash', $this->appInfo['app_api_show'][$groupHash])->where(['group_hash' => $groupHash])->select();
|
||||
$apiList = Tools::buildArrFromObj($apiList);
|
||||
$apiList = Tools::buildArrByNewKey($apiList, 'hash');
|
||||
|
||||
if (!$hash) {
|
||||
$hash = $this->appInfo['app_api_show'][$groupHash][0];
|
||||
}
|
||||
$detail = $apiList[$hash];
|
||||
|
||||
$request = AdminFields::all(['hash' => $hash, 'type' => 0]);
|
||||
$response = AdminFields::all(['hash' => $hash, 'type' => 1]);
|
||||
$dataType = array(
|
||||
DataType::TYPE_INTEGER => 'Integer',
|
||||
DataType::TYPE_STRING => 'String',
|
||||
DataType::TYPE_BOOLEAN => 'Boolean',
|
||||
DataType::TYPE_ENUM => 'Enum',
|
||||
DataType::TYPE_FLOAT => 'Float',
|
||||
DataType::TYPE_FILE => 'File',
|
||||
DataType::TYPE_ARRAY => 'Array',
|
||||
DataType::TYPE_OBJECT => 'Object',
|
||||
DataType::TYPE_MOBILE => 'Mobile'
|
||||
);
|
||||
|
||||
$groupInfo = AdminGroup::get(['hash' => $groupHash]);
|
||||
$groupInfo->hot = $groupInfo->hot + 1;
|
||||
$groupInfo->save();
|
||||
|
||||
return view('', [
|
||||
'groupInfo' => $groupInfo->toArray(),
|
||||
'request' => $request,
|
||||
'response' => $response,
|
||||
'dataType' => $dataType,
|
||||
'apiList' => $apiList,
|
||||
'detail' => $detail,
|
||||
'hash' => $hash,
|
||||
'groupHash' => $groupHash
|
||||
]);
|
||||
}
|
||||
|
||||
public function calculation() {
|
||||
$this->checkLogin();
|
||||
|
||||
return view();
|
||||
}
|
||||
|
||||
public function errorCode() {
|
||||
$this->checkLogin();
|
||||
$codeArr = ReturnCode::getConstants();
|
||||
$errorInfo = array(
|
||||
ReturnCode::SUCCESS => '请求成功',
|
||||
ReturnCode::INVALID => '非法操作',
|
||||
ReturnCode::DB_SAVE_ERROR => '数据存储失败',
|
||||
ReturnCode::DB_READ_ERROR => '数据读取失败',
|
||||
ReturnCode::CACHE_SAVE_ERROR => '缓存存储失败',
|
||||
ReturnCode::CACHE_READ_ERROR => '缓存读取失败',
|
||||
ReturnCode::FILE_SAVE_ERROR => '文件读取失败',
|
||||
ReturnCode::LOGIN_ERROR => '登录失败',
|
||||
ReturnCode::NOT_EXISTS => '不存在',
|
||||
ReturnCode::JSON_PARSE_FAIL => 'JSON数据格式错误',
|
||||
ReturnCode::TYPE_ERROR => '类型错误',
|
||||
ReturnCode::NUMBER_MATCH_ERROR => '数字匹配失败',
|
||||
ReturnCode::EMPTY_PARAMS => '丢失必要数据',
|
||||
ReturnCode::DATA_EXISTS => '数据已经存在',
|
||||
ReturnCode::AUTH_ERROR => '权限认证失败',
|
||||
ReturnCode::OTHER_LOGIN => '别的终端登录',
|
||||
ReturnCode::VERSION_INVALID => 'API版本非法',
|
||||
ReturnCode::CURL_ERROR => 'CURL操作异常',
|
||||
ReturnCode::RECORD_NOT_FOUND => '记录未找到',
|
||||
ReturnCode::DELETE_FAILED => '删除失败',
|
||||
ReturnCode::ADD_FAILED => '添加记录失败',
|
||||
ReturnCode::UPDATE_FAILED => '更新记录失败',
|
||||
ReturnCode::PARAM_INVALID => '数据类型非法',
|
||||
ReturnCode::ACCESS_TOKEN_TIMEOUT => '身份令牌过期',
|
||||
ReturnCode::SESSION_TIMEOUT => 'SESSION过期',
|
||||
ReturnCode::UNKNOWN => '未知错误',
|
||||
ReturnCode::EXCEPTION => '系统异常',
|
||||
);
|
||||
|
||||
return view('', [
|
||||
'errorInfo' => $errorInfo,
|
||||
'codeArr' => $codeArr
|
||||
]);
|
||||
}
|
||||
|
||||
public function login() {
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理wiki登录
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\DbException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function doLogin() {
|
||||
$appId = $this->request->post('appId');
|
||||
$appSecret = $this->request->post('appSecret');
|
||||
|
||||
$appInfo = AdminApp::get(['app_id' => $appId, 'app_secret' => $appSecret]);
|
||||
if (!empty($appInfo)) {
|
||||
if ($appInfo->app_status) {
|
||||
//保存用户信息和登录凭证
|
||||
session('app_info', json_encode($appInfo));
|
||||
$this->success('登录成功', url('/wiki/index'));
|
||||
} else {
|
||||
$this->error('当前应用已被封禁,请联系管理员');
|
||||
}
|
||||
} else {
|
||||
$this->error('AppId或AppSecret错误');
|
||||
}
|
||||
}
|
||||
|
||||
public function logout() {
|
||||
session('app_info', null);
|
||||
$this->success('退出成功', url('/wiki/login'));
|
||||
}
|
||||
|
||||
}
|
@ -1,44 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{:config('apiadmin.APP_NAME')} - 算法说明</title>
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.11/semantic.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<br />
|
||||
<div class="ui text container" style="max-width: none !important;">
|
||||
<div class="ui floating message">
|
||||
<h1 class="ui header">{:config('apiadmin.APP_NAME')} - 算法说明 </h1>
|
||||
<a href="{:url('/wiki/index')}">
|
||||
<button class="ui green button" style="margin-top: 15px">返回接口文档</button>
|
||||
</a>
|
||||
<div class="ui red message">
|
||||
<strong>特别说明:</strong> 此算法文档会根据业务发展需求发生变更,为了服务的稳定运行,请及时关注此文档!
|
||||
</div>
|
||||
<div class="ui piled segment">
|
||||
<div class="ui horizontal divider">简介</div>
|
||||
<p>当前算法主要服务于获取身份令牌(AccessToken)所进行的身份认证秘钥(signature)的计算。在请求高级接口的时候,系统会验证应用的合法性,也就是验证AccessToken。所以AccessToken是请求API的必要参数。</p>
|
||||
<p>在请求获取AccessToken的接口时候,服务器会对用户合法性(signature)进行核验,具体的接口请求字段,请参看具体的接口文档。</p>
|
||||
<div class="ui horizontal divider">一、获取app_id和app_secret</div>
|
||||
<p>目前获取应用ID和应用秘钥是由系统管理员发放,如果你还没有请联系管理员。<b>请注意:app_secret非常重要请妥善保管</b></p>
|
||||
<div class="ui horizontal divider">二、准备加密对象,并且根据字段名降序排序</div>
|
||||
<pre>//排序好后应当是如下所示的数据
|
||||
{
|
||||
"app_id":"服务器颁发的应用ID",
|
||||
"app_secret":"服务器颁发的应用秘钥", //请注意,此字段只是在计算加密串的时候在被加入,API请求请勿传递此字段值
|
||||
"device_id":"设备唯一ID",
|
||||
"rand_str":"随机字符串",
|
||||
"timestamp":当前系统时间戳
|
||||
}</pre>
|
||||
<div class="ui horizontal divider">三、生成原始串</div>
|
||||
<p>将上面的数据构建成HTTP查询字符串,如下所示:</p>
|
||||
<p>app_id=服务器颁发的应用ID&app_secret=服务器颁发的应用秘钥&device_id=设备唯一ID&rand_str=随机字符串&timestamp=当前系统时间戳</p>
|
||||
<div class="ui horizontal divider">四、计算秘钥</div>
|
||||
<p>将第三步生成的字符串进行哈希计算(md5)获得最终身份认证秘钥。</p>
|
||||
</div>
|
||||
<p>© Powered By <a href="http://www.apiadmin.org/" target="_blank">{:config('apiadmin.APP_NAME')} {:config('apiadmin.APP_VERSION')}</a> <p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,183 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{:config('apiadmin.APP_NAME')} - 在线接口列表</title>
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.11/semantic.min.css" rel="stylesheet">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.11/components/tab.min.js"></script>
|
||||
<link rel="stylesheet" href="/static/jsonFormater/jsonFormater.css">
|
||||
<script type="text/javascript" src="/static/jsonFormater/jsonFormater.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<br />
|
||||
<div class="ui container">
|
||||
<div class="ui segment">
|
||||
<div class="ui items">
|
||||
<div class="item">
|
||||
<div class="image">
|
||||
<img src="{$groupInfo['image'] ? $groupInfo['image'] : '/static/defaultImg.jpg'}">
|
||||
</div>
|
||||
<div class="content">
|
||||
<span class="header">{$groupInfo['name']}</span>
|
||||
<div class="description">
|
||||
<p>{$groupInfo['description']}</p>
|
||||
</div>
|
||||
<div class="extra">
|
||||
额外的细节
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{php}$http_type = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') || (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')) ? 'https://' : 'http://';{/php}
|
||||
<div class="ui teal big message" id="msg">接口访问地址:{$http_type}{$_SERVER['HTTP_HOST']}/api/{$hash}</div>
|
||||
<div class="ui grid">
|
||||
<div class="four wide column">
|
||||
<div class="ui vertical menu" style="width: 100%;overflow: auto;">
|
||||
{volist name="apiList" id="vo"}
|
||||
<a class="{if condition="$hash == $vo['hash']"}active{/if} teal item" href="{:url('/wiki/detail/'.$groupHash.'/'.$vo["hash"])}">
|
||||
{:mb_substr($vo['info'], 0, 11)}...
|
||||
<div class="ui {if condition="$hash == $vo['hash']"}teal{/if} label"> > </div>
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
</div>
|
||||
<div class="twelve wide column">
|
||||
<div class="ui floating message" id="detail" style="overflow: auto;">
|
||||
<h2 class='ui header'>接口唯一标识:<a target="_blank" href="{$http_type}{$_SERVER['HTTP_HOST']}/api/{$hash}">{$hash}</a>{if condition="$detail['is_test'] == 1"}({$detail['api_class']}){/if}</h2><br />
|
||||
<div class="ui raised segment">
|
||||
<span class="ui red ribbon large label">接口说明</span>
|
||||
{if condition="$detail['status'] eq 0 "}
|
||||
<span class='ui red label large'><i class="usb icon"></i>禁用</span>
|
||||
{else /}
|
||||
{if condition="$detail['is_test'] eq 1 "}
|
||||
<span class='ui teal label large'><i class="usb icon"></i>测试</span>
|
||||
{else /}
|
||||
<span class='ui green label large'><i class="usb icon"></i>启用</span>
|
||||
{/if}
|
||||
{/if}
|
||||
<span class="ui teal label large"><i class="certificate icon"></i>{:config('apiadmin.APP_VERSION')}</span>
|
||||
<span class="ui blue large label"><i class="chrome icon"></i>
|
||||
{switch name="detail['method']"}
|
||||
{case value="1" break="1"}POST{/case}
|
||||
{case value="2" break="1"}GET{/case}
|
||||
{default /}不限
|
||||
{/switch}
|
||||
</span>
|
||||
<div class="ui message">
|
||||
<p>{$detail['info']}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui pointing large blue three item menu">
|
||||
<a class="item active" data-tab="first">请求参数</a>
|
||||
<a class="item" data-tab="second">返回参数</a>
|
||||
<a class="item" data-tab="third">返回示例</a>
|
||||
</div>
|
||||
<div class="ui tab segment active" data-tab="first">
|
||||
<h3>公共请求参数</h3>
|
||||
<table class="ui orange celled striped table" >
|
||||
<thead>
|
||||
<tr><th>参数名字</th><th>类型</th><th width="96">字段状态</th><th width="70">默认值</th><th width="30%">其他</th><th>说明</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>access-token</td>
|
||||
<td>String</td>
|
||||
<td>{$detail['access_token']==1?'<span class="ui green label">复杂认证</span>':'<span class="ui red label">简易认证</span>'}</td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>APP认证秘钥【请在Header头里面传递】</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h3>请求参数</h3>
|
||||
<table class="ui red celled striped table" >
|
||||
<thead>
|
||||
<tr><th>参数名字</th><th>类型</th><th width="80">是否必须</th><th>默认值</th><th>其他</th><th>说明</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{volist name="request" id="vo"}
|
||||
<tr>
|
||||
<td>{$vo['field_name']}</td>
|
||||
<td>{$dataType[$vo['data_type']]}</td>
|
||||
<td>{$vo['is_must']==1?'<span class="ui green label">必填</span>':'<span class="ui teal label">可选</span>'}</td>
|
||||
<td>{$vo['default']}</td>
|
||||
<td>{$vo['range']}</td>
|
||||
<td>{$vo['info']}</td>
|
||||
</tr>
|
||||
{/volist}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="ui tab segment" data-tab="second">
|
||||
<h3>公共返回参数</h3>
|
||||
<table class="ui olive celled striped table" >
|
||||
<thead>
|
||||
<tr><th>返回字段</th><th>类型</th><th>说明</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>code</td>
|
||||
<td>Integer</td>
|
||||
<td>返回码,详情请参阅<a href="{:url('/errorCode')}">错误码说明</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>msg</td>
|
||||
<td>String</td>
|
||||
<td>错误描述,当请求成功时可能为空</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>debug</td>
|
||||
<td>String</td>
|
||||
<td>调试字段,如果没有调试信息会没有此字段</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h3>返回参数</h3>
|
||||
<table class="ui green celled striped table" >
|
||||
<thead>
|
||||
<tr><th>返回字段</th><th>类型</th><th>说明</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{volist name="response" id="vo"}
|
||||
<tr>
|
||||
<td>{$vo['show_name']}</td>
|
||||
<td>{$dataType[$vo['data_type']]}</td>
|
||||
<td>{$vo['info']}</td>
|
||||
</tr>
|
||||
{/volist}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="ui tab segment" data-tab="third">
|
||||
<pre id="json" style='font-family: Arial;'></pre>
|
||||
</div>
|
||||
<div class="ui blue message">
|
||||
<strong>温馨提示:</strong> 此接口参数列表根据后台代码自动生成,如有疑问请咨询后端开发
|
||||
</div>
|
||||
<p>© Powered By <a href="http://www.apiadmin.org/" target="_blank">{:config('apiadmin.APP_NAME')} {:config('apiadmin.APP_VERSION')}</a> <p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<script>
|
||||
$('.pointing.menu .item').tab();
|
||||
$(document).ready(function () {
|
||||
var s = function () {
|
||||
var options = {
|
||||
dom: '#json',
|
||||
isCollapsible: true,
|
||||
quoteKeys: true,
|
||||
tabSize: 2,
|
||||
imgCollapsed: "/static/jsonFormater/Collapsed.gif",
|
||||
imgExpanded: "/static/jsonFormater/Expanded.gif"
|
||||
};
|
||||
window.jf = new JsonFormater(options);
|
||||
jf.doFormat({:htmlspecialchars_decode($detail["return_str"])});
|
||||
}();
|
||||
});
|
||||
$('.ui .vertical').css('max-height', $('#detail').outerHeight(true));
|
||||
</script>
|
||||
</html>
|
@ -1,45 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{:config('apiadmin.APP_NAME')} - 错误码说明</title>
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.11/semantic.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<br />
|
||||
<div class="ui text container" style="max-width: none !important;">
|
||||
<div class="ui floating message">
|
||||
<h1 class="ui header">{:config('apiadmin.APP_NAME')} - 错误码说明</h1>
|
||||
<a href="{:url('/wiki/index')}">
|
||||
<button class="ui green button" style="margin-top: 15px">返回接口文档</button>
|
||||
</a>
|
||||
<table class="ui red celled striped table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th><th>英文标识</th><th>错误码</th><th>中文说明</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{volist name="codeArr" id="vo"}
|
||||
<tr>
|
||||
<td>
|
||||
{$i}
|
||||
</td>
|
||||
<td>
|
||||
{$key}
|
||||
</td>
|
||||
<td>
|
||||
<b>{$vo}</b>
|
||||
</td>
|
||||
<td>
|
||||
{$errorInfo[$vo]}
|
||||
</td>
|
||||
</tr>
|
||||
{/volist}
|
||||
</tbody>
|
||||
</table>
|
||||
<p>© Powered By <a href="http://www.apiadmin.org/" target="_blank">{:config('apiadmin.APP_NAME')} {:config('apiadmin.APP_VERSION')}</a> <p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,78 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{:config('apiadmin.APP_NAME')} - 在线接口文档</title>
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.11/semantic.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<br />
|
||||
<div class="ui text container" style="max-width: none !important;">
|
||||
<div class="ui floating message">
|
||||
<h1 class="ui header">{:config('apiadmin.APP_NAME')} - 接口文档</h1>
|
||||
<a href="{:url('/wiki/errorCode')}">
|
||||
<button class="ui red button" style="margin-top: 15px">错误码说明</button>
|
||||
</a>
|
||||
<a href="{:url('/wiki/calculation')}">
|
||||
<button class="ui orange button" style="margin-top: 15px">算法详解</button>
|
||||
</a>
|
||||
<div class="ui floating message">
|
||||
<div class="content">
|
||||
<div class="header" style="margin-bottom: 15px">接口状态说明:</div>
|
||||
<p><span class='ui teal label'>测试</span> 系统将不过滤任何字段,也不进行AccessToken的认证,但在必要的情况下会进行UserToken的认证!</p>
|
||||
<p><span class='ui blue label'>启用</span> 系统将严格过滤请求字段,并且进行全部必要认证!</p>
|
||||
<p><span class='ui red label'>禁用</span> 系统将拒绝所有请求,一般应用于危机处理!</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui cards four column">
|
||||
{volist name="appInfo['app_api_show']" id="vo"}
|
||||
{php}
|
||||
$apiLength = count($vo);
|
||||
{/php}
|
||||
{if condition="$apiLength"}
|
||||
<div class="card column">
|
||||
<a class="image" href="{:url('/wiki/detail/' . $key)}">
|
||||
<img src="{$groupInfo[$key]['image'] ? $groupInfo[$key]['image'] : '/static/defaultImg.jpg'}">
|
||||
</a>
|
||||
<div class="content">
|
||||
<a class="header" href="{:url('/wiki/detail/' . $key)}">
|
||||
{$groupInfo[$key]['name']}
|
||||
</a>
|
||||
<a class="meta" href="{:url('/wiki/detail/' . $key)}">
|
||||
<span class="group" style="font-size: 0.8em;">{$groupInfo[$key]['update_time']}</span>
|
||||
</a>
|
||||
<a class="description" style="display: block;font-size: 0.8em;" href="{:url('/wiki/detail/' . $key)}">
|
||||
{php}
|
||||
$len = mb_strlen($groupInfo[$key]['description'], 'utf8');
|
||||
if($len > 31) {
|
||||
echo mb_substr($groupInfo[$key]['description'], 0, 31, 'utf8') . ' ...';
|
||||
} else {
|
||||
echo $groupInfo[$key]['description'];
|
||||
}
|
||||
if ($groupInfo[$key]['hot'] >= 10000) {
|
||||
$hot = sprintf("%.1f", $groupInfo[$key]['hot']/10000) . '万';
|
||||
} else {
|
||||
$hot = $groupInfo[$key]['hot'];
|
||||
}
|
||||
{/php}
|
||||
</a>
|
||||
</div>
|
||||
<div class="extra content" style="font-size: 0.9em">
|
||||
<a class="right floated created" href="{:url('/wiki/detail/' . $key)}">
|
||||
<i class="fire icon"></i>
|
||||
热度{$hot}
|
||||
</a>
|
||||
<a class="friends" href="{:url('/wiki/detail/' . $key)}">
|
||||
<i class="cubes icon"></i>
|
||||
共{$apiLength}个接口
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{/volist}
|
||||
</div>
|
||||
<p>© Powered By <a href="http://www.apiadmin.org/" target="_blank">{:config('apiadmin.APP_NAME')} {:config('apiadmin.APP_VERSION')}</a> <p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,96 +0,0 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<!-- Standard Meta -->
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
||||
|
||||
<!-- Site Properties -->
|
||||
<title>{:config('apiadmin.APP_NAME')} - 在线接口文档</title>
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.11/semantic.min.css" rel="stylesheet">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.11/components/form.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.11/components/transition.min.js"></script>
|
||||
<style type="text/css">
|
||||
body {
|
||||
background-color: #DADADA;
|
||||
}
|
||||
body > .grid {
|
||||
height: 100%;
|
||||
}
|
||||
.image {
|
||||
margin-top: -100px;
|
||||
}
|
||||
.column {
|
||||
max-width: 450px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
$(document)
|
||||
.ready(function() {
|
||||
$('.ui.form')
|
||||
.form({
|
||||
fields: {
|
||||
email: {
|
||||
identifier : 'appId',
|
||||
rules: [
|
||||
{
|
||||
type : 'empty',
|
||||
prompt : 'AppId不能为空'
|
||||
}
|
||||
]
|
||||
},
|
||||
password: {
|
||||
identifier : 'appSecret',
|
||||
rules: [
|
||||
{
|
||||
type : 'empty',
|
||||
prompt : 'AppSecret不能为空'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
})
|
||||
;
|
||||
})
|
||||
;
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="ui middle aligned center aligned grid">
|
||||
<div class="column">
|
||||
<h2 class="ui teal image header">
|
||||
<div class="content">
|
||||
欢迎使用{:config('apiadmin.APP_NAME')}在线文档
|
||||
</div>
|
||||
</h2>
|
||||
<form class="ui large form" method="post" action="{:url('/wiki/doLogin')}">
|
||||
<div class="ui stacked segment">
|
||||
<div class="field">
|
||||
<div class="ui left icon input">
|
||||
<i class="user icon"></i>
|
||||
<input type="text" name="appId" placeholder="请输入您的AppId">
|
||||
</div>
|
||||
</div>
|
||||
<div class="field">
|
||||
<div class="ui left icon input">
|
||||
<i class="lock icon"></i>
|
||||
<input type="password" name="appSecret" placeholder="请输入您的AppSecret">
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui fluid large teal submit button">提 交</div>
|
||||
</div>
|
||||
<div class="ui error message"></div>
|
||||
</form>
|
||||
<div class="ui message">
|
||||
如果您没有AppId和AppSecret,请联系服务供应商获取!
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,33 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-cmn-Hans">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
|
||||
<title>ApiAdmin-微信登录</title>
|
||||
<link rel="stylesheet" href="//res.wx.qq.com/open/libs/weui/1.1.3/weui.min.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<div class="weui-msg">
|
||||
<div class="weui-msg__icon-area">
|
||||
{if condition="$code eq 1 "}
|
||||
<i class="weui-icon-success weui-icon_msg"></i>
|
||||
{else /}
|
||||
<i class="weui-icon-warn weui-icon_msg"></i>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="weui-msg__text-area">
|
||||
<h2 class="weui-msg__title">{$info}</h2>
|
||||
</div>
|
||||
<div class="weui-msg__extra-area">
|
||||
<div class="weui-footer">
|
||||
<p class="weui-footer__links">
|
||||
<a href="https://apiadmin.gitee.io/apiadmin-wiki/" class="weui-footer__link">ApiAdmin文档</a>
|
||||
</p>
|
||||
<p class="weui-footer__text">Copyright © 2016-2018 apiadmin.org</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -8,9 +8,24 @@
|
||||
use think\facade\Route;
|
||||
|
||||
Route::group('wiki', function() {
|
||||
Route::rule(
|
||||
'Api/errorCode', 'wiki/Api/errorCode', 'get'
|
||||
);
|
||||
Route::group('Api', [
|
||||
'errorCode' => [
|
||||
'wiki/Api/errorCode',
|
||||
['method' => 'get']
|
||||
],
|
||||
'groupList' => [
|
||||
'wiki/Api/groupList',
|
||||
['method' => 'get']
|
||||
],
|
||||
'login' => [
|
||||
'wiki/Api/login',
|
||||
['method' => 'post']
|
||||
],
|
||||
'detail' => [
|
||||
'wiki/Api/detail',
|
||||
['method' => 'get']
|
||||
]
|
||||
])->middleware(['WikiAuth']);
|
||||
|
||||
//MISS路由定义
|
||||
Route::miss('admin/Miss/index');
|
||||
|
Loading…
x
Reference in New Issue
Block a user