mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
modified 加入后端中间件代码
This commit is contained in:
parent
d3eceaf8b0
commit
7a4dcf4e4d
@ -23,7 +23,7 @@ class Menu extends Base {
|
|||||||
public function index() {
|
public function index() {
|
||||||
$list = (new AdminMenu)->where([])->order('sort', 'ASC')->select();
|
$list = (new AdminMenu)->where([])->order('sort', 'ASC')->select();
|
||||||
$list = Tools::buildArrFromObj($list);
|
$list = Tools::buildArrFromObj($list);
|
||||||
$list = formatTree(listToTree($list));
|
$list = Tools::formatTree(Tools::listToTree($list));
|
||||||
|
|
||||||
return $this->buildSuccess([
|
return $this->buildSuccess([
|
||||||
'list' => $list
|
'list' => $list
|
||||||
|
@ -2,11 +2,10 @@
|
|||||||
|
|
||||||
namespace app\admin\controller;
|
namespace app\admin\controller;
|
||||||
use app\util\ReturnCode;
|
use app\util\ReturnCode;
|
||||||
use think\facade\Request;
|
|
||||||
|
|
||||||
class Miss extends Base {
|
class Miss extends Base {
|
||||||
public function index() {
|
public function index() {
|
||||||
if (Request::instance()->isOptions()) {
|
if ($this->request->isOptions()) {
|
||||||
return $this->buildSuccess([]);
|
return $this->buildSuccess([]);
|
||||||
} else {
|
} else {
|
||||||
return $this->buildFailed(ReturnCode::INVALID, '接口地址异常', []);
|
return $this->buildFailed(ReturnCode::INVALID, '接口地址异常', []);
|
||||||
|
@ -2,9 +2,38 @@
|
|||||||
|
|
||||||
namespace app\http\middleware;
|
namespace app\http\middleware;
|
||||||
|
|
||||||
class AdminAuth
|
use app\util\ReturnCode;
|
||||||
{
|
|
||||||
public function handle($request, \Closure $next)
|
class AdminAuth {
|
||||||
{
|
|
||||||
|
/**
|
||||||
|
* 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);
|
||||||
|
$userInfo = json_decode($userInfo, true);
|
||||||
|
if (!$userInfo || !isset($userInfo['id'])) {
|
||||||
|
return json([
|
||||||
|
'code' => ReturnCode::AUTH_ERROR,
|
||||||
|
'msg' => 'ApiAuth不匹配',
|
||||||
|
'data' => []
|
||||||
|
])->header($header);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $next($request);
|
||||||
|
} else {
|
||||||
|
return json([
|
||||||
|
'code' => ReturnCode::AUTH_ERROR,
|
||||||
|
'msg' => '缺少ApiAuth',
|
||||||
|
'data' => []
|
||||||
|
])->header($header);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,9 +2,106 @@
|
|||||||
|
|
||||||
namespace app\http\middleware;
|
namespace app\http\middleware;
|
||||||
|
|
||||||
class AdminPermission
|
use app\model\AdminAuthGroup;
|
||||||
{
|
use app\model\AdminAuthGroupAccess;
|
||||||
public function handle($request, \Closure $next)
|
use app\model\AdminAuthRule;
|
||||||
{
|
use app\util\ReturnCode;
|
||||||
|
use app\util\Tools;
|
||||||
|
|
||||||
|
class AdminPermission {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户权限检测
|
||||||
|
* @param \think\facade\Request $request
|
||||||
|
* @param \Closure $next
|
||||||
|
* @return mixed|\think\response\Json
|
||||||
|
* @throws \think\db\exception\DataNotFoundException
|
||||||
|
* @throws \think\db\exception\ModelNotFoundException
|
||||||
|
* @throws \think\exception\DbException
|
||||||
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||||
|
*/
|
||||||
|
public function handle($request, \Closure $next) {
|
||||||
|
$ApiAuth = $request->header('ApiAuth');
|
||||||
|
$userInfo = cache('Login:' . $ApiAuth);
|
||||||
|
|
||||||
|
if (!$userInfo) {
|
||||||
|
return json([
|
||||||
|
'code' => ReturnCode::INVALID,
|
||||||
|
'msg' => '非常抱歉,您的登录状态已丢失或已过期!',
|
||||||
|
'data' => []
|
||||||
|
])->header(config('apiAdmin.CROSS_DOMAIN'));
|
||||||
|
}
|
||||||
|
|
||||||
|
$userInfo = json_decode($userInfo, true);
|
||||||
|
if (!$this->checkAuth($userInfo['id'], $request->path())) {
|
||||||
|
return json([
|
||||||
|
'code' => ReturnCode::INVALID,
|
||||||
|
'msg' => '非常抱歉,您没有权限这么做!',
|
||||||
|
'data' => []
|
||||||
|
])->header(config('apiAdmin.CROSS_DOMAIN'));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $next($request);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检测用户权限
|
||||||
|
* @param $uid
|
||||||
|
* @param $route
|
||||||
|
* @return bool
|
||||||
|
* @throws \think\db\exception\DataNotFoundException
|
||||||
|
* @throws \think\db\exception\ModelNotFoundException
|
||||||
|
* @throws \think\exception\DbException
|
||||||
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||||
|
*/
|
||||||
|
private function checkAuth($uid, $route) {
|
||||||
|
$isSupper = Tools::isAdministrator($uid);
|
||||||
|
if (!$isSupper) {
|
||||||
|
$rules = $this->getAuth($uid);
|
||||||
|
|
||||||
|
return in_array($route, $rules);
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据用户ID获取全部权限节点
|
||||||
|
* @param $uid
|
||||||
|
* @return array
|
||||||
|
* @throws \think\db\exception\DataNotFoundException
|
||||||
|
* @throws \think\db\exception\ModelNotFoundException
|
||||||
|
* @throws \think\exception\DbException
|
||||||
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||||
|
*/
|
||||||
|
private function getAuth($uid) {
|
||||||
|
$groups = AdminAuthGroupAccess::get(['uid' => $uid]);
|
||||||
|
if (isset($groups) && $groups->groupId) {
|
||||||
|
$openGroup = (new AdminAuthGroup())->whereIn('id', $groups->groupId)->where(['status' => 1])->select();
|
||||||
|
if (isset($openGroup)) {
|
||||||
|
$openGroupArr = [];
|
||||||
|
foreach ($openGroup as $group) {
|
||||||
|
$openGroupArr[] = $group->id;
|
||||||
|
}
|
||||||
|
$allRules = (new AdminAuthRule())->whereIn('groupId', $openGroupArr)->select();
|
||||||
|
if (isset($allRules)) {
|
||||||
|
$rules = [];
|
||||||
|
foreach ($allRules as $rule) {
|
||||||
|
$rules[] = $rule->url;
|
||||||
|
}
|
||||||
|
$rules = array_unique($rules);
|
||||||
|
|
||||||
|
return $rules;
|
||||||
|
} else {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -2,9 +2,10 @@
|
|||||||
|
|
||||||
namespace app\http\middleware;
|
namespace app\http\middleware;
|
||||||
|
|
||||||
class AdminResponse
|
use think\facade\Config;
|
||||||
{
|
|
||||||
public function handle($request, \Closure $next)
|
class AdminResponse {
|
||||||
{
|
public function handle($request, \Closure $next) {
|
||||||
|
return $next($request)->header(Config::get('apiadmin.CROSS_DOMAIN'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -112,4 +112,58 @@ class Tools {
|
|||||||
}
|
}
|
||||||
return $list;
|
return $list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 把返回的数据集转换成Tree
|
||||||
|
* @param $list
|
||||||
|
* @param string $pk
|
||||||
|
* @param string $pid
|
||||||
|
* @param string $child
|
||||||
|
* @param string $root
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public static function listToTree($list, $pk='id', $pid = 'fid', $child = '_child', $root = '0') {
|
||||||
|
$tree = array();
|
||||||
|
if(is_array($list)) {
|
||||||
|
$refer = array();
|
||||||
|
foreach ($list as $key => $data) {
|
||||||
|
$refer[$data[$pk]] = &$list[$key];
|
||||||
|
}
|
||||||
|
foreach ($list as $key => $data) {
|
||||||
|
$parentId = $data[$pid];
|
||||||
|
if ($root == $parentId) {
|
||||||
|
$tree[] = &$list[$key];
|
||||||
|
}else{
|
||||||
|
if (isset($refer[$parentId])) {
|
||||||
|
$parent = &$refer[$parentId];
|
||||||
|
$parent[$child][] = &$list[$key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $tree;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function formatTree($list, $lv = 0, $title = 'name'){
|
||||||
|
$formatTree = array();
|
||||||
|
foreach($list as $key => $val){
|
||||||
|
$title_prefix = '';
|
||||||
|
for( $i=0;$i<$lv;$i++ ){
|
||||||
|
$title_prefix .= "|---";
|
||||||
|
}
|
||||||
|
$val['lv'] = $lv;
|
||||||
|
$val['namePrefix'] = $lv == 0 ? '' : $title_prefix;
|
||||||
|
$val['showName'] = $lv == 0 ? $val[$title] : $title_prefix.$val[$title];
|
||||||
|
if(!array_key_exists('_child', $val)){
|
||||||
|
array_push($formatTree, $val);
|
||||||
|
}else{
|
||||||
|
$child = $val['_child'];
|
||||||
|
unset($val['_child']);
|
||||||
|
array_push($formatTree, $val);
|
||||||
|
$middle = self::formatTree($child, $lv+1, $title); //进行下一层递归
|
||||||
|
$formatTree = array_merge($formatTree, $middle);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $formatTree;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -97,7 +97,7 @@ return [
|
|||||||
// 是否开启路由延迟解析
|
// 是否开启路由延迟解析
|
||||||
'url_lazy_route' => false,
|
'url_lazy_route' => false,
|
||||||
// 是否强制使用路由
|
// 是否强制使用路由
|
||||||
'url_route_must' => false,
|
'url_route_must' => true,
|
||||||
// 合并路由规则
|
// 合并路由规则
|
||||||
'route_rule_merge' => false,
|
'route_rule_merge' => false,
|
||||||
// 路由是否完全匹配
|
// 路由是否完全匹配
|
||||||
|
@ -11,11 +11,12 @@
|
|||||||
|
|
||||||
use think\facade\Route;
|
use think\facade\Route;
|
||||||
|
|
||||||
Route::rule('admin/Login/index','admin/Login/index','post');
|
|
||||||
Route::rule('admin/Index/upload','admin/Index/upload','post');
|
|
||||||
Route::rule('admin/Login/logout','admin/Login/logout','get');
|
|
||||||
|
|
||||||
Route::group('admin', function () {
|
Route::group('admin', function () {
|
||||||
|
Route::rule('Login/index','admin/Login/index','post');
|
||||||
|
Route::rule('Index/upload','admin/Index/upload','post');
|
||||||
|
Route::rule('Login/logout','admin/Login/logout','get');
|
||||||
|
|
||||||
//大部分控制器的路由都以分组的形式写到这里
|
//大部分控制器的路由都以分组的形式写到这里
|
||||||
Route::group('Menu', [
|
Route::group('Menu', [
|
||||||
'index' => [
|
'index' => [
|
||||||
@ -38,7 +39,7 @@ Route::group('admin', function () {
|
|||||||
'admin/Menu/del',
|
'admin/Menu/del',
|
||||||
['method' => 'get']
|
['method' => 'get']
|
||||||
]
|
]
|
||||||
]);
|
])->middleware('AdminPermission');;
|
||||||
Route::group('User', [
|
Route::group('User', [
|
||||||
'index' => [
|
'index' => [
|
||||||
'admin/User/index',
|
'admin/User/index',
|
||||||
@ -68,7 +69,7 @@ Route::group('admin', function () {
|
|||||||
'admin/User/del',
|
'admin/User/del',
|
||||||
['method' => 'get']
|
['method' => 'get']
|
||||||
],
|
],
|
||||||
]);
|
])->middleware('Auth');
|
||||||
Route::group('Auth', [
|
Route::group('Auth', [
|
||||||
'index' => [
|
'index' => [
|
||||||
'admin/Auth/index',
|
'admin/Auth/index',
|
||||||
@ -102,7 +103,7 @@ Route::group('admin', function () {
|
|||||||
'admin/Auth/getRuleList',
|
'admin/Auth/getRuleList',
|
||||||
['method' => 'get']
|
['method' => 'get']
|
||||||
]
|
]
|
||||||
]);
|
])->middleware('Auth');
|
||||||
Route::group('App', [
|
Route::group('App', [
|
||||||
'index' => [
|
'index' => [
|
||||||
'admin/App/index',
|
'admin/App/index',
|
||||||
@ -132,7 +133,7 @@ Route::group('admin', function () {
|
|||||||
'admin/App/del',
|
'admin/App/del',
|
||||||
['method' => 'get']
|
['method' => 'get']
|
||||||
]
|
]
|
||||||
]);
|
])->middleware('Auth');
|
||||||
Route::group('InterfaceList', [
|
Route::group('InterfaceList', [
|
||||||
'index' => [
|
'index' => [
|
||||||
'admin/InterfaceList/index',
|
'admin/InterfaceList/index',
|
||||||
@ -162,7 +163,7 @@ Route::group('admin', function () {
|
|||||||
'admin/InterfaceList/getHash',
|
'admin/InterfaceList/getHash',
|
||||||
['method' => 'get']
|
['method' => 'get']
|
||||||
]
|
]
|
||||||
]);
|
])->middleware('Auth');
|
||||||
Route::group('Fields', [
|
Route::group('Fields', [
|
||||||
'index' => [
|
'index' => [
|
||||||
'admin/Fields/index',
|
'admin/Fields/index',
|
||||||
@ -192,7 +193,7 @@ Route::group('admin', function () {
|
|||||||
'admin/Fields/upload',
|
'admin/Fields/upload',
|
||||||
['method' => 'post']
|
['method' => 'post']
|
||||||
]
|
]
|
||||||
]);
|
])->middleware('Auth');
|
||||||
Route::group('InterfaceGroup', [
|
Route::group('InterfaceGroup', [
|
||||||
'index' => [
|
'index' => [
|
||||||
'admin/InterfaceGroup/index',
|
'admin/InterfaceGroup/index',
|
||||||
@ -218,7 +219,7 @@ Route::group('admin', function () {
|
|||||||
'admin/InterfaceGroup/del',
|
'admin/InterfaceGroup/del',
|
||||||
['method' => 'get']
|
['method' => 'get']
|
||||||
]
|
]
|
||||||
]);
|
])->middleware('Auth');
|
||||||
Route::group('AppGroup', [
|
Route::group('AppGroup', [
|
||||||
'index' => [
|
'index' => [
|
||||||
'admin/AppGroup/index',
|
'admin/AppGroup/index',
|
||||||
@ -244,7 +245,7 @@ Route::group('admin', function () {
|
|||||||
'admin/AppGroup/del',
|
'admin/AppGroup/del',
|
||||||
['method' => 'get']
|
['method' => 'get']
|
||||||
]
|
]
|
||||||
]);
|
])->middleware('Auth');
|
||||||
Route::group('Log', [
|
Route::group('Log', [
|
||||||
'index' => [
|
'index' => [
|
||||||
'admin/Log/index',
|
'admin/Log/index',
|
||||||
@ -254,7 +255,9 @@ Route::group('admin', function () {
|
|||||||
'admin/Log/del',
|
'admin/Log/del',
|
||||||
['method' => 'get']
|
['method' => 'get']
|
||||||
]
|
]
|
||||||
]);
|
])->middleware('Auth');
|
||||||
Route::miss('admin/Miss/index');
|
|
||||||
})->middleware('Auth');
|
//MISS路由定义
|
||||||
|
Route::miss('admin/Miss/index');
|
||||||
|
})->middleware('AdminResponse');
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user