Role.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?php
  2. namespace catchAdmin\permissions\controller;
  3. use catchAdmin\permissions\model\Permissions;
  4. use catchAdmin\permissions\model\Roles;
  5. use catcher\base\CatchRequest as Request;
  6. use catcher\base\CatchController;
  7. use catcher\CatchResponse;
  8. use catcher\exceptions\FailedException;
  9. use catcher\Tree;
  10. use think\response\Json;
  11. use catchAdmin\permissions\model\Roles as RoleModel;
  12. use think\facade\Db;
  13. class Role extends CatchController
  14. {
  15. protected $role;
  16. public function __construct(RoleModel $role)
  17. {
  18. $this->role = $role;
  19. }
  20. /**
  21. *
  22. * @time 2019年12月09日
  23. * @return string
  24. */
  25. public function index()
  26. {
  27. return CatchResponse::success($this->role->getList());
  28. }
  29. /**
  30. *获取部分角色列表
  31. * @time 2019年12月09日
  32. * @return string
  33. */
  34. public function getPartRoles()
  35. {
  36. return CatchResponse::success($this->role->getPartList());
  37. }
  38. /**
  39. *获取当前用户数据权限
  40. * @time 2019年12月09日
  41. * @return string
  42. */
  43. public function isAllDataRange()
  44. {
  45. return CatchResponse::success($this->role->isAllDataRange());
  46. }
  47. /**
  48. *
  49. * @time 2019年12月11日
  50. * @param Request $request
  51. * @return Json
  52. * @throws \think\db\exception\DbException
  53. */
  54. public function save(Request $request)
  55. {
  56. $params = $request->param();
  57. if (Roles::where('identify', $params['identify'])->find()) {
  58. throw new FailedException('角色标识 [' . $params['identify'] . ']已存在');
  59. }
  60. Db::startTrans();
  61. // 保存角色
  62. $role_id = $this->role->storeBy($params);
  63. if (!$role_id) {
  64. return CatchResponse::fail('保存角色失败');
  65. }
  66. // 保存权限
  67. try {
  68. $this->role->attachPermissions(array_unique($params['permissions']));
  69. } catch (\Exception $e) {
  70. Db::rollback();
  71. return CatchResponse::fail('保存权限失败');
  72. }
  73. // 追加角色 暂时关闭
  74. // if ($params['identify'] != 'admin' && $params['identify'] != 'manage') {
  75. // $user = request()->user();
  76. // $save_data = ['uid'=>$user['id'], 'role_id'=>$role_id];
  77. // try {
  78. // Db::table('user_has_roles')->save($save_data);
  79. // } catch (\Exception $e) {
  80. // Db::rollback();
  81. // return CatchResponse::fail('保存失败');
  82. // }
  83. // }
  84. Db::commit();
  85. return CatchResponse::success('保存成功');
  86. }
  87. /**
  88. *
  89. * @time 2019年12月11日
  90. * @param id
  91. */
  92. public function read($id)
  93. {
  94. $role = $this->role->findBy($id);
  95. $role->permissions = $role->getPermissions();
  96. return CatchResponse::success($role);
  97. }
  98. /**
  99. *
  100. * @time 2019年12月11日
  101. * @param $id
  102. * @param Request $request
  103. * @return Json
  104. * @throws \think\db\exception\DbException
  105. */
  106. public function update($id, Request $request): Json
  107. {
  108. if (Roles::where('identify', $request->param('identify'))->where('id', '<>', $id)->find()) {
  109. throw new FailedException('角色标识 [' . $request->param('identify') . ']已存在');
  110. }
  111. $this->role->updateBy($id, $request->param());
  112. $role = $this->role->findBy($id);
  113. $hasPermissionIds = $role->getPermissions()->column('id');
  114. $permissionIds = $request->param('permissions');
  115. // 已存在权限 IDS
  116. $existedPermissionIds = [];
  117. foreach ($hasPermissionIds as $hasPermissionId) {
  118. if (in_array($hasPermissionId, $permissionIds)) {
  119. $existedPermissionIds[] = $hasPermissionId;
  120. }
  121. }
  122. $attachIds = array_diff($permissionIds, $existedPermissionIds);
  123. $detachIds = array_diff($hasPermissionIds, $existedPermissionIds);
  124. if (!empty($detachIds)) {
  125. $role->detachPermissions($detachIds);
  126. }
  127. if (!empty($attachIds)) {
  128. $role->attachPermissions(array_unique($attachIds));
  129. }
  130. return CatchResponse::success();
  131. }
  132. /**
  133. *
  134. * @time 2019年12月11日
  135. * @param $id
  136. * @throws FailedException
  137. * @throws \think\db\exception\DataNotFoundException
  138. * @throws \think\db\exception\DbException
  139. * @throws \think\db\exception\ModelNotFoundException
  140. * @return Json
  141. */
  142. public function delete($id): Json
  143. {
  144. if ($this->role->where('parent_id', $id)->find()) {
  145. throw new FailedException('存在子角色,无法删除');
  146. }
  147. if ( Db::table('user_has_roles')->where('role_id', $id)->where('uid','<>',1)->find()) {
  148. throw new FailedException('存在该角色用户');
  149. }
  150. $role = $this->role->findBy($id);
  151. // 删除权限
  152. $role->detachPermissions();
  153. // 删除用户关联
  154. $role->users()->detach();
  155. // 删除
  156. $this->role->deleteBy($id,true);
  157. return CatchResponse::success();
  158. }
  159. /**
  160. *
  161. * @time 2019年12月11日
  162. * @param Request $request
  163. * @param \catchAdmin\permissions\model\Permissions $permission
  164. * @return Json
  165. */
  166. public function getPermissions(Request $request, \catchAdmin\permissions\model\Permissions $permission): Json
  167. {
  168. $parentRoleHasPermissionIds = [];
  169. if ($request->param('parent_id')) {
  170. $permissions = $this->role->findBy($request->param('parent_id'))->getPermissions();
  171. foreach ($permissions as $_permission) {
  172. $parentRoleHasPermissionIds[] = $_permission->pivot->permission_id;
  173. }
  174. }
  175. $permissions = Tree::done(Permissions::whereIn('id', $parentRoleHasPermissionIds)->select()->toArray());
  176. $permissionIds = [];
  177. if ($request->param('role_id')) {
  178. $roleHasPermissions = $this->role->findBy($request->param('role_id'))->getPermissions();
  179. foreach ($roleHasPermissions as $_permission) {
  180. $permissionIds[] = $_permission->pivot->permission_id;
  181. }
  182. }
  183. return CatchResponse::success([
  184. 'permissions' => $permissions,
  185. 'hasPermissions' => $permissionIds,
  186. ]);
  187. }
  188. }