截流自动化的商城平台
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.

RoleLogic.php 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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\shop\logic;
  20. use app\common\basics\Logic;
  21. use app\common\model\shop\ShopAuth;
  22. use app\common\model\shop\ShopRole;
  23. use app\common\model\shop\ShopRoleAuthIndex;
  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($shop_id, $get)
  36. {
  37. $relationModel = new ShopRoleAuthIndex();
  38. $result = $relationModel->alias('r')
  39. ->join('dev_shop_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 = ShopRole::where(['del' => 0, 'shop_id' => $shop_id])
  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 ShopRole::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($shop_id, $post)
  83. {
  84. $data = [
  85. 'name' => $post['name'],
  86. 'desc' => $post['desc'],
  87. 'shop_id' => $shop_id,
  88. 'create_time' => time(),
  89. ];
  90. try {
  91. Db::startTrans();
  92. $roleModel = new ShopRole();
  93. $roleAuthIndexModel = new ShopRoleAuthIndex();
  94. $role_id = $roleModel->insertGetId($data);
  95. $data = [];
  96. $post['auth_ids'] = empty($post['auth_ids'])?[]:$post['auth_ids'];
  97. foreach ($post['auth_ids'] as $k => $v) {
  98. $data[] = [
  99. 'role_id' => $role_id,
  100. 'menu_auth_id' => $v,
  101. ];
  102. }
  103. $roleAuthIndexModel->insertAll($data);
  104. Db::commit();
  105. return true;
  106. } catch (\Exception $e) {
  107. Db::rollback();
  108. self::$error = $e->getMessage();
  109. return false;
  110. }
  111. }
  112. /**
  113. * Notes: 编辑
  114. * @param $post
  115. * @author 段誉(2021/4/13 10:36)
  116. * @return bool
  117. */
  118. public static function editRole($shop_id, $post)
  119. {
  120. $data = [
  121. 'name' => $post['name'],
  122. 'desc' => $post['desc'],
  123. 'update_time' => time(),
  124. ];
  125. try {
  126. Db::startTrans();
  127. $roleModel = new ShopRole();
  128. $roleAuthIndexModel = new ShopRoleAuthIndex();
  129. $roleModel->where(['del' => 0, 'id' => $post['id'], 'shop_id' => $shop_id])->update($data);
  130. $roleAuthIndexModel->where(['role_id' => $post['id']])->delete();
  131. $data = [];
  132. $post['auth_ids'] = empty($post['auth_ids'])?[]:$post['auth_ids'];
  133. foreach ($post['auth_ids'] as $k => $v) {
  134. $data[] = [
  135. 'role_id' => $post['id'],
  136. 'menu_auth_id' => $v,
  137. ];
  138. }
  139. $roleAuthIndexModel->insertAll($data);
  140. Db::commit();
  141. return true;
  142. } catch (\Exception $e) {
  143. Db::rollback();
  144. self::$error = $e->getMessage();
  145. return false;
  146. }
  147. }
  148. /**
  149. * Notes: 删除
  150. * @param $role_id
  151. * @author 段誉(2021/4/13 10:36)
  152. * @return ShopRole
  153. */
  154. public static function delRole($shop_id, $role_id)
  155. {
  156. return ShopRole::where([
  157. 'del' => 0,
  158. 'id' => $role_id,
  159. 'shop_id' => $shop_id
  160. ])->update(['del' => 1, 'update_time' => time()]);
  161. }
  162. /**
  163. * Notes: 获取菜单权限树
  164. * @param string $role_id
  165. * @author 段誉(2021/4/13 10:36)
  166. * @return array
  167. * @throws \think\db\exception\DataNotFoundException
  168. * @throws \think\db\exception\DbException
  169. * @throws \think\db\exception\ModelNotFoundException
  170. */
  171. public static function authTree($role_id = '')
  172. {
  173. $lists = ShopAuth::where(['disable' => 0, 'del' => 0])->select();
  174. $pids = ShopAuth::where(['disable' => 0, 'type' => 1, 'del' => 0])->column('pid');
  175. foreach ($lists as $k => $v) {
  176. $lists[$k]['spread'] = in_array($v['id'], $pids) ? true : false;
  177. }
  178. $menu_auth_ids = [];
  179. if ($role_id) {
  180. $menu_auth_ids = ShopRoleAuthIndex::where(['role_id' => $role_id])
  181. ->column('menu_auth_id');
  182. }
  183. return self::authListToTree($lists, 0, $menu_auth_ids);
  184. }
  185. /**
  186. * Notes: 列表结构转换成树形结构
  187. * @param $lists
  188. * @param int $pid
  189. * @param array $menu_auth_ids
  190. * @author 段誉(2021/4/13 10:36)
  191. * @return array
  192. */
  193. public static function authListToTree($lists, $pid = 0, $menu_auth_ids = [])
  194. {
  195. $tree = [];
  196. foreach ($lists as $k => $v) {
  197. if ($v['pid'] == $pid) {
  198. $temp['id'] = $v['id'];
  199. $temp['field'] = 'auth_ids[' . $v['id'] . ']';
  200. $temp['title'] = $v['name'];
  201. $temp['children'] = self::authListToTree($lists, $v['id'], $menu_auth_ids);
  202. $temp['checked'] = in_array($v['id'], $menu_auth_ids) && empty($temp['children']) ? true : false;
  203. $temp['spread'] = $v['spread'];
  204. $tree[] = $temp;
  205. }
  206. }
  207. return $tree;
  208. }
  209. }