截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

RoleLogic.php 7.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic;
  20. use app\common\basics\Logic;
  21. use app\common\model\Auth;
  22. use app\common\model\Role;
  23. use app\common\model\RoleAuthIndex;
  24. use think\facade\Db;
  25. class RoleLogic extends Logic
  26. {
  27. /**
  28. * Notes: 角色列表
  29. * @author 段誉(2021/4/13 10:35)
  30. * @return array
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. */
  35. public static function lists($get)
  36. {
  37. $relationModel = new RoleAuthIndex();
  38. $result = $relationModel->alias('r')
  39. ->join('dev_auth m', 'r.menu_auth_id=m.id')
  40. ->where(['m.del' => 0])
  41. ->order(['sort' => 'desc'])
  42. ->field(['m.name' => 'name', 'r.role_id' => 'role_id'])
  43. ->select();
  44. $role_id_menu_auth_names = [];
  45. foreach ($result as $k => $v) {
  46. if (isset($role_id_menu_auth_names[$v['role_id']])) {
  47. $role_id_menu_auth_names[$v['role_id']] .= $v['name'] . ',';
  48. } else {
  49. $role_id_menu_auth_names[$v['role_id']] = $v['name'] . ',';
  50. }
  51. }
  52. $lists = Role::where('del', 0)
  53. ->paginate([
  54. 'list_rows'=> $get['limit'],
  55. 'page'=> $get['page']
  56. ]);
  57. foreach ($lists as $k => $v) {
  58. $lists[$k]['auth_str'] = isset($role_id_menu_auth_names[$v['id']]) ? $role_id_menu_auth_names[$v['id']] : '';
  59. $lists[$k]['auth_str'] = rtrim($lists[$k]['auth_str'], ',');
  60. }
  61. return ['lists' => $lists->getCollection(), 'count' => $lists->total()];
  62. }
  63. /**
  64. * Notes: 详情
  65. * @param $role_id
  66. * @author 段誉(2021/4/13 10:35)
  67. * @return array|\think\Model|null
  68. * @throws \think\db\exception\DataNotFoundException
  69. * @throws \think\db\exception\DbException
  70. * @throws \think\db\exception\ModelNotFoundException
  71. */
  72. public static function roleInfo($role_id)
  73. {
  74. return Role::where(['id' => $role_id])->field(['id', 'name', 'desc'])->find();
  75. }
  76. /**
  77. * Notes: 添加
  78. * @param $post
  79. * @author 段誉(2021/4/13 10:35)
  80. * @return bool
  81. */
  82. public static function addRole($post)
  83. {
  84. $data = [
  85. 'name' => $post['name'],
  86. 'desc' => $post['desc'],
  87. 'create_time' => time(),
  88. ];
  89. try {
  90. Db::startTrans();
  91. $roleModel = new Role();
  92. $roleAuthIndexModel = new RoleAuthIndex();
  93. $role_id = $roleModel->insertGetId($data);
  94. $data = [];
  95. $post['auth_ids'] = empty($post['auth_ids'])?[]:$post['auth_ids'];
  96. foreach ($post['auth_ids'] as $k => $v) {
  97. $data[] = [
  98. 'role_id' => $role_id,
  99. 'menu_auth_id' => $v,
  100. ];
  101. }
  102. $roleAuthIndexModel->insertAll($data);
  103. Db::commit();
  104. return true;
  105. } catch (\Exception $e) {
  106. Db::rollback();
  107. self::$error = $e->getMessage();
  108. return false;
  109. }
  110. }
  111. /**
  112. * Notes: 编辑
  113. * @param $post
  114. * @author 段誉(2021/4/13 10:36)
  115. * @return bool
  116. */
  117. public static function editRole($post)
  118. {
  119. $data = [
  120. 'name' => $post['name'],
  121. 'desc' => $post['desc'],
  122. 'update_time' => time(),
  123. ];
  124. try {
  125. Db::startTrans();
  126. $roleModel = new Role();
  127. $roleAuthIndexModel = new RoleAuthIndex();
  128. $roleModel->where(['del' => 0, 'id' => $post['id']])->update($data);
  129. $roleAuthIndexModel->where(['role_id' => $post['id']])->delete();
  130. $data = [];
  131. $post['auth_ids'] = empty($post['auth_ids'])?[]:$post['auth_ids'];
  132. foreach ($post['auth_ids'] as $k => $v) {
  133. $data[] = [
  134. 'role_id' => $post['id'],
  135. 'menu_auth_id' => $v,
  136. ];
  137. }
  138. $roleAuthIndexModel->insertAll($data);
  139. Db::commit();
  140. return true;
  141. } catch (\Exception $e) {
  142. Db::rollback();
  143. self::$error = $e->getMessage();
  144. return false;
  145. }
  146. }
  147. /**
  148. * Notes: 删除
  149. * @param $role_id
  150. * @author 段誉(2021/4/13 10:36)
  151. * @return Role
  152. */
  153. public static function delRole($role_id)
  154. {
  155. return Role::where(['del' => 0, 'id' => $role_id])->update(['del' => 1, 'update_time' => time()]);
  156. }
  157. /**
  158. * Notes: 获取菜单权限树
  159. * @param string $role_id
  160. * @author 段誉(2021/4/13 10:36)
  161. * @return array
  162. * @throws \think\db\exception\DataNotFoundException
  163. * @throws \think\db\exception\DbException
  164. * @throws \think\db\exception\ModelNotFoundException
  165. */
  166. public static function authTree($role_id = '')
  167. {
  168. $lists = Auth::where(['disable' => 0, 'del' => 0])->select();
  169. $pids = Auth::where(['disable' => 0, 'type' => 1, 'del' => 0])->column('pid');
  170. foreach ($lists as $k => $v) {
  171. $lists[$k]['spread'] = in_array($v['id'], $pids) ? true : false;
  172. }
  173. $menu_auth_ids = [];
  174. if ($role_id) {
  175. $menu_auth_ids = RoleAuthIndex::where(['role_id' => $role_id])
  176. ->column('menu_auth_id');
  177. }
  178. return self::authListToTree($lists, 0, $menu_auth_ids);
  179. }
  180. /**
  181. * Notes: 列表结构转换成树形结构
  182. * @param $lists
  183. * @param int $pid
  184. * @param array $menu_auth_ids
  185. * @author 段誉(2021/4/13 10:36)
  186. * @return array
  187. */
  188. public static function authListToTree($lists, $pid = 0, $menu_auth_ids = [])
  189. {
  190. $tree = [];
  191. foreach ($lists as $k => $v) {
  192. if ($v['pid'] == $pid) {
  193. $temp['id'] = $v['id'];
  194. $temp['field'] = 'auth_ids[' . $v['id'] . ']';
  195. $temp['title'] = $v['name'];
  196. $temp['children'] = self::authListToTree($lists, $v['id'], $menu_auth_ids);
  197. $temp['checked'] = in_array($v['id'], $menu_auth_ids) && empty($temp['children']) ? true : false;
  198. $temp['spread'] = $v['spread'];
  199. $tree[] = $temp;
  200. }
  201. }
  202. return $tree;
  203. }
  204. }