Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AuthRoleBehavior.php 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <?php
  2. namespace app\admin\behavior;
  3. /**
  4. * 管理员权限控制
  5. */
  6. load_trait('controller/Jump');
  7. class AuthRoleBehavior
  8. {
  9. use \traits\controller\Jump;
  10. protected static $actionName;
  11. protected static $controllerName;
  12. protected static $moduleName;
  13. protected static $method;
  14. protected static $admin_info;
  15. /**
  16. * 构造方法
  17. * @param Request $request Request对象
  18. * @access public
  19. */
  20. public function __construct()
  21. {
  22. !isset(self::$moduleName) && self::$moduleName = request()->module();
  23. !isset(self::$controllerName) && self::$controllerName = request()->controller();
  24. !isset(self::$actionName) && self::$actionName = request()->action();
  25. !isset(self::$method) && self::$method = request()->method();
  26. !isset(self::$admin_info) && self::$admin_info = session('admin_info');
  27. }
  28. /**
  29. * 模块初始化
  30. * @param array $params 传入参数
  31. * @access public
  32. */
  33. public function moduleInit(&$params)
  34. {
  35. }
  36. /**
  37. * 操作开始执行
  38. * @param array $params 传入参数
  39. * @access public
  40. */
  41. public function actionBegin(&$params)
  42. {
  43. if (0 < intval(self::$admin_info['role_id'])) {
  44. // 检测全局的增、改、删的权限——优先级最高
  45. $this->cud_access();
  46. // 检测每个小插件的权限
  47. $this->weapp_access();
  48. // 检测栏目管理的每个栏目权限
  49. $this->arctype_access();
  50. // 检测内容管理每个栏目对应的内容里列表等权限
  51. $this->archives_access();
  52. }
  53. }
  54. /**
  55. * 视图内容过滤
  56. * @param array $params 传入参数
  57. * @access public
  58. */
  59. public function viewFilter(&$params)
  60. {
  61. }
  62. /**
  63. * 应用结束
  64. * @param array $params 传入参数
  65. * @access public
  66. */
  67. public function appEnd(&$params)
  68. {
  69. }
  70. /**
  71. * 检测全局的增、改、删的权限
  72. * @access private
  73. */
  74. private function cud_access()
  75. {
  76. /*只有相应的控制器和操作名才执行,以便提高性能*/
  77. $ctl = strtolower(self::$controllerName);
  78. $act = strtolower(self::$actionName);
  79. if ('archives' == $ctl && in_array($act, ['check','uncheck'])) { // 审核信息\取消审核信息
  80. $act = 'changetableval';
  81. }
  82. $actArr = ['add','edit','del'];
  83. if ('weapp' == $ctl && 'execute' == $act) {
  84. $sa = input('param.sa/s');
  85. foreach ($actArr as $key => $cud) {
  86. $sa = preg_replace('/^(.*)_('.$cud.')$/i', '$2', $sa); // 同名add 或者以_add类似结尾都符合
  87. if ($sa == $cud) {
  88. $admin_info = self::$admin_info;
  89. $auth_role_info = !empty($admin_info['auth_role_info']) ? $admin_info['auth_role_info'] : [];
  90. $cudArr = !empty($auth_role_info['cud']) ? $auth_role_info['cud'] : [];
  91. if (!in_array($sa, $cudArr)) {
  92. $this->error('您没有操作权限,请联系超级管理员分配权限');
  93. }
  94. break;
  95. }
  96. }
  97. } else {
  98. $post = input('post.');
  99. array_push($actArr, 'changetableval'); // 审核信息
  100. foreach ($actArr as $key => $cud) {
  101. $act = preg_replace('/^(.*)_('.$cud.')$/i', '$2', $act); // 同名add 或者以_add类似结尾都符合
  102. if ($act == $cud) {
  103. $admin_info = self::$admin_info;
  104. $auth_role_info = !empty($admin_info['auth_role_info']) ? $admin_info['auth_role_info'] : [];
  105. $cudArr = !empty($auth_role_info['cud']) ? $auth_role_info['cud'] : [];
  106. if (!in_array($act, $cudArr)) {
  107. if ('changetableval' == $act && 'index' == $ctl) {
  108. // 审核信息
  109. if ('archives' == $post['table'] && 'arcrank' == $post['field']) {
  110. $this->error('您没有操作权限,请联系超级管理员分配权限', null, '', 2);
  111. }
  112. } else {
  113. $this->error('您没有操作权限,请联系超级管理员分配权限');
  114. }
  115. } else {
  116. if (!in_array('changetableval', $cudArr)) {
  117. // 审核信息
  118. if (IS_POST && 'edit' == $act) {
  119. $archivesInfo = M('archives')->field('arcrank,admin_id')->find($post['aid']);
  120. if (-1 == $archivesInfo['arcrank'] && isset($post['arcrank']) && $archivesInfo['arcrank'] != $post['arcrank']) {
  121. $this->error('您没有操作权限,请联系超级管理员分配权限', url('Archives/edit', ['id'=>$post['aid']]), '', 3);
  122. }
  123. }
  124. }
  125. }
  126. break;
  127. }
  128. }
  129. }
  130. /*--end*/
  131. }
  132. /**
  133. * 检测每个小插件的权限
  134. * @access private
  135. */
  136. private function weapp_access()
  137. {
  138. /*只有相应的控制器和操作名才执行,以便提高性能*/
  139. $ctl = strtolower(self::$controllerName);
  140. $act = strtolower(self::$actionName);
  141. if ('weapp' == $ctl) {
  142. if ('execute' == $act) {
  143. $sc = input('param.sc/s');
  144. $sm = input('param.sm/s');
  145. $sa = input('param.sa/s');
  146. $admin_info = self::$admin_info;
  147. $auth_role_info = !empty($admin_info['auth_role_info']) ? $admin_info['auth_role_info'] : [];
  148. $plugins = !empty($auth_role_info['permission']['plugins']) ? $auth_role_info['permission']['plugins'] : [];
  149. // 插件本身设置的权限列表
  150. $config = include WEAPP_PATH.$sm.DS.'config.php';
  151. $plugins_permission = !empty($config['permission']) ? array_keys($config['permission']) : [];
  152. // 管理员拥有的插件具体权限
  153. $admin_permission = !empty($plugins[$sm]['child']) ? $plugins[$sm]['child'] : [];
  154. // 没有赋给管理员的插件具体权限
  155. $diff_plugins_perm = array_diff($plugins_permission, $admin_permission);
  156. // 检测插件权限
  157. $bool = true;
  158. if (empty($plugins_permission) && !isset($plugins[$sm])) {
  159. $bool = false;
  160. } else if (!empty($plugins_permission)) {
  161. foreach ($diff_plugins_perm as $key => $val) {
  162. if (strtolower($sm.'@'.$sa) == strtolower($val)) {
  163. $bool = false;
  164. break;
  165. }
  166. }
  167. }
  168. if (!$bool) {
  169. $this->error('您没有操作权限,请联系超级管理员分配权限');
  170. }
  171. } else if (in_array($act, ['plugin','mybuy'])) {
  172. if (0 < intval(session('admin_info.role_id'))) {
  173. $this->error('您没有操作权限,只允许创始人和超级管理员操作');
  174. }
  175. }
  176. }
  177. /*--end*/
  178. }
  179. /**
  180. * 检测栏目管理的每个栏目权限
  181. * @access private
  182. */
  183. private function arctype_access()
  184. {
  185. /*只有相应的控制器和操作名才执行,以便提高性能*/
  186. $ctl_all = strtolower(self::$controllerName.'@*');
  187. $ctlArr = ['arctype@*'];
  188. if (in_array($ctl_all, $ctlArr)) {
  189. $typeids = [];
  190. if (in_array(strtolower(self::$actionName), ['edit','del'])) {
  191. $typeids[] = input('id/d', 0);
  192. } else if (in_array(strtolower(self::$actionName), ['add'])) {
  193. $typeids[] = input('parent_id/d', 0);
  194. }
  195. if (!$this->is_check_arctype($typeids)) {
  196. $this->error('您没有操作权限,请联系超级管理员分配权限');
  197. }
  198. }
  199. /*--end*/
  200. }
  201. /**
  202. * 检测内容管理每个栏目对应的内容里列表等权限
  203. * @access private
  204. */
  205. private function archives_access()
  206. {
  207. /*只有相应的控制器和操作名才执行,以便提高性能*/
  208. $ctl = strtolower(self::$controllerName);
  209. $act = strtolower(self::$actionName);
  210. $ctl_act = $ctl.'@'.$act;
  211. $ctl_all = $ctl.'@*';
  212. $ctlArr= ['arctype@single','archives@*'];
  213. $row = \think\Db::name('channeltype')
  214. ->where('nid','NOTIN', ['single'])
  215. ->column('ctl_name');
  216. foreach ($row as $key => $val) {
  217. array_push($ctlArr, strtolower($val).'@*');
  218. }
  219. if (in_array($ctl_act, $ctlArr) || in_array($ctl_all, $ctlArr)) {
  220. $typeids = [];
  221. if (in_array($act, ['add','edit','del'])) {
  222. $aids = [];
  223. switch ($act) {
  224. case 'edit':
  225. $aids = input('id/a', []);
  226. break;
  227. case 'del':
  228. $aids = input('del_id/a', []);
  229. break;
  230. default:
  231. # code...
  232. break;
  233. }
  234. if (!empty($aids)) {
  235. $typeids = M('archives')->where('aid','IN',$aids)->column('typeid');
  236. }
  237. } else {
  238. $typeids[] = input('typeid/d', 0);
  239. }
  240. if (!$this->is_check_arctype($typeids)) {
  241. $this->error('您没有操作权限,请联系超级管理员分配权限');
  242. }
  243. }
  244. /*--end*/
  245. }
  246. /**
  247. * 检测栏目是否有权限
  248. */
  249. private function is_check_arctype($typeids = []) {
  250. $bool_flag = true;
  251. $admin_info = self::$admin_info;
  252. if (0 < intval($admin_info['role_id'])) {
  253. $auth_role_info = $admin_info['auth_role_info'];
  254. $permission = $auth_role_info['permission'];
  255. foreach ($typeids as $key => $tid) {
  256. if (0 < intval($tid) && !in_array($tid, $permission['arctype'])) {
  257. $bool_flag = false;
  258. break;
  259. }
  260. }
  261. }
  262. return $bool_flag;
  263. }
  264. }