CRMEB/crmeb/app/services/system/admin/SystemRoleServices.php
2022-02-16 17:11:48 +08:00

164 lines
5.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\services\system\admin;
use app\dao\system\admin\SystemRoleDao;
use app\Request;
use app\services\BaseServices;
use app\services\system\SystemMenusServices;
use crmeb\exceptions\AuthException;
use crmeb\utils\ApiErrorCode;
use think\facade\Cache;
/**
* Class SystemRoleServices
* @package app\services\system\admin
* @method update($id, array $data, ?string $key = null) 修改数据
* @method save(array $data) 保存数据
* @method get(int $id, ?array $field = []) 获取数据
* @method delete(int $id, ?string $key = null) 删除数据
*/
class SystemRoleServices extends BaseServices
{
/**
* 当前管理员权限缓存前缀
*/
const ADMIN_RULES_LEVEL = 'Admin_rules_level_';
/**
* SystemRoleServices constructor.
* @param SystemRoleDao $dao
*/
public function __construct(SystemRoleDao $dao)
{
$this->dao = $dao;
}
/**
* 获取权限
* @return mixed
*/
public function getRoleArray(array $where = [], string $field = '', string $key = '')
{
return $this->dao->getRoule($where, $field, $key);
}
/**
* 获取表单所需的权限名称列表
* @param int $level
* @return array
*/
public function getRoleFormSelect(int $level)
{
$list = $this->getRoleArray(['level' => $level, 'status' => 1]);
$options = [];
foreach ($list as $id => $roleName) {
$options[] = ['label' => $roleName, 'value' => $id];
}
return $options;
}
/**
* 身份管理列表
* @param array $where
* @return array
*/
public function getRoleList(array $where)
{
[$page, $limit] = $this->getPageValue();
$list = $this->dao->getRouleList($where, $page, $limit);
$count = $this->dao->count($where);
/** @var SystemMenusServices $service */
$service = app()->make(SystemMenusServices::class);
foreach ($list as &$item) {
$item['rules'] = implode(',', array_merge($service->column(['id' => $item['rules']], 'menu_name', 'id')));
}
return compact('count', 'list');
}
/**
* 后台验证权限
* @param Request $request
*/
public function verifiAuth(Request $request)
{
$rule = trim(strtolower($request->rule()->getRule()));
$method = trim(strtolower($request->method()));
if (in_array($rule, ['setting/admin/logout', 'menuslist'])) {
return true;
}
//权限菜单未添加时返回true
$allAuth = Cache::remember('all_auth', function () {
/** @var SystemMenusServices $menusService */
$menusService = app()->make(SystemMenusServices::class);
return $menusService->getColumn([['api_url', '<>', ''], ['auth_type', '=', 2]], 'api_url,methods');
});
if (!in_array($rule, array_map(function ($item) {
return trim(strtolower(str_replace(' ', '', $item)));
}, array_column($allAuth, 'api_url')))) {
return true;
}
//菜单按钮能看到的情况下所有接口都能访问
$auth = $this->getRolesByAuth($request->adminInfo()['roles'], 2);
//验证访问接口是否存在
if (!in_array($rule, array_map(function ($item) {
return trim(strtolower(str_replace(' ', '', $item)));
}, array_column($auth, 'api_url')))) {
// throw new AuthException(ApiErrorCode::ERR_RULE);
return true;
}
//验证访问接口是否有权限
if (empty(array_filter($auth, function ($item) use ($rule, $method) {
if (trim(strtolower($item['api_url'])) === $rule && $method === trim(strtolower($item['methods'])))
return true;
}))) {
throw new AuthException(ApiErrorCode::ERR_AUTH);
}
}
/**
* 获取指定权限
* @param array $rules
* @param int $type
* @param string $cachePrefix
* @return array|mixed
* @throws \throwable
*/
public function getRolesByAuth(array $rules, int $type = 1, string $cachePrefix = self::ADMIN_RULES_LEVEL)
{
if (empty($rules)) return [];
$cacheName = md5($cachePrefix . '_' . $type . '_' . implode('_', $rules));
return Cache::remember($cacheName, function () use ($rules, $type) {
/** @var SystemMenusServices $menusService */
$menusService = app()->make(SystemMenusServices::class);
return $menusService->getColumn([['id', 'IN', $this->getRoleIds($rules)], ['auth_type', '=', $type]], 'api_url,methods');
});
}
/**
* 获取权限id
* @param array $rules
* @return array
*/
public function getRoleIds(array $rules)
{
$rules = $this->dao->getColumn([['id', 'IN', $rules], ['status', '=', '1']], 'rules', 'id');
return array_unique(explode(',', implode(',', $rules)));
}
}