user = $user; } /** * * @time 2020年04月24日 * @throws \think\db\exception\DbException * @return \think\response\Json */ public function index() { return CatchResponse::paginate($this->user->getList()); } /** * 获取用户信息 * * @time 2020年01月07日 * @param CatchAuth $auth * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @return \think\response\Json */ public function info(CatchAuth $auth) { $user = $auth->user(); $roles = $user->getRoles()->column('identify'); $permissionIds = $user->getPermissionsBy($user->id); // 缓存用户权限 Cache::set(CatchCacheKeys::USER_PERMISSIONS . $user->id, $permissionIds); $user->permissions = Permissions::getCurrentUserPermissions($permissionIds); $user->roles = $roles; // 用户数据权限 // $user->data_range = Roles::getDepartmentUserIdsBy($roles); return CatchResponse::success($user); } /** * * @param CreateRequest $request * @time 2019年12月06日 * @return \think\response\Json */ public function save(CreateRequest $request) { // $area_id=json_encode($request->param('area_id')); $params=$request->param(); //$params['realname']=$params['username']; $this->user->storeBy($params); $this->user->attachRoles($request->param('roles')); if ($request->param('jobs')) { $this->user->attachJobs($request->param('jobs')); } return CatchResponse::success('', '添加成功'); } /** * * @time 2019年12月04日 * @param $id * @return \think\response\Json */ public function read($id) { $user = $this->user->findBy($id); $user->roles = $user->getRoles(); $user->jobs = $user->getJobs(); return CatchResponse::success($user); } /** * * @time 2019年12月04日 * @param $id * @param UpdateRequest $request * @return \think\response\Json */ public function update($id, UpdateRequest $request) { $params=$request->param(); // $params['area_id']=json_encode($params['area_id']); if($params['password']==""){ unset($params['password']); } // $params['realname']=$params['username']; $this->user->updateBy($id, $params); $user = $this->user->findBy($id); $user->detachRoles(); $user->detachJobs(); if (!empty($request->param('roles'))) { $user->attachRoles($request->param('roles')); } if (!empty($request->param('jobs'))) { $user->attachJobs($request->param('jobs')); } return CatchResponse::success(); } /** * * @time 2019年12月04日 * @param $id * @return \think\response\Json */ public function delete($id) { $ids = Utils::stringToArrayBy($id); foreach ($ids as $_id) { $user = $this->user->findBy($_id); // 删除角色 $user->detachRoles(); // 删除岗位 $user->detachJobs(); $this->user->deleteBy($_id,true); } return CatchResponse::success(); } /** * * @time 2019年12月07日 * @param $id * @return \think\response\Json */ public function switchStatus($id): \think\response\Json { $ids = Utils::stringToArrayBy($id); foreach ($ids as $_id) { $user = $this->user->findBy($_id); $this->user->updateBy($_id, [ 'status' => $user->status == Users::ENABLE ? Users::DISABLE : Users::ENABLE, ]); } return CatchResponse::success([], '操作成功'); } /** * * @time 2019年12月07日 * @param $id * @return \think\response\Json * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\DataNotFoundException */ public function recover($id): \think\response\Json { $trashedUser = $this->user->findBy($id, ['*'], true); if ($this->user->where('email', $trashedUser->email)->find()) { return CatchResponse::fail(sprintf('该恢复用户的邮箱 [%s] 已被占用', $trashedUser->email)); } return CatchResponse::success($this->user->recover($id)); } /** * * @time 2019年12月11日 * @param Request $request * @param Roles $roles * @return \think\response\Json */ public function getRoles(Request $request, Roles $roles): \think\response\Json { $roles = Tree::done($roles->getList()); $roleIds = []; if ($request->param('uid')) { $userHasRoles = $this->user->findBy($request->param('uid'))->getRoles(); foreach ($userHasRoles as $role) { $roleIds[] = $role->pivot->role_id; } } return CatchResponse::success([ 'roles' => $roles, 'hasRoles' => $roleIds, ]); } /** * 导出 * * @time 2020年09月08日 * @param Excel $excel * @param UserExport $userExport * @throws \PhpOffice\PhpSpreadsheet\Exception * @return \think\response\Json */ public function export(Excel $excel, UserExport $userExport) { return CatchResponse::success($excel->save($userExport, Utils::publicPath('export/users'))); } /** * 更新个人信息 * * @time 2020年09月20日 * @param ProfileRequest $request * @return \think\response\Json */ public function profile(ProfileRequest $request) { return CatchResponse::success($this->user->updateBy($request->user()->id, $request->param())); } /** * 获取管理区域 */ public function getAreaIdBy() { return CatchResponse::success($this->user->getAreaIdBy()); } /** * * @time 2019年12月07日 * @param $depart_id * @return \think\response\Json */ public function getUserByDepart($depart_id): \think\response\Json { return CatchResponse::success($this->user->getUserByDepart($depart_id)); } /** * 获取推送用户 */ public function getPushUserList() { return CatchResponse::success($this->user->getPushUserList()); } /** * 微信更改个人信息//校验密码有问题 * likang * @param Request $request * @return void */ public function wxUsers(Request $request) { $param=$request->param(); $user=Users::find($param['creator_id']); if(empty($user)) { return CatchResponse::fail('用户不存在'); } if(!password_verify($param['oldPwd'],$user->password)) { return CatchResponse::fail('原密码错误'); } $user->password=$param['newPwd']; $user->phone=$param['phone']; $user->realname=$param['nickName']; if($user->save()) { return CatchResponse::success(['data'=>$user]); } return CatchResponse::fail('修改失败'); } }