|
|
|
|
171
|
|
171
|
|
172
|
@Post
|
172
|
@Post
|
173
|
@Path("/changePw")
|
173
|
@Path("/changePw")
|
174
|
public void changePw(@JdbcConn(true) Connection con, String id, String oldPw, String newPw) throws SQLException, JfwBaseException {
|
|
|
175
|
User user = this.userDao.query(con, id);
|
|
|
|
|
174
|
public void changePw(@JdbcConn(true) Connection con, @LoginUser SessionUser u, String oldPw, String newPw) throws SQLException, JfwBaseException {
|
|
|
175
|
User user = this.userDao.query(con, u.getId());
|
176
|
if (user != null && StringUtil.md5(oldPw).equals(StringUtil.md5(user.getPasswd()))) {
|
176
|
if (user != null && StringUtil.md5(oldPw).equals(StringUtil.md5(user.getPasswd()))) {
|
177
|
this.userDao.changePw(con, StringUtil.md5(newPw), id);
|
|
|
|
|
177
|
this.userDao.changePw(con, StringUtil.md5(newPw), u.getId());
|
178
|
} else {
|
178
|
} else {
|
179
|
throw new JfwBaseException(100001, "用户不存在或密码不匹配");
|
179
|
throw new JfwBaseException(100001, "用户不存在或密码不匹配");
|
180
|
}
|
180
|
}
|