User.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <?php
  2. namespace catchAdmin\permissions\controller;
  3. use catchAdmin\permissions\excel\UserExport;
  4. use catcher\base\CatchRequest as Request;
  5. use catchAdmin\permissions\model\Permissions;
  6. use catchAdmin\permissions\model\Roles;
  7. use catchAdmin\permissions\model\Users;
  8. use catchAdmin\permissions\request\CreateRequest;
  9. use catchAdmin\permissions\request\UpdateRequest;
  10. use catchAdmin\permissions\request\ProfileRequest;
  11. use catcher\base\CatchController;
  12. use catcher\CatchAuth;
  13. use catcher\CatchCacheKeys;
  14. use catcher\CatchResponse;
  15. use catcher\library\excel\Excel;
  16. use catcher\Tree;
  17. use catcher\Utils;
  18. use think\facade\Cache;
  19. class User extends CatchController
  20. {
  21. protected $user;
  22. public function __construct(Users $user)
  23. {
  24. $this->user = $user;
  25. }
  26. /**
  27. *
  28. * @time 2020年04月24日
  29. * @throws \think\db\exception\DbException
  30. * @return \think\response\Json
  31. */
  32. public function index()
  33. {
  34. return CatchResponse::paginate($this->user->getList());
  35. }
  36. /**
  37. * 获取用户信息
  38. *
  39. * @time 2020年01月07日
  40. * @param CatchAuth $auth
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\DbException
  43. * @throws \think\db\exception\ModelNotFoundException
  44. * @return \think\response\Json
  45. */
  46. public function info(CatchAuth $auth)
  47. {
  48. $user = $auth->user();
  49. $roles = $user->getRoles()->column('identify');
  50. $permissionIds = $user->getPermissionsBy($user->id);
  51. // 缓存用户权限
  52. Cache::set(CatchCacheKeys::USER_PERMISSIONS . $user->id, $permissionIds);
  53. $user->permissions = Permissions::getCurrentUserPermissions($permissionIds);
  54. $user->roles = $roles;
  55. // 用户数据权限
  56. // $user->data_range = Roles::getDepartmentUserIdsBy($roles);
  57. return CatchResponse::success($user);
  58. }
  59. /**
  60. *
  61. * @param CreateRequest $request
  62. * @time 2019年12月06日
  63. * @return \think\response\Json
  64. */
  65. public function save(CreateRequest $request)
  66. {
  67. // $area_id=json_encode($request->param('area_id'));
  68. $params = $request->param();
  69. // $params['area_id']=json_encode($params['area_id']);
  70. $params['realname'] = $params['username'];
  71. $params['equ_password'] = strtoupper(substr(md5($params['password']), 8, 16));
  72. $this->user->storeBy($params);
  73. $this->user->attachRoles($request->param('roles'));
  74. if ($request->param('jobs')) {
  75. $this->user->attachJobs($request->param('jobs'));
  76. }
  77. return CatchResponse::success('', '添加成功');
  78. }
  79. /**
  80. *
  81. * @time 2019年12月04日
  82. * @param $id
  83. * @return \think\response\Json
  84. */
  85. public function read($id)
  86. {
  87. $user = $this->user->findBy($id);
  88. $user->roles = $user->getRoles();
  89. $user->jobs = $user->getJobs();
  90. return CatchResponse::success($user);
  91. }
  92. /**
  93. *
  94. * @time 2019年12月04日
  95. * @param $id
  96. * @param UpdateRequest $request
  97. * @return \think\response\Json
  98. */
  99. public function update($id, UpdateRequest $request)
  100. {
  101. $params = $request->param();
  102. // $params['area_id']=json_encode($params['area_id']);
  103. if ($params['password'] == "") {
  104. unset($params['password']);
  105. } else {
  106. $params['equ_password'] = strtoupper(substr(md5($params['password']), 8, 16));
  107. }
  108. $params['realname'] = $params['username'];
  109. $this->user->updateBy($id, $params);
  110. $user = $this->user->findBy($id);
  111. $user->detachRoles();
  112. $user->detachJobs();
  113. if (!empty($request->param('roles'))) {
  114. $user->attachRoles($request->param('roles'));
  115. }
  116. if (!empty($request->param('jobs'))) {
  117. $user->attachJobs($request->param('jobs'));
  118. }
  119. return CatchResponse::success();
  120. }
  121. /**
  122. *
  123. * @time 2019年12月04日
  124. * @param $id
  125. * @return \think\response\Json
  126. */
  127. public function delete($id)
  128. {
  129. $ids = Utils::stringToArrayBy($id);
  130. foreach ($ids as $_id) {
  131. $user = $this->user->findBy($_id);
  132. $array = $user;
  133. // 删除角色
  134. $user->detachRoles();
  135. // 删除岗位
  136. $user->detachJobs();
  137. $this->user->deleteBy($_id, true);
  138. }
  139. return CatchResponse::success();
  140. }
  141. /**
  142. *
  143. * @time 2019年12月07日
  144. * @param $id
  145. * @return \think\response\Json
  146. */
  147. public function switchStatus($id): \think\response\Json
  148. {
  149. $ids = Utils::stringToArrayBy($id);
  150. foreach ($ids as $_id) {
  151. $user = $this->user->findBy($_id);
  152. $this->user->updateBy($_id, [
  153. 'status' => $user->status == Users::ENABLE ? Users::DISABLE : Users::ENABLE,
  154. ]);
  155. }
  156. return CatchResponse::success([], '操作成功');
  157. }
  158. /**
  159. *
  160. * @time 2019年12月07日
  161. * @param $id
  162. * @return \think\response\Json
  163. * @throws \think\db\exception\DbException
  164. * @throws \think\db\exception\ModelNotFoundException
  165. * @throws \think\db\exception\DataNotFoundException
  166. */
  167. public function recover($id): \think\response\Json
  168. {
  169. $trashedUser = $this->user->findBy($id, ['*'], true);
  170. if ($this->user->where('email', $trashedUser->email)->find()) {
  171. return CatchResponse::fail(sprintf('该恢复用户的邮箱 [%s] 已被占用', $trashedUser->email));
  172. }
  173. return CatchResponse::success($this->user->recover($id));
  174. }
  175. /**
  176. *
  177. * @time 2019年12月11日
  178. * @param Request $request
  179. * @param Roles $roles
  180. * @return \think\response\Json
  181. */
  182. public function getRoles(Request $request, Roles $roles): \think\response\Json
  183. {
  184. $roles = Tree::done($roles->getList());
  185. $roleIds = [];
  186. if ($request->param('uid')) {
  187. $userHasRoles = $this->user->findBy($request->param('uid'))->getRoles();
  188. foreach ($userHasRoles as $role) {
  189. $roleIds[] = $role->pivot->role_id;
  190. }
  191. }
  192. return CatchResponse::success([
  193. 'roles' => $roles,
  194. 'hasRoles' => $roleIds,
  195. ]);
  196. }
  197. /**
  198. * 导出
  199. *
  200. * @time 2020年09月08日
  201. * @param Excel $excel
  202. * @param UserExport $userExport
  203. * @throws \PhpOffice\PhpSpreadsheet\Exception
  204. * @return \think\response\Json
  205. */
  206. public function export(Excel $excel, UserExport $userExport)
  207. {
  208. return CatchResponse::success($excel->save($userExport, Utils::publicPath('export/users')));
  209. }
  210. /**
  211. * 更新个人信息
  212. *
  213. * @time 2020年09月20日
  214. * @param ProfileRequest $request
  215. * @return \think\response\Json
  216. */
  217. public function profile(ProfileRequest $request)
  218. {
  219. return CatchResponse::success($this->user->updateBy($request->user()->id, $request->param()));
  220. }
  221. /**
  222. * 获取管理区域
  223. */
  224. public function getAreaIdBy()
  225. {
  226. return CatchResponse::success($this->user->getAreaIdBy());
  227. }
  228. /**
  229. *
  230. * @time 2019年12月07日
  231. * @param $depart_id
  232. * @return \think\response\Json
  233. */
  234. public function getUserByDepart($depart_id): \think\response\Json
  235. {
  236. return CatchResponse::success($this->user->getUserByDepart($depart_id));
  237. }
  238. /**
  239. * 获取推送用户
  240. */
  241. public function getPushUserList()
  242. {
  243. return CatchResponse::success($this->user->getPushUserList());
  244. }
  245. }