Permission.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php
  2. namespace catchAdmin\permissions\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\base\CatchController;
  5. use catcher\CatchResponse;
  6. use catcher\exceptions\FailedException;
  7. use catcher\library\ParseClass;
  8. use catcher\Tree;
  9. use catchAdmin\permissions\model\Permissions;
  10. use think\helper\Str;
  11. use think\response\Json;
  12. class Permission extends CatchController
  13. {
  14. protected $permissions;
  15. public function __construct(Permissions $permissions)
  16. {
  17. $this->permissions = $permissions;
  18. }
  19. /**
  20. *
  21. * @time 2019年12月11日
  22. * @param Request $request
  23. * @return Json
  24. * @throws \think\db\exception\DbException
  25. * @throws \think\db\exception\ModelNotFoundException
  26. * @throws \think\db\exception\DataNotFoundException
  27. */
  28. public function index(Request $request): Json
  29. {
  30. // 获取菜单类型
  31. $menuList = $this->permissions->getList(true);
  32. // 获取按钮类型并且重新排列
  33. $buttonList = [];
  34. $this->permissions
  35. ->whereIn('parent_id', array_unique($menuList->column('id')))
  36. ->where('type', Permissions::BTN_TYPE)
  37. ->select()->each(function ($item) use (&$buttonList){
  38. $buttonList[$item['parent_id']][] = $item->toArray();
  39. });
  40. // 子节点的 key
  41. $children = $request->param('actionList') ?? 'children';
  42. // 返回树结构
  43. return CatchResponse::success($menuList->each(function (&$item) use ($buttonList, $children){
  44. $item[$children] = $buttonList[$item['id']] ?? [];
  45. })->toTree());
  46. }
  47. /**
  48. *
  49. * @time 2019年12月11日
  50. * @param Request $request
  51. * @return Json
  52. * @throws \think\db\exception\DbException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. * @throws \think\db\exception\DataNotFoundException
  55. */
  56. public function save(Request $request): Json
  57. {
  58. $params = $request->param();
  59. // 如果是子分类 自动写入父类模块
  60. $parentId = $params['parent_id'] ?? 0;
  61. // 按钮类型寻找上级
  62. if ($params['type'] == Permissions::BTN_TYPE && $parentId) {
  63. $permissionMark = $params['permission_mark'];
  64. // 查找父级
  65. $parentPermission = $this->permissions->findBy($parentId);
  66. // 如果父级是顶级 parent_id = 0
  67. if ($parentPermission->parent_id) {
  68. if (Str::contains($parentPermission->permission_mark, '@')) {
  69. list($controller, $action) = explode('@', $parentPermission->permission_mark);
  70. $permissionMark = $controller . '@' . $permissionMark;
  71. } else {
  72. $permissionMark = $parentPermission->permission_mark .'@'. $permissionMark;
  73. }
  74. }
  75. $params['permission_mark'] = $permissionMark;
  76. $params['module'] = $parentPermission->module;
  77. }
  78. return CatchResponse::success($this->permissions->storeBy($params));
  79. }
  80. /**
  81. *
  82. * @time 2019年12月11日
  83. * @param $id
  84. * @param Request $request
  85. * @return Json
  86. */
  87. public function update($id, Request $request): Json
  88. {
  89. $permission = $this->permissions->findBy($id);
  90. $params = $request->param();
  91. // 按钮类型
  92. if ($params['type'] == Permissions::BTN_TYPE && $permission->parent_id) {
  93. $parentPermission = $this->permissions->findBy($permission->parent_id);
  94. $permissionMark = $params['permission_mark'];
  95. if ($parentPermission->parent_id) {
  96. if (Str::contains($parentPermission->permission_mark, '@')) {
  97. list($controller, $action) = explode('@', $parentPermission->permission_mark);
  98. $permissionMark = $controller . '@' . $permissionMark;
  99. } else {
  100. $permissionMark = $parentPermission->permission_mark .'@'. $permissionMark;
  101. }
  102. }
  103. $params['permission_mark'] = $permissionMark;
  104. $this->permissions->where('id',$id)->update(array_merge($params, [
  105. 'parent_id' => $permission->parent_id,
  106. 'level' => $permission->level,
  107. 'updated_at' => time()
  108. ]));
  109. return CatchResponse::success();
  110. }
  111. $params = array_merge($request->param(), [
  112. 'parent_id' => $permission->parent_id,
  113. 'level' => $permission->level
  114. ]);
  115. if ($permission->updateBy($id, $params)) {
  116. if ($params['module'] ?? false) {
  117. $this->permissions->updateBy($permission->id, [
  118. 'module' => $params['module'],
  119. ], 'parent_id');
  120. }
  121. return CatchResponse::success();
  122. }
  123. throw new FailedException('更新失败');
  124. }
  125. /**
  126. *
  127. * @time 2019年12月11日
  128. * @param $id
  129. * @throws FailedException
  130. * @throws \think\db\exception\DataNotFoundException
  131. * @throws \think\db\exception\DbException
  132. * @throws \think\db\exception\ModelNotFoundException
  133. * @return Json
  134. */
  135. public function delete($id): Json
  136. {
  137. if ($this->permissions->where('parent_id', $id)->find()) {
  138. throw new FailedException('存在子菜单,无法删除');
  139. }
  140. $this->permissions->findBy($id)->roles()->detach();
  141. return CatchResponse::success($this->permissions->deleteBy($id,true));
  142. }
  143. /**
  144. * 显示/隐藏
  145. *
  146. * @author JaguarJack
  147. * @email njphper@gmail.com
  148. * @time 2020/5/19
  149. * @param $id
  150. * @return Json
  151. */
  152. public function show($id)
  153. {
  154. $this->permissions->show($id);
  155. return CatchResponse::success();
  156. }
  157. /**
  158. *
  159. * @time 2020年06月05日
  160. * @param $id
  161. * @param ParseClass $parseClass
  162. * @throws \think\db\exception\DataNotFoundException
  163. * @throws \think\db\exception\DbException
  164. * @throws \think\db\exception\ModelNotFoundException
  165. * @return Json
  166. */
  167. public function getMethods($id, ParseClass $parseClass)
  168. {
  169. $permission = Permissions::where('id', $id)->find();
  170. $module = $permission->module;
  171. $controller = explode('@', $permission->permission_mark)[0];
  172. try {
  173. $methods = $parseClass->setModule('catch')->setRule($module, $controller)->onlySelfMethods();
  174. return CatchResponse::success($methods);
  175. }catch (\Exception $e) {
  176. return CatchResponse::success([]);
  177. }
  178. }
  179. }