| | |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.common.core.utils.StringUtils; |
| | | import org.dromara.common.core.utils.file.MimeTypeUtils; |
| | | import org.dromara.common.core.validate.auth.PasswordGroup; |
| | | import org.dromara.common.log.annotation.Log; |
| | | import org.dromara.common.log.enums.BusinessType; |
| | | import org.dromara.common.satoken.utils.LoginHelper; |
| | | import org.dromara.common.web.core.BaseController; |
| | | import org.dromara.system.domain.bo.SysUserBo; |
| | | import org.dromara.system.domain.bo.SysUserPasswordBo; |
| | | import org.dromara.system.domain.bo.SysUserProfileBo; |
| | | import org.dromara.system.domain.vo.AvatarVo; |
| | | import org.dromara.system.domain.vo.ProfileVo; |
| | |
| | | /** |
| | | * 重置密码 |
| | | * |
| | | * @param newPassword 旧密码 |
| | | * @param oldPassword 新密码 |
| | | * @param bo 新旧密码 |
| | | */ |
| | | @Log(title = "个人信息", businessType = BusinessType.UPDATE) |
| | | @PutMapping("/updatePwd") |
| | | public R<Void> updatePwd(String oldPassword, String newPassword) { |
| | | public R<Void> updatePwd(@Validated(PasswordGroup.class) @RequestBody SysUserPasswordBo bo) { |
| | | SysUserVo user = userService.selectUserById(LoginHelper.getUserId()); |
| | | String password = user.getPassword(); |
| | | if (!BCrypt.checkpw(oldPassword, password)) { |
| | | if (!BCrypt.checkpw(bo.getOldPassword(), password)) { |
| | | return R.fail("修改密码失败,旧密码错误"); |
| | | } |
| | | if (BCrypt.checkpw(newPassword, password)) { |
| | | if (BCrypt.checkpw(bo.getNewPassword(), password)) { |
| | | return R.fail("新密码不能与旧密码相同"); |
| | | } |
| | | |
| | | if (userService.resetUserPwd(user.getUserId(), BCrypt.hashpw(newPassword)) > 0) { |
| | | if (userService.resetUserPwd(user.getUserId(), BCrypt.hashpw(bo.getNewPassword())) > 0) { |
| | | return R.ok(); |
| | | } |
| | | return R.fail("修改密码异常,请联系管理员"); |