Auth.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2011 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: http://www.ohltk.com
  10. // +----------------------------------------------------------------------
  11. // | 修改者: anuo (本权限类在原3.2.3的基础上修改过来的)
  12. // +----------------------------------------------------------------------
  13. namespace fast;
  14. use app\admin\model\AuthRule;
  15. use think\Db;
  16. use think\Config;
  17. use think\Session;
  18. use think\Request;
  19. /**
  20. * 权限认证类
  21. * 功能特性:
  22. * 1,是对规则进行认证,不是对节点进行认证。用户可以把节点当作规则名称实现对节点进行认证。
  23. * $auth=new Auth(); $auth->check('规则名称','用户id')
  24. * 2,可以同时对多条规则进行认证,并设置多条规则的关系(or或者and)
  25. * $auth=new Auth(); $auth->check('规则1,规则2','用户id','and')
  26. * 第三个参数为and时表示,用户需要同时具有规则1和规则2的权限。 当第三个参数为or时,表示用户值需要具备其中一个条件即可。默认为or
  27. * 3,一个用户可以属于多个用户组(think_auth_group_access表 定义了用户所属用户组)。我们需要设置每个用户组拥有哪些规则(think_auth_group 定义了用户组权限)
  28. * 4,支持规则表达式。
  29. * 在think_auth_rule 表中定义一条规则,condition字段就可以定义规则表达式。 如定义{score}>5 and {score}<100
  30. * 表示用户的分数在5-100之间时这条规则才会通过。
  31. */
  32. class Auth
  33. {
  34. /**
  35. * @var object 对象实例
  36. */
  37. protected static $instance;
  38. protected $rules = [];
  39. /**
  40. * 当前请求实例
  41. * @var Request
  42. */
  43. protected $request;
  44. //默认配置
  45. protected $config = [
  46. 'auth_on' => 1, // 权限开关
  47. 'auth_type' => 1, // 认证方式,1为实时认证;2为登录认证。
  48. 'auth_group' => 'auth_group', // 用户组数据表名
  49. 'auth_group_access' => 'auth_group_access', // 用户-用户组关系表
  50. 'auth_rule' => 'auth_rule', // 权限规则表
  51. 'auth_user' => 'user', // 用户信息表
  52. ];
  53. public function __construct()
  54. {
  55. if ($auth = Config::get('auth')) {
  56. $this->config = array_merge($this->config, $auth);
  57. }
  58. // 初始化request
  59. $this->request = Request::instance();
  60. }
  61. /**
  62. * 初始化
  63. * @access public
  64. * @param array $options 参数
  65. * @return Auth
  66. */
  67. public static function instance($options = [])
  68. {
  69. if (is_null(self::$instance)) {
  70. self::$instance = new static($options);
  71. }
  72. return self::$instance;
  73. }
  74. /**
  75. * 检查权限
  76. * @param string|array $name 需要验证的规则列表,支持逗号分隔的权限规则或索引数组
  77. * @param int $uid 认证用户的id
  78. * @param string $relation 如果为 'or' 表示满足任一条规则即通过验证;如果为 'and'则表示需满足所有规则才能通过验证
  79. * @param string $mode 执行验证的模式,可分为url,normal
  80. * @return bool 通过验证返回true;失败返回false
  81. */
  82. public function check($name, $uid, $relation = 'or', $mode = 'url')
  83. {
  84. // 严格匹配节点 begin 下面代码非FastAdmin官方代码
  85. // @author fuyelk <fuyelk@fuyelk.com>
  86. // 非开发环境,则严格匹配节点
  87. if (!\think\Env::get('app.dev', false)) {
  88. // 检查节点及父节点是否均存在且正常
  89. $checkNode = AuthRule::alias('node')
  90. ->field('node.id')
  91. ->join('auth_rule p', 'p.id = node.pid')
  92. ->where('node.status', 'normal')
  93. ->where('p.status', 'normal')
  94. ->where('node.name', $name)
  95. ->find();
  96. if (empty($checkNode)) {
  97. return false;
  98. }
  99. }
  100. // @author fuyelk <fuyelk@fuyelk.com>
  101. // 严格匹配节点 begin 上面代码非FastAdmin官方代码
  102. if (!$this->config['auth_on']) {
  103. return true;
  104. }
  105. // 获取用户需要验证的所有有效规则列表
  106. $rulelist = $this->getRuleList($uid);
  107. if (in_array('*', $rulelist)) {
  108. return true;
  109. }
  110. if (is_string($name)) {
  111. $name = strtolower($name);
  112. if (strpos($name, ',') !== false) {
  113. $name = explode(',', $name);
  114. } else {
  115. $name = [$name];
  116. }
  117. }
  118. $list = []; //保存验证通过的规则名
  119. if ('url' == $mode) {
  120. $REQUEST = unserialize(strtolower(serialize($this->request->param())));
  121. }
  122. foreach ($rulelist as $rule) {
  123. $query = preg_replace('/^.+\?/U', '', $rule);
  124. if ('url' == $mode && $query != $rule) {
  125. parse_str($query, $param); //解析规则中的param
  126. $intersect = array_intersect_assoc($REQUEST, $param);
  127. $rule = preg_replace('/\?.*$/U', '', $rule);
  128. if (in_array($rule, $name) && $intersect == $param) {
  129. //如果节点相符且url参数满足
  130. $list[] = $rule;
  131. }
  132. } else {
  133. if (in_array($rule, $name)) {
  134. $list[] = $rule;
  135. }
  136. }
  137. }
  138. if ('or' == $relation && !empty($list)) {
  139. return true;
  140. }
  141. $diff = array_diff($name, $list);
  142. if ('and' == $relation && empty($diff)) {
  143. return true;
  144. }
  145. return false;
  146. }
  147. /**
  148. * 根据用户id获取用户组,返回值为数组
  149. * @param int $uid 用户id
  150. * @return array 用户所属的用户组 array(
  151. * array('uid'=>'用户id','group_id'=>'用户组id','name'=>'用户组名称','rules'=>'用户组拥有的规则id,多个,号隔开'),
  152. * ...)
  153. */
  154. public function getGroups($uid)
  155. {
  156. static $groups = [];
  157. if (isset($groups[$uid])) {
  158. return $groups[$uid];
  159. }
  160. // 执行查询
  161. $user_groups = Db::name($this->config['auth_group_access'])
  162. ->alias('aga')
  163. ->join('__' . strtoupper($this->config['auth_group']) . '__ ag', 'aga.group_id = ag.id', 'LEFT')
  164. ->field('aga.uid,aga.group_id,ag.id,ag.pid,ag.name,ag.rules')
  165. ->where("aga.uid='{$uid}' and ag.status='normal'")
  166. ->select();
  167. $groups[$uid] = $user_groups ?: [];
  168. return $groups[$uid];
  169. }
  170. /**
  171. * 获得权限规则列表
  172. * @param int $uid 用户id
  173. * @return array
  174. */
  175. public function getRuleList($uid)
  176. {
  177. static $_rulelist = []; //保存用户验证通过的权限列表
  178. if (isset($_rulelist[$uid])) {
  179. return $_rulelist[$uid];
  180. }
  181. if (2 == $this->config['auth_type'] && Session::has('_rule_list_' . $uid)) {
  182. return Session::get('_rule_list_' . $uid);
  183. }
  184. // 读取用户规则节点
  185. $ids = $this->getRuleIds($uid);
  186. if (empty($ids)) {
  187. $_rulelist[$uid] = [];
  188. return [];
  189. }
  190. // 筛选条件
  191. $where = [
  192. 'status' => 'normal'
  193. ];
  194. if (!in_array('*', $ids)) {
  195. $where['id'] = ['in', $ids];
  196. }
  197. //读取用户组所有权限规则
  198. $this->rules = Db::name($this->config['auth_rule'])->where($where)->field('id,pid,condition,icon,name,title,ismenu')->select();
  199. //循环规则,判断结果。
  200. $rulelist = []; //
  201. if (in_array('*', $ids)) {
  202. $rulelist[] = "*";
  203. }
  204. foreach ($this->rules as $rule) {
  205. //超级管理员无需验证condition
  206. if (!empty($rule['condition']) && !in_array('*', $ids)) {
  207. //根据condition进行验证
  208. $user = $this->getUserInfo($uid); //获取用户信息,一维数组
  209. $command = preg_replace('/\{(\w*?)\}/', '$user[\'\\1\']', $rule['condition']);
  210. @(eval('$condition=(' . $command . ');'));
  211. if ($condition) {
  212. $rulelist[$rule['id']] = strtolower($rule['name']);
  213. }
  214. } else {
  215. //只要存在就记录
  216. $rulelist[$rule['id']] = strtolower($rule['name']);
  217. }
  218. }
  219. $_rulelist[$uid] = $rulelist;
  220. //登录验证则需要保存规则列表
  221. if (2 == $this->config['auth_type']) {
  222. //规则列表结果保存到session
  223. Session::set('_rule_list_' . $uid, $rulelist);
  224. }
  225. return array_unique($rulelist);
  226. }
  227. public function getRuleIds($uid)
  228. {
  229. //读取用户所属用户组
  230. $groups = $this->getGroups($uid);
  231. $ids = []; //保存用户所属用户组设置的所有权限规则id
  232. foreach ($groups as $g) {
  233. $ids = array_merge($ids, explode(',', trim($g['rules'], ',')));
  234. }
  235. $ids = array_unique($ids);
  236. return $ids;
  237. }
  238. /**
  239. * 获得用户资料
  240. * @param int $uid 用户id
  241. * @return mixed
  242. */
  243. protected function getUserInfo($uid)
  244. {
  245. static $user_info = [];
  246. $user = Db::name($this->config['auth_user']);
  247. // 获取用户表主键
  248. $_pk = is_string($user->getPk()) ? $user->getPk() : 'uid';
  249. if (!isset($user_info[$uid])) {
  250. $user_info[$uid] = $user->where($_pk, $uid)->find();
  251. }
  252. return $user_info[$uid];
  253. }
  254. }