User.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  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['realname']=$params['username'];
  70. $this->user->storeBy($params);
  71. $this->user->attachRoles($request->param('roles'));
  72. if ($request->param('jobs')) {
  73. $this->user->attachJobs($request->param('jobs'));
  74. }
  75. return CatchResponse::success('', '添加成功');
  76. }
  77. /**
  78. *
  79. * @time 2019年12月04日
  80. * @param $id
  81. * @return \think\response\Json
  82. */
  83. public function read($id)
  84. {
  85. $user = $this->user->findBy($id);
  86. $user->roles = $user->getRoles();
  87. $user->jobs = $user->getJobs();
  88. return CatchResponse::success($user);
  89. }
  90. /**
  91. *
  92. * @time 2019年12月04日
  93. * @param $id
  94. * @param UpdateRequest $request
  95. * @return \think\response\Json
  96. */
  97. public function update($id, UpdateRequest $request)
  98. {
  99. $params=$request->param();
  100. // $params['area_id']=json_encode($params['area_id']);
  101. if($params['password']==""){
  102. unset($params['password']);
  103. }
  104. // $params['realname']=$params['username'];
  105. $this->user->updateBy($id, $params);
  106. $user = $this->user->findBy($id);
  107. $user->detachRoles();
  108. $user->detachJobs();
  109. if (!empty($request->param('roles'))) {
  110. $user->attachRoles($request->param('roles'));
  111. }
  112. if (!empty($request->param('jobs'))) {
  113. $user->attachJobs($request->param('jobs'));
  114. }
  115. return CatchResponse::success();
  116. }
  117. /**
  118. *
  119. * @time 2019年12月04日
  120. * @param $id
  121. * @return \think\response\Json
  122. */
  123. public function delete($id)
  124. {
  125. $ids = Utils::stringToArrayBy($id);
  126. foreach ($ids as $_id) {
  127. $user = $this->user->findBy($_id);
  128. // 删除角色
  129. $user->detachRoles();
  130. // 删除岗位
  131. $user->detachJobs();
  132. $this->user->deleteBy($_id,true);
  133. }
  134. return CatchResponse::success();
  135. }
  136. /**
  137. *
  138. * @time 2019年12月07日
  139. * @param $id
  140. * @return \think\response\Json
  141. */
  142. public function switchStatus($id): \think\response\Json
  143. {
  144. $ids = Utils::stringToArrayBy($id);
  145. foreach ($ids as $_id) {
  146. $user = $this->user->findBy($_id);
  147. $this->user->updateBy($_id, [
  148. 'status' => $user->status == Users::ENABLE ? Users::DISABLE : Users::ENABLE,
  149. ]);
  150. }
  151. return CatchResponse::success([], '操作成功');
  152. }
  153. /**
  154. *
  155. * @time 2019年12月07日
  156. * @param $id
  157. * @return \think\response\Json
  158. * @throws \think\db\exception\DbException
  159. * @throws \think\db\exception\ModelNotFoundException
  160. * @throws \think\db\exception\DataNotFoundException
  161. */
  162. public function recover($id): \think\response\Json
  163. {
  164. $trashedUser = $this->user->findBy($id, ['*'], true);
  165. if ($this->user->where('email', $trashedUser->email)->find()) {
  166. return CatchResponse::fail(sprintf('该恢复用户的邮箱 [%s] 已被占用', $trashedUser->email));
  167. }
  168. return CatchResponse::success($this->user->recover($id));
  169. }
  170. /**
  171. *
  172. * @time 2019年12月11日
  173. * @param Request $request
  174. * @param Roles $roles
  175. * @return \think\response\Json
  176. */
  177. public function getRoles(Request $request, Roles $roles): \think\response\Json
  178. {
  179. $roles = Tree::done($roles->getList());
  180. $roleIds = [];
  181. if ($request->param('uid')) {
  182. $userHasRoles = $this->user->findBy($request->param('uid'))->getRoles();
  183. foreach ($userHasRoles as $role) {
  184. $roleIds[] = $role->pivot->role_id;
  185. }
  186. }
  187. return CatchResponse::success([
  188. 'roles' => $roles,
  189. 'hasRoles' => $roleIds,
  190. ]);
  191. }
  192. /**
  193. * 导出
  194. *
  195. * @time 2020年09月08日
  196. * @param Excel $excel
  197. * @param UserExport $userExport
  198. * @throws \PhpOffice\PhpSpreadsheet\Exception
  199. * @return \think\response\Json
  200. */
  201. public function export(Excel $excel, UserExport $userExport)
  202. {
  203. return CatchResponse::success($excel->save($userExport, Utils::publicPath('export/users')));
  204. }
  205. /**
  206. * 更新个人信息
  207. *
  208. * @time 2020年09月20日
  209. * @param ProfileRequest $request
  210. * @return \think\response\Json
  211. */
  212. public function profile(ProfileRequest $request)
  213. {
  214. return CatchResponse::success($this->user->updateBy($request->user()->id, $request->param()));
  215. }
  216. /**
  217. * 获取管理区域
  218. */
  219. public function getAreaIdBy()
  220. {
  221. return CatchResponse::success($this->user->getAreaIdBy());
  222. }
  223. /**
  224. *
  225. * @time 2019年12月07日
  226. * @param $depart_id
  227. * @return \think\response\Json
  228. */
  229. public function getUserByDepart($depart_id): \think\response\Json
  230. {
  231. return CatchResponse::success($this->user->getUserByDepart($depart_id));
  232. }
  233. /**
  234. * 获取推送用户
  235. */
  236. public function getPushUserList()
  237. {
  238. return CatchResponse::success($this->user->getPushUserList());
  239. }
  240. /**
  241. * 微信更改个人信息//校验密码有问题
  242. * likang
  243. * @param Request $request
  244. * @return void
  245. */
  246. public function wxUsers(Request $request)
  247. {
  248. $param=$request->param();
  249. $user=Users::find($param['creator_id']);
  250. if(empty($user))
  251. {
  252. return CatchResponse::fail('用户不存在');
  253. }
  254. if(!password_verify($param['oldPwd'],$user->password))
  255. {
  256. return CatchResponse::fail('原密码错误');
  257. }
  258. $user->password=$param['newPwd'];
  259. $user->phone=$param['phone'];
  260. $user->realname=$param['nickName'];
  261. if($user->save())
  262. {
  263. return CatchResponse::success(['data'=>$user]);
  264. }
  265. return CatchResponse::fail('修改失败');
  266. }
  267. }