refactor: 重构权限服务类

This commit is contained in:
Ying
2023-07-03 10:08:34 +08:00
parent 8becf0ef36
commit 4e377def8d
42 changed files with 1679 additions and 1524 deletions

View File

@@ -1,8 +1,9 @@
<?php
declare (strict_types=1);
namespace app\common\validate\system;
use app\admin\service\AuthService;
use think\Validate;
use app\common\model\system\AdminGroup as AdminGroupModel;
@@ -10,23 +11,31 @@ class AdminGroup extends Validate
{
/**
* 定义验证规则
* 格式:'字段名' => ['规则1','规则2'...]
* 格式:'字段名' => ['规则1','规则2'...]
*
* @var array
*/
protected $rule = [
'pid' => 'notEqId',
*/
protected $rule = [
'id' => 'require|checkGroup',
'pid' => 'notEqId',
];
/**
* 定义错误信息
* 格式:'字段名.规则名' => '错误信息'
* 格式:'字段名.规则名' => '错误信息'
*
* @var array
*/
protected $message = [
'pid.notEqId' => '选择上级分类错误!',
*/
protected $message = [
'pid.notEqId' => '选择上级分类错误!',
'id.require' => '请选择用户组',
'id.checkGroup' => '无权限操作',
];
protected $scene = [
'add' => ['pid'],
'edit' => ['id', 'pid'],
];
/**
@@ -36,7 +45,7 @@ class AdminGroup extends Validate
* @param $data
* @return bool
*/
protected function notEqId($value, $rules ,$data): bool
protected function notEqId($value, $rules, $data): bool
{
if ($value == $data['id']) {
return false;
@@ -51,4 +60,22 @@ class AdminGroup extends Validate
return true;
}
/**
* 验证用户组权限
* @param $value
* @param $rule
* @param $data
* @return bool
*/
protected function checkGroup($value, $rule, $data): bool
{
$authService = AuthService::instance();
$value = explode(',', $value);
if (!$authService->checkRulesForGroup($value)) {
return false;
}
return true;
}
}