Auth.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. /**
  3. * 权限认证类
  4. * 功能特性:
  5. * 1,是对规则进行认证,不是对节点进行认证。用户可以把节点当作规则名称实现对节点进行认证。
  6. * $auth=new Auth(); $auth->check('规则名称','用户id')
  7. * 2,可以同时对多条规则进行认证,并设置多条规则的关系(or或者and)
  8. * $auth=new Auth(); $auth->check('规则1,规则2','用户id','and')
  9. * 第三个参数为and时表示,用户需要同时具有规则1和规则2的权限。 当第三个参数为or时,表示用户值需要具备其中一个条件即可。默认为or
  10. * 3,一个用户可以属于多个用户组(think_auth_group_access表 定义了用户所属用户组)。我们需要设置每个用户组拥有哪些规则(think_auth_group 定义了用户组权限)
  11. *
  12. * 4,支持规则表达式。
  13. * 在think_auth_rule 表中定义一条规则时,如果type为1, condition字段就可以定义规则表达式。 如定义{score}>5 and {score}<100 表示用户的分数在5-100之间时这条规则才会通过。
  14. */
  15. namespace com;
  16. class Auth{
  17. //默认配置
  18. protected $_config = array(
  19. 'auth_on' => true, // 认证开关
  20. 'auth_type' => 1, // 认证方式,1为实时认证;2为登录认证。
  21. 'auth_group' => 'think_auth_group', // 用户组数据表名
  22. 'auth_group_access' => 'think_auth_group_access', // 用户-用户组关系表
  23. 'auth_rule' => 'think_auth_rule', // 权限规则表
  24. 'auth_user' => 'think_admin' // 用户信息表
  25. );
  26. public function __construct() {
  27. if (config('auth_config')) {
  28. //可设置配置项 auth_config, 此配置项为数组。
  29. $this->_config = array_merge($this->_config, config('auth_config'));
  30. }
  31. }
  32. /**
  33. * 检查权限
  34. * @param name string|array 需要验证的规则列表,支持逗号分隔的权限规则或索引数组
  35. * @param uid int 认证用户的id
  36. * @param string mode 执行check的模式
  37. * @param relation string 如果为 'or' 表示满足任一条规则即通过验证;如果为 'and'则表示需满足所有规则才能通过验证
  38. * @return boolean 通过验证返回true;失败返回false
  39. */
  40. public function check($name, $uid, $type=1, $mode='url', $relation='or') {
  41. if (!$this->_config['auth_on'])
  42. return true;
  43. $authList = $this->getAuthList($uid,$type); //获取用户需要验证的所有有效规则列表
  44. if (is_string($name)) {
  45. $name = strtolower($name);
  46. if (strpos($name, ',') !== false) {
  47. $name = explode(',', $name);
  48. } else {
  49. $name = array($name);
  50. }
  51. }
  52. $list = array(); //保存验证通过的规则名
  53. if ($mode=='url') {
  54. $REQUEST = unserialize( strtolower(serialize($_REQUEST)) );
  55. }
  56. foreach ( $authList as $auth ) {
  57. $query = preg_replace('/^.+\?/U','',$auth);
  58. if ($mode=='url' && $query!=$auth ) {
  59. parse_str($query,$param); //解析规则中的param
  60. $intersect = array_intersect_assoc($REQUEST,$param);
  61. $auth = preg_replace('/\?.*$/U','',$auth);
  62. if ( in_array($auth,$name) && $intersect==$param ) { //如果节点相符且url参数满足
  63. $list[] = $auth ;
  64. }
  65. }else if (in_array($auth , $name)){
  66. $list[] = $auth ;
  67. }
  68. }
  69. //dump($list);exit;
  70. if ($relation == 'or' and !empty($list)) {
  71. return true;
  72. }
  73. $diff = array_diff($name, $list);
  74. if ($relation == 'and' and empty($diff)) {
  75. return true;
  76. }
  77. return false;
  78. }
  79. /**
  80. * 根据用户id获取用户组,返回值为数组
  81. * @param uid int 用户id
  82. * @return array 用户所属的用户组 array(
  83. * array('uid'=>'用户id','group_id'=>'用户组id','title'=>'用户组名称','rules'=>'用户组拥有的规则id,多个,号隔开'),
  84. * ...)
  85. */
  86. public function getGroups($uid) {
  87. static $groups = array();
  88. if (isset($groups[$uid]))
  89. return $groups[$uid];
  90. $user_groups = \think\Db::table($this->_config['auth_group_access'])
  91. ->alias('a')
  92. ->join($this->_config['auth_group']." g", "g.id=a.group_id")
  93. ->where("a.uid='$uid' and g.status='1'")
  94. ->field('uid,group_id,title,rules')->select();
  95. $groups[$uid] = $user_groups ? $user_groups : array();
  96. return $groups[$uid];
  97. }
  98. /**
  99. * 获得权限列表
  100. * @param integer $uid 用户id
  101. * @param integer $type
  102. */
  103. protected function getAuthList($uid,$type) {
  104. static $_authList = array(); //保存用户验证通过的权限列表
  105. $t = implode(',',(array)$type);
  106. if (isset($_authList[$uid.$t])) {
  107. return $_authList[$uid.$t];
  108. }
  109. if( $this->_config['auth_type']==2 && \think\Session::get('_auth_list_'.$uid.$t)){
  110. return \think\Session::get('_auth_list_'.$uid.$t);
  111. }
  112. //读取用户所属用户组
  113. $groups = $this->getGroups($uid);
  114. $ids = array();//保存用户所属用户组设置的所有权限规则id
  115. foreach ($groups as $g) {
  116. $ids = array_merge($ids, explode(',', trim($g['rules'], ',')));
  117. }
  118. $ids = array_unique($ids);
  119. if (empty($ids)) {
  120. $_authList[$uid.$t] = array();
  121. return array();
  122. }
  123. $map=array(
  124. 'id'=>array('in',$ids),
  125. 'type'=>$type,
  126. 'status'=>1,
  127. );
  128. //读取用户组所有权限规则
  129. $rules = \think\Db::table($this->_config['auth_rule'])->where($map)->field('condition,name')->select();
  130. //循环规则,判断结果。
  131. $authList = array(); //
  132. foreach ($rules as $rule) {
  133. if (!empty($rule['condition'])) { //根据condition进行验证
  134. $user = $this->getUserInfo($uid);//获取用户信息,一维数组
  135. $command = preg_replace('/\{(\w*?)\}/', '$user[\'\\1\']', $rule['condition']);
  136. //dump($command);//debug
  137. @(eval('$condition=(' . $command . ');'));
  138. if ($condition) {
  139. $authList[] = strtolower($rule['name']);
  140. }
  141. } else {
  142. //只要存在就记录
  143. $authList[] = strtolower($rule['name']);
  144. }
  145. }
  146. $_authList[$uid.$t] = $authList;
  147. if($this->_config['auth_type']==2){
  148. //规则列表结果保存到session
  149. \think\Session::set('_auth_list_'.$uid.$t, $authList);
  150. }
  151. return array_unique($authList);
  152. }
  153. /**
  154. * 获得用户资料,根据自己的情况读取数据库
  155. */
  156. protected function getUserInfo($uid) {
  157. static $userinfo=array();
  158. if(!isset($userinfo[$uid])){
  159. $userinfo[$uid]=\think\Db::table($this->_config['admin'])->where('id',$uid)->find();
  160. }
  161. return $userinfo[$uid];
  162. }
  163. }