| | |
| | | import com.sandu.common.object.BaseConditionVO; |
| | | import com.sandu.common.service.impl.BaseServiceImpl; |
| | | import com.sandu.ximon.admin.param.AddClientPrarm; |
| | | import com.sandu.ximon.admin.param.PwdParam; |
| | | import com.sandu.ximon.admin.param.ResetClientPasswordPrarm; |
| | | import com.sandu.ximon.admin.param.UpdateClientPrarm; |
| | | import com.sandu.ximon.admin.security.SecurityUtils; |
| | |
| | | return updateById(client); |
| | | } |
| | | |
| | | public boolean resetPassword(ResetClientPasswordPrarm resetClientPasswordPrarm) { |
| | | Client client = getOne(Wrappers.lambdaQuery(Client.class).eq(Client::getId, resetClientPasswordPrarm.getId())); |
| | | public boolean resetPassword(PwdParam param) { |
| | | |
| | | Client client = getOne(Wrappers.lambdaQuery(Client.class).eq(Client::getId, SecurityUtils.getUserDetails().getUserId())); |
| | | |
| | | if (client == null) { |
| | | throw new BusinessException("该用户不存在!"); |
| | | } |
| | | |
| | | PasswordEncoder pw = new BCryptPasswordEncoder(); |
| | | //判断旧密码与数据库是否一致 |
| | | if (pw.matches(resetClientPasswordPrarm.getOldPassword(), client.getPassword())) { |
| | | //加密新密码 |
| | | String encode = pw.encode(resetClientPasswordPrarm.getNewPassword()); |
| | | client.setPassword(encode); |
| | | return updateById(client); |
| | | } else { |
| | | throw new BusinessException("旧密码不正确,请重新确认密码!"); |
| | | } |
| | | //加密新密码 |
| | | String encode = pw.encode(param.getNewPass()); |
| | | client.setPassword(encode); |
| | | return updateById(client); |
| | | } |
| | | |
| | | public boolean deleteClient(Long id) { |