| | |
| | | package com.ruoyi.project.system.controller;
|
| | |
|
| | | import java.io.IOException;
|
| | | import java.util.Map;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.web.bind.annotation.GetMapping;
|
| | | import org.springframework.web.bind.annotation.PostMapping;
|
| | |
| | | import org.springframework.web.bind.annotation.RequestParam;
|
| | | import org.springframework.web.bind.annotation.RestController;
|
| | | import org.springframework.web.multipart.MultipartFile;
|
| | | import com.ruoyi.common.constant.UserConstants;
|
| | | import com.ruoyi.common.utils.SecurityUtils;
|
| | | import com.ruoyi.common.utils.ServletUtils;
|
| | | import com.ruoyi.common.utils.StringUtils;
|
| | | import com.ruoyi.common.utils.file.FileUploadUtils;
|
| | | import com.ruoyi.common.utils.file.MimeTypeUtils;
|
| | | import com.ruoyi.framework.aspectj.lang.annotation.Log;
|
| | | import com.ruoyi.framework.aspectj.lang.enums.BusinessType;
|
| | | import com.ruoyi.framework.config.RuoYiConfig;
|
| | |
| | | @GetMapping
|
| | | public AjaxResult profile()
|
| | | {
|
| | | LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest());
|
| | | LoginUser loginUser = getLoginUser();
|
| | | SysUser user = loginUser.getUser();
|
| | | AjaxResult ajax = AjaxResult.success(user);
|
| | | ajax.put("roleGroup", userService.selectUserRoleGroup(loginUser.getUsername()));
|
| | |
| | | @PutMapping
|
| | | public AjaxResult updateProfile(@RequestBody SysUser user)
|
| | | {
|
| | | if (StringUtils.isNotEmpty(user.getPhonenumber())
|
| | | && UserConstants.NOT_UNIQUE.equals(userService.checkPhoneUnique(user)))
|
| | | LoginUser loginUser = getLoginUser();
|
| | | SysUser currentUser = loginUser.getUser();
|
| | | currentUser.setNickName(user.getNickName());
|
| | | currentUser.setEmail(user.getEmail());
|
| | | currentUser.setPhonenumber(user.getPhonenumber());
|
| | | currentUser.setSex(user.getSex());
|
| | | if (StringUtils.isNotEmpty(user.getPhonenumber()) && !userService.checkPhoneUnique(currentUser))
|
| | | {
|
| | | return AjaxResult.error("修改用户'" + user.getUserName() + "'失败,手机号码已存在");
|
| | | return error("修改用户'" + loginUser.getUsername() + "'失败,手机号码已存在");
|
| | | }
|
| | | else if (StringUtils.isNotEmpty(user.getEmail())
|
| | | && UserConstants.NOT_UNIQUE.equals(userService.checkEmailUnique(user)))
|
| | | if (StringUtils.isNotEmpty(user.getEmail()) && !userService.checkEmailUnique(currentUser))
|
| | | {
|
| | | return AjaxResult.error("修改用户'" + user.getUserName() + "'失败,邮箱账号已存在");
|
| | | return error("修改用户'" + loginUser.getUsername() + "'失败,邮箱账号已存在");
|
| | | }
|
| | | if (userService.updateUserProfile(user) > 0)
|
| | | if (userService.updateUserProfile(currentUser) > 0)
|
| | | {
|
| | | LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest());
|
| | | // 更新缓存用户信息
|
| | | loginUser.getUser().setNickName(user.getNickName());
|
| | | loginUser.getUser().setPhonenumber(user.getPhonenumber());
|
| | | loginUser.getUser().setEmail(user.getEmail());
|
| | | loginUser.getUser().setSex(user.getSex());
|
| | | tokenService.setLoginUser(loginUser);
|
| | | return AjaxResult.success();
|
| | | return success();
|
| | | }
|
| | | return AjaxResult.error("修改个人信息异常,请联系管理员");
|
| | | return error("修改个人信息异常,请联系管理员");
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | */
|
| | | @Log(title = "个人信息", businessType = BusinessType.UPDATE)
|
| | | @PutMapping("/updatePwd")
|
| | | public AjaxResult updatePwd(String oldPassword, String newPassword)
|
| | | public AjaxResult updatePwd(@RequestBody Map<String, String> params)
|
| | | {
|
| | | LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest());
|
| | | String oldPassword = params.get("oldPassword");
|
| | | String newPassword = params.get("newPassword");
|
| | | LoginUser loginUser = getLoginUser();
|
| | | String userName = loginUser.getUsername();
|
| | | String password = loginUser.getPassword();
|
| | | if (!SecurityUtils.matchesPassword(oldPassword, password))
|
| | | {
|
| | | return AjaxResult.error("修改密码失败,旧密码错误");
|
| | | return error("修改密码失败,旧密码错误");
|
| | | }
|
| | | if (SecurityUtils.matchesPassword(newPassword, password))
|
| | | {
|
| | | return AjaxResult.error("新密码不能与旧密码相同");
|
| | | return error("新密码不能与旧密码相同");
|
| | | }
|
| | | if (userService.resetUserPwd(userName, SecurityUtils.encryptPassword(newPassword)) > 0)
|
| | | newPassword = SecurityUtils.encryptPassword(newPassword);
|
| | | if (userService.resetUserPwd(userName, newPassword) > 0)
|
| | | {
|
| | | // 更新缓存用户密码
|
| | | loginUser.getUser().setPassword(SecurityUtils.encryptPassword(newPassword));
|
| | | loginUser.getUser().setPassword(newPassword);
|
| | | tokenService.setLoginUser(loginUser);
|
| | | return AjaxResult.success();
|
| | | return success();
|
| | | }
|
| | | return AjaxResult.error("修改密码异常,请联系管理员");
|
| | | return error("修改密码异常,请联系管理员");
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | */
|
| | | @Log(title = "用户头像", businessType = BusinessType.UPDATE)
|
| | | @PostMapping("/avatar")
|
| | | public AjaxResult avatar(@RequestParam("avatarfile") MultipartFile file) throws IOException
|
| | | public AjaxResult avatar(@RequestParam("avatarfile") MultipartFile file) throws Exception
|
| | | {
|
| | | if (!file.isEmpty())
|
| | | {
|
| | | LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest());
|
| | | String avatar = FileUploadUtils.upload(RuoYiConfig.getAvatarPath(), file);
|
| | | LoginUser loginUser = getLoginUser();
|
| | | String avatar = FileUploadUtils.upload(RuoYiConfig.getAvatarPath(), file, MimeTypeUtils.IMAGE_EXTENSION);
|
| | | if (userService.updateUserAvatar(loginUser.getUsername(), avatar))
|
| | | {
|
| | | AjaxResult ajax = AjaxResult.success();
|
| | |
| | | return ajax;
|
| | | }
|
| | | }
|
| | | return AjaxResult.error("上传图片异常,请联系管理员");
|
| | | return error("上传图片异常,请联系管理员");
|
| | | }
|
| | | }
|