php课程设计报告及源文件(大学生php实训报告总结)
程序员文章站
2022-03-12 13:33:55
权限系统模块对于互联网产品是一个非常重要的功能,可以控制不同的角色合理的访问不同的资源从而达到安全访问的作用权限控制有哪些模型aclrbac 基于角色的访问控制从上图我们可以看出,acl是用户和权限直...
权限系统模块对于互联网产品是一个非常重要的功能,可以控制不同的角色合理的访问不同的资源从而达到安全访问的作用
权限控制有哪些模型
- acl
- rbac 基于角色的访问控制
从上图我们可以看出,acl是用户和权限直接关系的,而rbac则是通过角色间接关联用户和权限的。所以我们注意到角色是rbac系统的一个重要属性。
什么是rbac模型
rbac(role-based access control,基于角色的访问控制),就是用户通过角色与权限进行关联。简单地说,一个用户拥有若干角色,每一个角色拥有若干权限。这样,就构造成“用户-角色-权限”的授权模型。在这种模型中,用户与角色之间,角色与权限之间,一般者是多对多的关系。
为什么要选择rbac模型
原因如下:
- 方便用户分组
- 方便权限分配和回收
- 扩展方便,可以满足大部分业务需求
这些也就是我们在说权限管理前,应该先知道权限管理要有功能。
rbac模型的关系图
图中有重要的rbac模型5大属性,分别是:
1 用户属性(张三、李四、王五)
2 角色属性(销售经理、销售、前台)
3 用户与角色的关系(张三 是 销售经理 、李四 王五 是 销售)
4 权限(添加客户、编辑客户、删除客户,查看客户)
5 权限与角色的关系(销售 拥有 查看客户的 权 限、销售经理可以 查看/添加/删除/编辑客户的)
一个rbac权限模块,必然要实现三个功能
- 用户管理
用户列表添加用户编辑用户设置用户角色 - 角色管理 角色列表
添加角色编辑角色设置角色权限 - 权限管理
权限列表新增权限编辑权限
如图所示
数据表设计
用户表
create table `user` ( `id` int(11) unsigned not null auto_increment, `name` varchar(20) not null default '' comment '姓名', `email` varchar(30) not null default '' comment '邮箱', `is_admin` tinyint(1) not null default '0' comment '是否是超级管理员 1表示是 0 表示不是', `status` tinyint(1) not null default '1' comment '状态 1:有效 0:无效', `updated_time` timestamp not null default '0000-00-00 00:00:00' comment '最后一次更新时间', `created_time` timestamp not null default '0000-00-00 00:00:00' comment '插入时间', primary key (`id`), key `idx_email` (`email`) ) engine=innodb default charset=utf8 comment='用户表';
角色表
create table `role` ( `id` int(11) unsigned not null auto_increment, `name` varchar(50) not null default '' comment '角色名称', `status` tinyint(1) not null default '1' comment '状态 1:有效 0:无效', `updated_time` timestamp not null default '0000-00-00 00:00:00' comment '最后一次更新时间', `created_time` timestamp not null default '0000-00-00 00:00:00' comment '插入时间', primary key (`id`) ) engine=innodb default charset=utf8 comment='角色表';
用户角色表
create table `user_role` ( `id` int(11) unsigned not null auto_increment, `uid` int(11) not null default '0' comment '用户id', `role_id` int(11) not null default '0' comment '角色id', `created_time` timestamp not null default '0000-00-00 00:00:00' comment '插入时间', primary key (`id`), key `idx_uid` (`uid`) ) engine=innodb default charset=utf8 comment='用户角色表';
权限详情表
create table `access` ( `id` int(11) unsigned not null auto_increment, `title` varchar(50) not null default '' comment '权限名称', `urls` varchar(1000) not null default '' comment 'json 数组', `status` tinyint(1) not null default '1' comment '状态 1:有效 0:无效', `updated_time` timestamp not null default '0000-00-00 00:00:00' comment '最后一次更新时间', `created_time` timestamp not null default '0000-00-00 00:00:00' comment '插入时间', primary key (`id`) ) engine=innodb default charset=utf8 comment='权限详情表';
角色权限表
create table `role_access` ( `id` int(11) unsigned not null auto_increment, `role_id` int(11) not null default '0' comment '角色id', `access_id` int(11) not null default '0' comment '权限id', `created_time` timestamp not null default '0000-00-00 00:00:00' comment '插入时间', primary key (`id`), key `idx_role_id` (`role_id`) ) engine=innodb default charset=utf8 comment='角色权限表';
用户操作记录表
create table `app_access_log` ( `id` int(11) not null auto_increment, `uid` bigint(20) not null default '0' comment '品牌uid', `target_url` varchar(255) not null default '' comment '访问的url', `query_params` longtext not null comment 'get和post参数', `ua` varchar(255) not null default '' comment '访问ua', `ip` varchar(32) not null default '' comment '访问ip', `note` varchar(1000) not null default '' comment 'json格式备注字段', `created_time` timestamp not null default current_timestamp, primary key (`id`), key `idx_uid` (`uid`) ) engine=innodb default charset=utf8 comment='用户操作记录表';
代码实现
本系统所有页面都是需要登录之后才能访问的, 在框架中加入统一验证方法
public function beforeaction($action) { $login_status = $this->checkloginstatus(); if ( !$login_status && !in_array( $action->uniqueid,$this->allowallaction ) ) { if(yii::$app->request->isajax){ $this->renderjson([],"未登录,请返回用户中心",-302); }else{ $this->redirect( urlservice::buildurl("/user/login") );//返回到登录页面 } return false; } //保存所有的访问到数据库当中 $get_params = $this->get( null ); $post_params = $this->post( null ); $model_log = new appaccesslog(); $model_log->uid = $this->current_user?$this->current_user['id']:0; $model_log->target_url = isset( $_server['request_uri'] )?$_server['request_uri']:''; $model_log->query_params = json_encode( array_merge( $post_params,$get_params ) ); $model_log->ua = isset( $_server['http_user_agent'] )?$_server['http_user_agent']:''; $model_log->ip = isset( $_server['remote_addr'] )?$_server['remote_addr']:''; $model_log->created_time = date("y-m-d h:i:s"); $model_log->save( 0 ); /** * 判断权限的逻辑是 * 取出当前登录用户的所属角色, * 在通过角色 取出 所属 权限关系 * 在权限表中取出所有的权限链接 * 判断当前访问的链接 是否在 所拥有的权限列表中 */ //判断当前访问的链接 是否在 所拥有的权限列表中 if( !$this->checkprivilege( $action->getuniqueid() ) ){ $this->redirect( urlservice::buildurl( "/error/forbidden" ) ); return false; } return true; }
检查是否有访问指定链接的权限
public function checkprivilege( $url ){ //如果是超级管理员 也不需要权限判断 if( $this->current_user && $this->current_user['is_admin'] ){ return true; } //有一些页面是不需要进行权限判断的 if( in_array( $url,$this->ignore_url ) ){ return true; } return in_array( $url, $this->getroleprivilege( ) ); }
获取某用户的所有权限,取出指定用户的所属角色, 在通过角色取出所属权限关系,在权限表中取出所有的权限链接
public function getroleprivilege($uid = 0){ if( !$uid && $this->current_user ){ $uid = $this->current_user->id; } if( !$this->privilege_urls ){ $role_ids = userrole::find()->where([ 'uid' => $uid ])->select('role_id')->asarray()->column(); if( $role_ids ){ //在通过角色 取出 所属 权限关系 $access_ids = roleaccess::find()->where([ 'role_id' => $role_ids ])->select('access_id')->asarray()->column(); //在权限表中取出所有的权限链接 $list = access::find()->where([ 'id' => $access_ids ])->all(); if( $list ){ foreach( $list as $_item ){ $tmp_urls = @json_decode( $_item['urls'],true ); $this->privilege_urls = array_merge( $this->privilege_urls,$tmp_urls ); } } } } return $this->privilege_urls ; }
下一篇: myeclipse怎么用css