• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Yii2 使用RBAC

php 搞代码 4年前 (2022-01-23) 22次浏览 已收录 0个评论

1.在/basic/config/console.php和/basic/config/web.php里,配置组件,这里只贴出console.php里的代码 :


<?phpYii::setAlias('@tests', dirname(__DIR__) . '/tests');$params = require(__DIR__ . '/params.php');$db = require(__DIR__ . '/db.php');return [    'id' => 'basic-console',    'basePath' => dirname(__DIR__),    'bootstrap' => ['log', 'gii'],    'controllerNamespace' => 'app\commands',    'modules' => [        'gii' => 'yii\gii\Module',    ],    'components' => [        'cache' => [            'class' => 'yii\caching\FileCache',        ],        'log' => [            'targets' => [                [                    'class' => 'yii\log\FileTarget',                    'levels' => ['error', 'warning'],                ],            ],        ],        'db' => $db,'authManager' => [    				'class' => 'yii\rbac\DbManager',    				'itemTable' => 'web_auth_item',    				'assignmentTable' => 'web_auth_assignment',    				'itemChildTable' => 'web_auth_item_child',        			'ruleTable'=>'web_auth_rule'    		],    ],    'params' => $params,];

如果console.php里没有配置,会报下面错误:

You should configure "authManager" component to use database before executing this migration.

2.打开命令行

3.cd 命令切换到/php/basic目录

4.输入命令:yii migrate –migrationPath=@yii/rbac/migrations/

5.创建Permission:

    public function createPermission($item)    {        $auth = Yii::$app->authManager;        $createPost = $auth->createPermission($item);        $createPost->description = '创建了 ' . $item . ' 许可';        $auth->add($createPost);    }

6.创建Role:

public function createRole($item)    {        $auth = Yii::$app->authManager;        $role = $auth->createRole($item);        $role->description = '创建了 ' . $item . ' 角色';        $auth->add($role);    }

7.Role分配Permission

 static public function createEmpowerment($items)    {        $auth = Yii::$app->authManager;        $parent = $auth->createRole($items['name']);        $child = $auth->createPermission($items['description']);        $auth->addChild($parent, $child);    }

8.角色分配用户:

 static public function assign($item)    {        $auth = Yii::$app->authManager;        $reader = $auth->createRole($item['name']);        $auth->assign($reader, $item['description']);    }

9.验证权限:

 public function beforeAction($action)    {        $action = Yii::$app->controller->action->id;        if(\Yii::$app->user->can($action)){            return true;        }else{            throw new \yii\web\UnauthorizedHttpException('对不起,您现在还没获此操作的权限');        }    }

10.Controller里的权限验证

class SiteController extends Controller{    public function behaviors()    {        return [            'access' => [                'class' => \y

+本文来源gao!%daima.com搞$代*!码9网(

搞gaodaima代码ii\web\AccessControl::className(), 'only' => ['login', 'logout', 'signup'], 'rules' => [ [ 'actions' => ['login', 'signup'], 'allow' => true, 'roles' => ['?'], ], [ 'actions' => ['logout'], 'allow' => true, 'roles' => ['@'], ], ], ], ]; } // ...

11.在Controller里自定义验证

class SiteController extends Controller{    public function behaviors()    {        return [            'access' => [                'class' => \yii\web\AccessControl::className(),                'only' => ['special-callback'],                'rules' => [                    [                        'actions' => ['special-callback'],                        'allow' => true,                        'matchCallback' => function ($rule, $action) {                            return date('d-m') === '31-10';                        }                    ],

   // ...    // Match callback called! 此页面可以访问只有每个10月31日    public function actionSpecialCallback()    {        return $this->render('happy-halloween');    }

以上就介绍了Yii2 使用RBAC,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Yii2 使用RBAC

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址