Нема описа
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.

AuthRole.php 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. class AuthRole extends Model{
  17. protected $name = 'auth_role';
  18. protected $type = array(
  19. 'language' => 'serialize',
  20. 'cud' => 'serialize',
  21. 'permission' => 'serialize',
  22. );
  23. protected function initialize(){
  24. parent::initialize();
  25. }
  26. public function getRole($where){
  27. $result =Db::name($this->name)->where($where)->find();
  28. if (!empty($result)) {
  29. $result['language'] = unserialize($result['language']);
  30. $result['cud'] = unserialize($result['cud']);
  31. $result['permission'] = unserialize($result['permission']);
  32. }
  33. return $result;
  34. }
  35. public function getRoleAll($where = ['status'=>1]){
  36. $result =Db::name($this->name)->where($where)->order('id asc')->select();
  37. foreach ($result as $key => $val) {
  38. $val['language'] = unserialize($val['language']);
  39. $val['cud'] = unserialize($val['cud']);
  40. $val['permission'] = unserialize($val['permission']);
  41. $result[$key] = $val;
  42. }
  43. return $result;
  44. }
  45. public function saveAuthRole($input, $batchAdminRole = false){
  46. if (!empty($input['arctype_str'])) {
  47. $input['permission']['arctype'] = explode(',', $input['arctype_str']);
  48. }
  49. $permission = $input['permission'] ? $input['permission'] : null;
  50. // 角色权限
  51. $permission_rules = !empty($permission['rules']) ? $permission['rules'] : [];
  52. /*栏目与内容权限*/
  53. if (!empty($permission['arctype'])) {
  54. $permission_rules[] = 2; // 内容管理的权限ID,在conf/auth_rule.php配置文件
  55. }
  56. /*--end*/
  57. /*插件应用权限*/
  58. if (!empty($permission['plugins'])) {
  59. $permission_rules[] = 15; // 插件应用的权限ID,在conf/auth_rule.php配置文件
  60. }
  61. /*--end*/
  62. $permission['rules'] = $permission_rules;
  63. $data = array(
  64. 'name' => trim($input['name']),
  65. 'pid' => ! empty($input['pid']) ? (int)$input['pid'] : 0,
  66. 'grade' => ! empty($input['grade']) ? (int)$input['grade'] : 0,
  67. 'remark' => ! empty($input['remark']) ? $input['remark'] : '',
  68. 'language' => ! empty($input['language']) ? $input['language'] : null,
  69. 'online_update' => ! empty($input['online_update']) ? (int)$input['online_update'] : 0,
  70. 'switch_map' => ! empty($input['switch_map']) ? (int)$input['switch_map'] : 0,
  71. 'editor_visual' => ! empty($input['editor_visual']) ? (int)$input['editor_visual'] : 0,
  72. 'only_oneself' => ! empty($input['only_oneself']) ? (int)$input['only_oneself'] : 0,
  73. 'check_oneself' => ! empty($input['check_oneself']) ? (int)$input['check_oneself'] : 0,
  74. 'cud' => ! empty($input['cud']) ? $input['cud'] : null,
  75. 'permission' => $permission,
  76. 'status' => ! empty($input['status']) ? (int)$input['status'] : 1,
  77. 'sort_order' => ! empty($input['sort_order']) ? (int)$input['sort_order'] : 100,
  78. 'add_time' => getTime(),
  79. 'update_time' => getTime(),
  80. );
  81. if(! empty($input['id']) && $input['id'] > 0){
  82. $data['id'] = $input['id'];
  83. $rs = parent::update($data);
  84. $rs = !empty($rs) ? $input['id'] : $rs;
  85. }else{
  86. $data['admin_id'] = session('admin_info.admin_id');
  87. parent::save($data);
  88. $rs = Db::name($this->name)->getLastInsID();
  89. }
  90. \think\Cache::clear('auth_role');
  91. return $rs;
  92. }
  93. /**
  94. * 同步栏目ID到权限组,默认是赋予该栏目的权限
  95. * @param int $typeid
  96. */
  97. public function syn_auth_role($typeid = 0)
  98. {
  99. if (0 < intval($typeid)) {
  100. $roleRow = $this->getRoleAll();
  101. if (!empty($roleRow)) {
  102. $saveData = [];
  103. foreach ($roleRow as $key => $val) {
  104. $permission = $val['permission'];
  105. $rules = !empty($permission['rules']) ? $permission['rules'] : [];
  106. if (!in_array(1, $rules)) {
  107. continue;
  108. }
  109. $arctype = !empty($permission['arctype']) ? $permission['arctype'] : [];
  110. if (!empty($arctype)) {
  111. array_push($arctype, $typeid);
  112. $permission['arctype'] = $arctype;
  113. }
  114. $saveData[] = array(
  115. 'id' => $val['id'],
  116. 'permission' => $permission,
  117. );
  118. }
  119. $r = $this->saveAll($saveData);
  120. if (false != $r && 0 < intval(session('admin_info.role_id'))) {
  121. /*及时更新当前管理员权限*/
  122. $auth_role_info = $this->getRole(array('id' => session('admin_info.role_id')));
  123. session('admin_info.auth_role_info', $auth_role_info);
  124. /*--end*/
  125. }
  126. }
  127. }
  128. }
  129. }