|
@ -355,15 +355,23 @@ public class SysService {
|
355
|
355
|
"userName=result.getName()" })
|
356
|
356
|
@Post
|
357
|
357
|
@Path("/regmail/{key}")
|
358
|
|
public SessionUser regeMail(@JdbcConn(true) Connection con, @PathVar String key, String mail) throws SQLException {
|
|
358
|
public SessionUser regeMail(@JdbcConn(true) Connection con, @PathVar String key, String mail,
|
|
359
|
String userId) throws SQLException {
|
359
|
360
|
@SuppressWarnings("unchecked")
|
360
|
361
|
StateCode<String, String> sc = (StateCode<String, String>) JfwAppContext
|
361
|
362
|
.getCachedObject(key);
|
362
|
|
if (sc == null)
|
|
363
|
if (sc == null) {
|
|
364
|
System.out.println("a");
|
|
365
|
this.userDao.delete(con, userId);
|
363
|
366
|
return null;
|
364
|
|
if (sc.getExpiredTime() < System.currentTimeMillis())
|
|
367
|
}
|
|
368
|
if (sc.getExpiredTime() < System.currentTimeMillis()) {
|
|
369
|
System.out.println("b");
|
|
370
|
this.userDao.delete(con, userId);
|
365
|
371
|
return null;
|
|
372
|
}
|
366
|
373
|
try {
|
|
374
|
System.out.println("c");
|
367
|
375
|
User user = userDao.queryByEmailOrMobilePhone(con, mail);
|
368
|
376
|
if (null == user)
|
369
|
377
|
return null;
|
|
@ -391,21 +399,21 @@ public class SysService {
|
391
|
399
|
* @throws JfwBaseException
|
392
|
400
|
* @throws SQLException
|
393
|
401
|
*/
|
394
|
|
@SuppressWarnings("null")
|
395
|
402
|
@Get
|
396
|
403
|
@Path("/regmail")
|
397
|
404
|
public String regMail(@JdbcConn(true) Connection con, String mail,
|
398
|
405
|
String password) throws JfwBaseException, SQLException {
|
|
406
|
User user1 = new User();
|
399
|
407
|
User user = this.userDao.queryByEmailOrMobilePhone(con, mail);
|
400
|
408
|
if (null != user) {
|
401
|
409
|
return null;
|
402
|
410
|
} else {
|
403
|
|
user.setId(StringUtil.buildUUID());
|
|
411
|
user1.setId(StringUtil.buildUUID());
|
404
|
412
|
String passwd = StringUtil.md5(password);
|
405
|
|
user.setEmail(mail);
|
406
|
|
user.setPasswd(passwd);
|
407
|
|
user.setUserType(0 + "");
|
408
|
|
this.userDao.insert(con, user);
|
|
413
|
user1.setEmail(mail);
|
|
414
|
user1.setPasswd(passwd);
|
|
415
|
user1.setUserType(0 + "");
|
|
416
|
this.userDao.insert(con, user1);
|
409
|
417
|
StateCode<String, String> sc = new StateCode<String, String>();
|
410
|
418
|
final String key = JfwAppContext.cacheObjectAndGenKey(sc);
|
411
|
419
|
|
|
@ -433,7 +441,7 @@ public class SysService {
|
433
|
441
|
+ " error", e);
|
434
|
442
|
}
|
435
|
443
|
}
|
436
|
|
return user.getId();
|
|
444
|
return user1.getId();
|
437
|
445
|
}
|
438
|
446
|
|
439
|
447
|
@SetCookie(checkResultNull = true, path = "/", value = {
|