mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-01 00:38:13 +00:00
381 lines
13 KiB
PHP
381 lines
13 KiB
PHP
<?php
|
||
/**
|
||
* +----------------------------------------------------------------------
|
||
* | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
* +----------------------------------------------------------------------
|
||
* | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
||
* +----------------------------------------------------------------------
|
||
* | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
* +----------------------------------------------------------------------
|
||
* | Author: CRMEB Team <admin@crmeb.com>
|
||
* +----------------------------------------------------------------------
|
||
*/
|
||
|
||
namespace app\services\system;
|
||
|
||
|
||
use app\dao\system\SystemRouteDao;
|
||
use app\services\BaseServices;
|
||
use crmeb\services\FormBuilder;
|
||
use think\exception\ValidateException;
|
||
use think\helper\Str;
|
||
|
||
/**
|
||
* Class SystemRouteServices
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2023/4/6
|
||
* @package app\services\system
|
||
*/
|
||
class SystemRouteServices extends BaseServices
|
||
{
|
||
|
||
/**
|
||
* SystemRouteServices constructor.
|
||
* @param SystemRouteDao $dao
|
||
*/
|
||
public function __construct(SystemRouteDao $dao)
|
||
{
|
||
$this->dao = $dao;
|
||
}
|
||
|
||
/**
|
||
* @param array $where
|
||
* @return array
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2023/4/7
|
||
*/
|
||
public function getList(array $where)
|
||
{
|
||
[$page, $limit] = $this->getPageValue();
|
||
$list = $this->dao->selectList($where, 'name,path,method', $page, $limit)->toArray();
|
||
$count = $this->dao->count($where);
|
||
return compact('list', 'count');
|
||
}
|
||
|
||
/**
|
||
* @param int $id
|
||
* @return array
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2023/4/10
|
||
*/
|
||
public function getInfo(int $id)
|
||
{
|
||
$routeInfo = $this->dao->get($id);
|
||
if (!$routeInfo) {
|
||
throw new ValidateException(500036);
|
||
}
|
||
|
||
$routeInfo = $routeInfo->toArray();
|
||
$routeInfo['cate_tree'] = app()->make(SystemRouteCateServices::class)->getAllList($routeInfo['app_name'], '*', 'id asc,sort desc');
|
||
return $routeInfo;
|
||
}
|
||
|
||
/**
|
||
* 获取tree数据
|
||
* @param string $appName
|
||
* @param string $name
|
||
* @return mixed
|
||
* @author 吴汐
|
||
* @email 442384644@qq.com
|
||
* @date 2023/05/06
|
||
*/
|
||
public function getTreeList(string $appName = 'adminapi', string $name = '')
|
||
{
|
||
return $this->cacheDriver()->remember('ROUTE_LIST' . strtoupper($appName), function () use ($name, $appName) {
|
||
$list = app()->make(SystemRouteCateServices::class)
|
||
->selectList(['app_name' => $appName], '*', 0, 0, 'id asc,sort desc', [
|
||
'children' => function ($query) use ($name, $appName) {
|
||
$query->where('app_name', $appName)
|
||
->when('' !== $name, function ($q) use ($name) {
|
||
$q->where('name|path', 'LIKE', '%' . $name . '%');
|
||
});
|
||
}
|
||
])
|
||
->toArray();
|
||
|
||
foreach ($list as $key => $item) {
|
||
if (!empty($item['children'])) {
|
||
foreach ($item['children'] as $k => $v) {
|
||
if (isset($v['cate_id']) && isset($v['method'])) {
|
||
if ($v['method'] === 'DELETE') {
|
||
$v['method'] = 'DEL';
|
||
}
|
||
$v['pid'] = $v['cate_id'];
|
||
$list[$key]['children'][$k] = $v;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return get_tree_children($list);
|
||
}, 600);
|
||
}
|
||
|
||
/**
|
||
* @param array $importData
|
||
* @return bool
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2023/4/26
|
||
*/
|
||
public function importData(array $importData)
|
||
{
|
||
foreach ($importData as $item) {
|
||
$id = $this->dao->value(['method' => $item['method'], 'path' => $item['path']], 'id');
|
||
if ($id) {
|
||
$this->dao->update($id, [
|
||
'request' => $item['request'],
|
||
'response' => $item['response'],
|
||
'request_type' => $item['request_type'],
|
||
]);
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* 获取某个应用下的所有路由权限
|
||
* @param string $app
|
||
* @return array
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2023/4/6
|
||
*/
|
||
public function getRouteListAll(string $app = 'adminapi')
|
||
{
|
||
//获取所有的路由
|
||
$this->app = app();
|
||
$this->app->route->setTestMode(true);
|
||
$this->app->route->clear();
|
||
$path = $this->app->getRootPath() . 'app' . DS . $app . DS . 'route' . DS;
|
||
$files = is_dir($path) ? scandir($path) : [];
|
||
foreach ($files as $file) {
|
||
if (strpos($file, '.php')) {
|
||
include $path . $file;
|
||
}
|
||
}
|
||
|
||
$route = $this->app->route->getRuleList();
|
||
$action_arr = ['index', 'read', 'create', 'save', 'edit', 'update', 'delete'];
|
||
|
||
|
||
foreach ($route as $key => $item) {
|
||
$real_name = $item['option']['real_name'] ?? '';
|
||
if (is_array($real_name)) {
|
||
foreach ($action_arr as $a) {
|
||
if (Str::contains($item['route'], $a)) {
|
||
$real_name = $real_name[$a] ?? '';
|
||
}
|
||
}
|
||
}
|
||
$item['option']['real_name'] = $real_name;
|
||
$route[$key] = $item;
|
||
$except = $item['option']['except'] ?? [];
|
||
|
||
$router = is_string($item['route']) ? explode('/', $item['route']) : [];
|
||
$action = $router[count($router) - 1] ?? null;
|
||
//去除不需要的路由
|
||
if ($except && $action && in_array($action, $except)) {
|
||
unset($route[$key]);
|
||
}
|
||
$only = $item['option']['only'] ?? [];
|
||
if ($only && $action && !in_array($action, $only)) {
|
||
unset($route[$key]);
|
||
}
|
||
}
|
||
|
||
return $route;
|
||
}
|
||
|
||
/**
|
||
* 获取顶级id
|
||
* @param string $app
|
||
* @return mixed
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2023/4/11
|
||
*/
|
||
public function topCateId(string $app, string $cateName, int $pid = 0)
|
||
{
|
||
$oneId = app()->make(SystemRouteCateServices::class)->value(['app_name' => $app, 'name' => $cateName, 'pid' => 0], 'id');
|
||
if (!$oneId) {
|
||
$res = app()->make(SystemRouteCateServices::class)->save([
|
||
'app_name' => $app,
|
||
'name' => $cateName,
|
||
'pid' => $pid,
|
||
'add_time' => time(),
|
||
]);
|
||
return $res->id;
|
||
}
|
||
return $oneId;
|
||
}
|
||
|
||
/**
|
||
* 同步路由
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2023/4/6
|
||
*/
|
||
public function syncRoute(string $app = 'adminapi')
|
||
{
|
||
$listAll = $this->getRouteListAll($app);
|
||
|
||
$list = [];
|
||
foreach ($listAll as $item) {
|
||
if (!isset($item['option']['mark_name']) || strstr($item['rule'], '<MISS>') !== false) {
|
||
continue;
|
||
} else {
|
||
$list[$item['option']['mark_name']][] = $item;
|
||
}
|
||
}
|
||
$newsList = [];;
|
||
foreach ($list as $key => $item) {
|
||
$newItem = [];
|
||
foreach ($item as $value) {
|
||
if (isset($value['option']['cate_name'])) {
|
||
$newItem[$value['option']['cate_name']][] = $value;
|
||
} else {
|
||
$newItem[$key][] = $value;
|
||
}
|
||
}
|
||
$newsList[$key] = $newItem;
|
||
}
|
||
|
||
$list = [];
|
||
foreach ($newsList as $key => $item) {
|
||
$keys = array_keys($item);
|
||
$pid = $this->topCateId($app, $key, 0);
|
||
if ($keys == 1 && $key == $keys[0]) {
|
||
foreach ($item[$key] as $value) {
|
||
$list[$pid][] = $value;
|
||
}
|
||
} else {
|
||
foreach ($item as $i => $k) {
|
||
$cateId = $this->topCateId($app, $i, $pid);
|
||
foreach ($k as $value) {
|
||
$list[$cateId][] = $value;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
//保持新增的权限路由
|
||
$data = $this->dao->selectList(['app_name' => $app], 'path,method')->toArray();
|
||
$save = [];
|
||
foreach ($list as $key => $value) {
|
||
foreach ($value as $item) {
|
||
if (!$this->diffRoute($data, $item['rule'], $item['method']) && strstr($item['rule'], '<MISS>') === false) {
|
||
$pathAndAction = explode('/', $item['route']);
|
||
$save[] = [
|
||
'name' => $item['option']['real_name'] ?? $item['name'],
|
||
'path' => $item['rule'],
|
||
'cate_id' => $key,
|
||
'app_name' => $app,
|
||
'file_path' => 'app/' . $app . '/controller/' . str_replace('.', '/', $pathAndAction[0]) . '.php',
|
||
'action' => $pathAndAction[1],
|
||
'type' => isset($item['option']['is_common']) && $item['option']['is_common'] ? 1 : 0,
|
||
'method' => $item['method'],
|
||
'add_time' => date('Y-m-d H:i:s'),
|
||
];
|
||
}
|
||
}
|
||
}
|
||
|
||
if ($save) {
|
||
$this->dao->saveAll($save);
|
||
}
|
||
//删除不存在的权限路由
|
||
$data = $this->dao->selectList(['app_name' => $app], 'path,method,id')->toArray();
|
||
$delete = [];
|
||
$deleteData = [];
|
||
foreach ($data as $item) {
|
||
if (!$this->diffRoute($listAll, $item['path'], $item['method'], 'rule') && $item['path'] !== '<MISS>') {
|
||
$delete[] = $item['id'];
|
||
$deleteData[] = [
|
||
'path' => $item['path'],
|
||
'methods' => $item['method']
|
||
];
|
||
}
|
||
}
|
||
//删除不存在的路由
|
||
if ($delete) {
|
||
$this->dao->delete([['id', 'in', $delete]]);
|
||
}
|
||
//删除不存在的权限
|
||
if ($deleteData) {
|
||
foreach ($deleteData as $item) {
|
||
app()->make(SystemMenusServices::class)->deleteMenu($item['path'], $item['method']);
|
||
}
|
||
}
|
||
$this->cacheDriver()->clear();
|
||
}
|
||
|
||
/**
|
||
* 对比路由
|
||
* @param array $data
|
||
* @param string $path
|
||
* @param string $method
|
||
* @return bool
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2023/4/6
|
||
*/
|
||
protected function diffRoute(array $data, string $path, string $method, string $key = 'path')
|
||
{
|
||
$res = false;
|
||
foreach ($data as $item) {
|
||
if (strtolower($item['method']) == strtolower($method) && strtolower($item[$key]) == strtolower($path)) {
|
||
$res = true;
|
||
break;
|
||
} else if ($method === '*' && strtolower($item[$key]) == strtolower($path)) {
|
||
$res = true;
|
||
break;
|
||
}
|
||
}
|
||
return $res;
|
||
}
|
||
|
||
/**
|
||
* 添加和修改路由
|
||
* @param int $id
|
||
* @return array
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2023/4/7
|
||
*/
|
||
public function getFrom(int $id = 0, string $appName = 'adminapi')
|
||
{
|
||
$cateList = app()->make(SystemRouteCateServices::class)->getAllList($appName, 'name as label,path as value');
|
||
|
||
$url = '/system/route';
|
||
$routeInfo = [];
|
||
if ($id) {
|
||
$routeInfo = $this->dao->get($id);
|
||
$routeInfo = $routeInfo ? $routeInfo->toArray() : [];
|
||
$url .= '/' . $id;
|
||
}
|
||
|
||
$rule = [
|
||
FormBuilder::cascader('cate_id', '分类', $routeInfo['cate_id'] ?? 0)->data($cateList),
|
||
FormBuilder::input('name', '路由名称', $routeInfo['name'] ?? '')->required(),
|
||
FormBuilder::input('path', '路由路径', $routeInfo['path'] ?? '')->required(),
|
||
FormBuilder::select('method', '请求方式', $routeInfo['method'] ?? '')->options([
|
||
['value' => 'POST', 'label' => 'POST'],
|
||
['value' => 'GET', 'label' => 'GET'],
|
||
['value' => 'DELETE', 'label' => 'DELETE'],
|
||
['value' => 'PUT', 'label' => 'PUT'],
|
||
['value' => '*', 'label' => '*'],
|
||
])->required(),
|
||
FormBuilder::radio('type', '类型', $routeInfo['type'] ?? 0)->options([
|
||
['value' => 0, 'lable' => '普通路由'],
|
||
['value' => 1, 'lable' => '公共路由'],
|
||
]),
|
||
FormBuilder::hidden('app_name', $appName),
|
||
];
|
||
|
||
return create_form($id ? '修改路由' : '添加路由', $rule, $url, $id ? 'PUT' : 'POST');
|
||
}
|
||
}
|