欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Laravel框架实现的rbac权限管理操作示例

程序员文章站 2023-10-20 23:12:06
本文实例讲述了laravel框架实现的rbac权限管理操作。分享给大家供大家参考,具体如下: 介绍:根据不同的权限,在菜单栏显示不同的功能,只对菜单进行了限制,若对路由也...

本文实例讲述了laravel框架实现的rbac权限管理操作。分享给大家供大家参考,具体如下:

介绍:根据不同的权限,在菜单栏显示不同的功能,只对菜单进行了限制,若对路由也进行限制,请自行完善

1、建表(用户表、角色表、权限表、用户角色表、角色权限表)

create table if not exists mr_role
(
id int(11) primary key auto_increment comment '自增id',
name varchar(30) not null comment '角色名'
)engine=innodb default charset=utf8 comment='角色表';
create table if not exists mr_privilege
(
id int(11) primary key auto_increment comment '自增id',
name varchar(30) not null comment '权限名',
route varchar(50) not null comment '权限所有的路由',
description varchar(100) not null comment '权限的描述'
)engine=innodb default charset=utf8 comment='权限表';
create table if not exists mr_user_role
(
id int(11) primary key auto_increment comment '自增id',
user_id int(11) not null comment '用户id',
role_id int(11) not null comment '角色id'
)engine=innodb default charset=utf8 comment='用户角色表';
create table if not exists mr_role_privilege
(
id int(11) primary key auto_increment comment '自增id',
role_id int(11) not null comment '角色id',
privilege_id int(11) not null comment '权限id'
)engine=innodb default charset=utf8 comment='角色权限表';

2、在用户模型和角色模型中实现多对多

class user extends model
{
  protected $primarykey = 'id';
  protected $table = 'user';
  public $timestamps = false;
  public $guarded = [];
  public function roles()
  {
    return $this->belongstomany('app\model\role', 'user_role', 'user_id', 'role_id')->withpivot('user_id', 'role_id');
  }
}
class role extends model
{
  protected $table = 'role';
  protected $primarykey = 'id';
  public $timestamps = false;
  public $guarded = [];
  public function privileges()
  {
    return $this->belongstomany('app\model\privilege', 'role_privilege', 'role_id', 'privilege_id')->withpivot(['role_id', 'privilege_id']);
  }
}

3、将菜单视为公共区域,在app\providers\appserviceprovider.php里写

public function boot()
{
    \view::composer('layout.slide', function($view) {
      $roles_id = user::find(session('user')['id'])->roles->map(function ($role) {
        return $role->id;
      });  // 使用map,最终得到的结果$roles_id = [1, 2, ...]
      $privileges = [];
      foreach ($roles_id as $role) {
        $privileges = array_merge($privileges, role::find($role)->privileges->map(function ($privilege) {
          return [$privilege->name, $privilege->route];
        })->toarray());
      }  // 得到的结果,$prpvileges = [['index/..', '列表'], ['', '']]
      $view->with('privileges', $privileges);
    });
}

4、菜单的实现(可以直接遍历一个div,我这里因为有不同的样式,便用了判断)

@foreach ($privileges as $privilege)
      @if ($privilege[1] == 'key/index' && $privilege[0] == '键名列表')
        <div class="slide__left__key" style="margin-top: 10px;"><a href="{{ url('key/index') }}" rel="external nofollow" ><span class="glyphicon glyphicon-th"></span> 键名列表</a></div>
      @endif
      @if ($privilege[1] == 'key/create' && $privilege[0] == '添加键名')
          <div class="slide__left__key"><a href="{{ url('key/create') }}" rel="external nofollow" ><span class="glyphicon glyphicon-plus"></span> 添加键名</a></div>
      @endif
      @if ($privilege[1] == 'project/index' && $privilege[0] == '项目列表')
          <div class="slide__left__key" style="margin-top: 20px;"><a href="{{ url('project/index') }}" rel="external nofollow" ><span class="glyphicon glyphicon-th-list"></span> 项目列表</a></div>
      @endif
      @if ($privilege[1] == 'project/create' && $privilege[0] == '添加项目')
          <div class="slide__left__key"><a href="{{ url('project/create') }}" rel="external nofollow" ><span class="glyphicon glyphicon-edit"></span> 添加项目</a></div>
      @endif
      @if ($privilege[1] == 'user/index' && $privilege[0] == '用户列表')
          <div class="slide__left__key" style="margin-top: 20px;"><a href="{{ url('user/index') }}" rel="external nofollow" ><span class="glyphicon glyphicon-th-large"></span> 用户列表</a></div>
      @endif
      @if ($privilege[1] == 'user/create' && $privilege[0] == '添加用户')
          <div class="slide__left__key"><a href="{{ url('user/create') }}" rel="external nofollow" ><span class="glyphicon glyphicon-plus-sign"></span> 添加用户</a></div>
      @endif
    @endforeach

更多关于laravel相关内容感兴趣的读者可查看本站专题:《laravel框架入门与进阶教程》、《php优秀开发框架总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于laravel框架的php程序设计有所帮助。