Browse Source

添加删除用户注册信息的delete方法,完善邮箱注册功能。

zzy.zhiyuan.foxmail 8 years ago
parent
commit
50a6f27297

+ 4 - 0
src/main/java/com/ekexiu/portal/dao/UserDao.java

@ -7,6 +7,7 @@ import org.jfw.apt.annotation.Nullable;
7 7
import org.jfw.apt.orm.annotation.dao.DAO;
8 8
import org.jfw.apt.orm.annotation.dao.method.From;
9 9
import org.jfw.apt.orm.annotation.dao.method.Or;
10
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
10 11
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
11 12
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
12 13
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
@ -27,6 +28,9 @@ public interface UserDao {
27 28
	@SelectOne
28 29
	User queryByEmailOrMobilePhone(Connection con,@Alias({"email","mobilePhone"}) String key)throws SQLException;
29 30
	
31
	@DeleteWith
32
	@From(User.class)
33
	int delete(Connection con, String id) throws SQLException;
30 34
	
31 35
	@Insert
32 36
	int insert(Connection con,User user)throws SQLException;

+ 18 - 10
src/main/java/com/ekexiu/portal/service/SysService.java

@ -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 = {