Ver Código Fonte

支付记录和手机邮箱验证登录

zzy.zhiyuan.foxmail 8 anos atrás
pai
commit
5c1239fb0d

+ 70 - 0
src/main/java/com/ekexiu/portal/dao/PayHistoryDao.java

@ -0,0 +1,70 @@
1
package com.ekexiu.portal.dao;
2

3
import java.sql.Connection;
4
import java.sql.SQLException;
5

6
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.method.From;
8
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
9
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
10
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
11
import org.jfw.apt.orm.annotation.dao.param.Set;
12
import org.jfw.util.exception.JfwBaseException;
13

14
import com.ekexiu.portal.po.Operation;
15
import com.ekexiu.portal.po.PayHistory;
16

17
@DAO
18
public abstract class PayHistoryDao {
19
	@Insert
20
	public abstract int insert(Connection con, PayHistory payHistory) throws SQLException;
21
	
22
	@UpdateWith
23
	@From(PayHistory.class)
24
	public abstract int update(Connection con, String payHistoryId, @Set int payStatus) throws SQLException;
25
	
26
	@SelectOne
27
	public abstract PayHistory query(Connection con, String payHistoryId) throws SQLException, JfwBaseException;
28
	
29
//	@SelectList
30
//	public abstract List<PayHistory> queryOper(Connection con, String operationId) throws SQLException;
31
	
32
	public java.util.List<com.ekexiu.portal.po.PayHistory> queryDetail(java.sql.Connection con,java.lang.String operationId) throws java.sql.SQLException{
33
        int _m_1 = 1;
34
        String sql = "SELECT PAY_HISTORY_ID,PAY_HISTORY.OPERATION_ID,PAID_MONEY,RETURN_MONEY,REMARK,ISONLINE,PAY_TYPE,PAY_HISTORY.CREATE_TIME,OPERATION.DEAL_PRICE,OPERATION.CREATE_TIME FROM PAY_HISTORY LEFT JOIN OPERATION ON PAY_HISTORY.OPERATION_ID = OPERATION.OPERATION_ID WHERE PAY_HISTORY.OPERATION_ID = ?";
35
        java.sql.PreparedStatement ps = con.prepareStatement(sql);
36
        try{
37
            ps.setString(_m_1++,operationId);
38
            java.sql.ResultSet rs = ps.executeQuery();
39
            try{
40
                java.util.List<com.ekexiu.portal.po.PayHistory> _result = new java.util.ArrayList<com.ekexiu.portal.po.PayHistory>();
41
                while(rs.next()){
42
                    com.ekexiu.portal.po.PayHistory _obj =  new com.ekexiu.portal.po.PayHistory();
43
                    _obj.setPayHistoryId(rs.getString(1));
44
                    Operation operation = new Operation();
45
                    operation.setOperationId(rs.getString(2));
46
                    _obj.setPaidMoney(rs.getBigDecimal(3));
47
                    _obj.setReturnMoney(rs.getBigDecimal(4));
48
                    java.lang.String _m_2 = rs.getString(5);
49
                    if(rs.wasNull()){
50
                        _m_2 = null;
51
                    }
52
                    _obj.setRemark(_m_2);
53
                    _obj.setIsonline(rs.getInt(6));
54
                    _obj.setPayType(rs.getInt(7));
55
                    _obj.setCreateTime(rs.getString(8));
56
                    operation.setDealPrice(rs.getBigDecimal(9));
57
                    operation.setCreateTime(rs.getString(10));
58
                    _obj.setOperation(operation);
59
                    _result.add(_obj);
60
                }
61
                return _result;
62
            }finally{
63
                try{rs.close();}catch(Exception _m_3){}
64
            }
65
        }finally{
66
            try{ps.close();}catch(Exception _m_4){}
67
        }
68
    }
69
	
70
}

+ 105 - 0
src/main/java/com/ekexiu/portal/po/PayHistory.java

@ -0,0 +1,105 @@
1
package com.ekexiu.portal.po;
2

3
import java.math.BigDecimal;
4

5
import org.jfw.apt.orm.annotation.entry.Column;
6
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
7
import org.jfw.apt.orm.annotation.entry.Table;
8
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
9
import org.jfw.apt.orm.core.enums.DE;
10

11
import com.ekexiu.portal.basepo.CreateTimeSupported;
12

13
@Table
14
@PrimaryKey("payHistoryId")
15
public class PayHistory implements CreateTimeSupported {
16
	private String payHistoryId;
17
	private String operationId;
18
	private BigDecimal paidMoney;
19
	private BigDecimal returnMoney;
20
	private String createTime;
21
	private String remark;
22
	private int isonline;
23
	private int payType;
24
	private int payStatus;
25
	private Operation operation;
26
	
27
	public Operation getOperation() {
28
		return operation;
29
	}
30
	public void setOperation(Operation operation) {
31
		this.operation = operation;
32
	}
33
	
34
	@Column(DE.id_32)
35
	public String getPayHistoryId() {
36
		return payHistoryId;
37
	}
38
	public void setPayHistoryId(String payHistoryId) {
39
		this.payHistoryId = payHistoryId;
40
	}
41
	
42
	@Column(DE.id_32)
43
	public String getOperationId() {
44
		return operationId;
45
	}
46
	public void setOperationId(String operationId) {
47
		this.operationId = operationId;
48
	}
49
	
50
	@Column(DE.bigDecmimal_de)
51
	public BigDecimal getPaidMoney() {
52
		return paidMoney;
53
	}
54
	public void setPaidMoney(BigDecimal paidMoney) {
55
		this.paidMoney = paidMoney;
56
	}
57
	
58
	@Column(DE.bigDecmimal_de)
59
	public BigDecimal getReturnMoney() {
60
		return returnMoney;
61
	}
62
	public void setReturnMoney(BigDecimal returnMoney) {
63
		this.returnMoney = returnMoney;
64
	}
65
	
66
	public String getCreateTime() {
67
		return createTime;
68
	}
69
	public void setCreateTime(String createTime) {
70
		this.createTime = createTime;
71
	}
72
	
73
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=false,queryable=true)
74
	public String getRemark() {
75
		return remark;
76
	}
77
	public void setRemark(String remark) {
78
		this.remark = remark;
79
	}
80
	
81
	@Column(DE.int_de)
82
	public int getIsonline() {
83
		return isonline;
84
	}
85
	public void setIsonline(int isonline) {
86
		this.isonline = isonline;
87
	}
88
	
89
	@Column(DE.int_de)
90
	public int getPayType() {
91
		return payType;
92
	}
93
	public void setPayType(int payType) {
94
		this.payType = payType;
95
	}
96
	
97
	@Column(DE.int_de)
98
	public int getPayStatus() {
99
		return payStatus;
100
	}
101
	public void setPayStatus(int payStatus) {
102
		this.payStatus = payStatus;
103
	}
104
	
105
}

+ 81 - 0
src/main/java/com/ekexiu/portal/service/PayHistoryService.java

@ -0,0 +1,81 @@
1
package com.ekexiu.portal.service;
2

3
import java.sql.Connection;
4
import java.sql.SQLException;
5
import java.util.List;
6

7
import org.jfw.apt.annotation.Autowrie;
8
import org.jfw.apt.web.annotation.Path;
9
import org.jfw.apt.web.annotation.operate.Get;
10
import org.jfw.apt.web.annotation.operate.Post;
11
import org.jfw.apt.web.annotation.param.JdbcConn;
12
import org.jfw.apt.web.annotation.param.PathVar;
13
import org.jfw.util.StringUtil;
14
import org.jfw.util.exception.JfwBaseException;
15

16
import com.ekexiu.portal.dao.PayHistoryDao;
17
import com.ekexiu.portal.po.PayHistory;
18

19
@Path("/payhistory")
20
public class PayHistoryService {
21
	@Autowrie
22
	private PayHistoryDao payHistoryDao;
23

24
	public PayHistoryDao getPayHistoryDao() {
25
		return payHistoryDao;
26
	}
27

28
	public void setPayHistoryDao(PayHistoryDao payHistoryDao) {
29
		this.payHistoryDao = payHistoryDao;
30
	}
31
	
32
	@Post
33
	@Path
34
	public String insert(@JdbcConn(true) Connection con, PayHistory payHistory) throws SQLException {
35
		String payHistoryId = StringUtil.buildUUID();
36
		payHistory.setPayHistoryId(payHistoryId);
37
		this.payHistoryDao.insert(con, payHistory);
38
		return payHistoryId;
39
	}
40
	
41
	@Post
42
	@Path("/status")
43
	public void updatePayStatus(@JdbcConn(true) Connection con, String payHistoryId, int payStatus) throws SQLException {
44
		this.payHistoryDao.update(con, payHistoryId, payStatus);
45
	}
46
	
47
	@Get
48
	@Path("/{payHistoryId}")
49
	public PayHistory query(@JdbcConn Connection con, @PathVar String payHistoryId) throws SQLException, JfwBaseException {
50
		return this.payHistoryDao.query(con, payHistoryId);
51
	}
52
	
53
//	@Get
54
//	@Path("/qaoper")
55
//	public List<PayHistory> queryOper(@JdbcConn Connection con, String operationId) throws SQLException {
56
//		return this.payHistoryDao.queryOper(con, operationId);
57
//	}
58
	
59
	@Get
60
	@Path("/qadetail")
61
	public List<PayHistory> queryDetail(@JdbcConn Connection con, String operationId) throws SQLException {
62
		return this.payHistoryDao.queryDetail(con, operationId);
63
	}
64
	
65
//	@Get
66
//	@Path("/qadetail")
67
//	public List<PayHistory> queryDetail(@JdbcConn Connection con, String operationId) throws SQLException {
68
//		List<PayHistory> historiesList = this.payHistoryDao.queryDetail(con, operationId);
69
//		for (PayHistory payHistory : historiesList) {
70
//			double remainMoney = payHistory.getOperation().getDealPrice().doubleValue();
71
//			if(payHistory.getPayType() == 0){
72
//				remainMoney = remainMoney - payHistory.getPaidMoney().doubleValue();
73
//			}
74
//			if(payHistory.getPayType() == 1){
75
//				remainMoney = remainMoney + payHistory.getReturnMoney().doubleValue();
76
//			}
77
//		}
78
//		return this.payHistoryDao.queryDetail(con, operationId);
79
//	}
80
	
81
}

+ 85 - 3
src/main/java/com/ekexiu/portal/service/SysService.java

@ -46,6 +46,10 @@ public class SysService {
46 46
	private String bindMailReplaceKey;
47 47
	private String bindMailReplaceContentTempalte;
48 48
	private long timeLimitWithBindMail = 10 * 60 * 1000;
49
	
50
	private String regMailReplaceKey;
51
	private String regMailReplaceContentTempalte;
52
	private long timeLimitWithRegMail = 10 * 60 * 1000;
49 53
50 54
	private String bindMobilePhoneReplaceKey;
51 55
	private String bindMobilePhoneContentTemplate;
@ -64,6 +68,31 @@ public class SysService {
64 68
	private String regMobilePhoneContentTemplate;
65 69
	private long timeLimitWithRegMobilePhone = 60 * 1000;
66 70
	
71
	public String getRegMailReplaceKey() {
72
		return regMailReplaceKey;
73
	}
74
75
	public void setRegMailReplaceKey(String regMailReplaceKey) {
76
		this.regMailReplaceKey = regMailReplaceKey;
77
	}
78
79
	public String getRegMailReplaceContentTempalte() {
80
		return regMailReplaceContentTempalte;
81
	}
82
83
	public void setRegMailReplaceContentTempalte(
84
			String regMailReplaceContentTempalte) {
85
		this.regMailReplaceContentTempalte = regMailReplaceContentTempalte;
86
	}
87
88
	public long getTimeLimitWithRegMail() {
89
		return timeLimitWithRegMail;
90
	}
91
92
	public void setTimeLimitWithRegMail(long timeLimitWithRegMail) {
93
		this.timeLimitWithRegMail = timeLimitWithRegMail;
94
	}
95
67 96
	public String getRegMobilePhoneReplaceKey() {
68 97
		return regMobilePhoneReplaceKey;
69 98
	}
@ -234,8 +263,8 @@ public class SysService {
234 263
	}
235 264
236 265
	@Post
237
	@Path("/reg")
238
	public String insert(@JdbcConn(true) Connection con, String state, String mobilePhone, String validateCode, String password) throws SQLException {
266
	@Path("/regmobile")
267
	public String regMobile(@JdbcConn(false) Connection con, String state, String mobilePhone, String validateCode, String password) throws SQLException {
239 268
		@SuppressWarnings("unchecked")
240 269
		StateCode<String, String> sc = (StateCode<String, String>) JfwAppContext.getCachedObject(state);
241 270
		if (sc == null)
@ -259,6 +288,57 @@ public class SysService {
259 288
		}
260 289
	}
261 290
	
291
	@Post
292
	@Path("/regmail/{key}")
293
	public String regeMail(@JdbcConn(false) Connection con, @PathVar String key, String mail, String password) throws SQLException {
294
		@SuppressWarnings("unchecked")
295
		StateCode<String, String> sc = (StateCode<String, String>) JfwAppContext.getCachedObject(key);
296
		if (sc == null)
297
			return null;
298
		if (sc.getExpiredTime() < System.currentTimeMillis())
299
			return null;
300
		try {
301
			User user = new User();
302
			user.setId(StringUtil.buildUUID());
303
			String passwd = StringUtil.md5(password);
304
			user.setEmail(mail);
305
			user.setPasswd(passwd);
306
			user.setUserType(0+"");
307
			this.userDao.insert(con, user);
308
			return user.getId();
309
		} finally {
310
			JfwAppContext.removeCachedObject(key);
311
		}
312
	}
313
	
314
	@Get
315
	@Path("/regmail")
316
	public boolean regMail(@JdbcConn(false) Connection con, String mail) throws JfwBaseException, SQLException {
317
318
		StateCode<String, String> sc = new StateCode<String, String>();
319
		final String key = JfwAppContext.cacheObjectAndGenKey(sc);
320
321
		Map<String, String> map = new HashMap<String, String>();
322
		map.put(this.regMailReplaceKey, key);
323
		try {
324
			mailservice.sendSimpleMail(mail, this.regMailReplaceContentTempalte, map, this.bindMailSubject);
325
			long ct = System.currentTimeMillis();
326
			long et = ct + this.timeLimitWithRegMail + 10000;
327
			sc.setBuildTime(ct);
328
			sc.setExpiredTime(et);
329
			JfwAppContext.getScheduledExecutorService().schedule(new Runnable() {
330
				@Override
331
				public void run() {
332
					JfwAppContext.removeCachedObject(key);
333
				}
334
			}, this.timeLimitWithRegMail + 20000, TimeUnit.MILLISECONDS);
335
		} catch (Exception e) {
336
			JfwAppContext.removeCachedObject(key);
337
			throw new JfwBaseException(10011, "send mail to " + mail + " error", e);
338
		}
339
		return true;
340
	}
341
	
262 342
	@SetCookie(checkResultNull = true, path = "/", value = { "userid=result.getId()", "userMobilePhone=result.getMobilePhone()", "userType=result.getType()",
263 343
			"userAuth=String.valueOf(result.isAuth())", "userEmail=result.getEmail()==null?\"\":result.getEmail()","userName=result.getName()" })
264 344
	@Post
@ -296,7 +376,9 @@ public class SysService {
296 376
		
297 377
		SessionUser ret = new SessionUser();
298 378
		ret.setId(user.getId());
299
		ret.setName(this.professorDao.query(con,user.getId()).getName());
379
		if(null!=this.professorDao.query(con,user.getId())) {
380
			ret.setName(this.professorDao.query(con,user.getId()).getName());
381
		}
300 382
		ret.setMobilePhone(user.getMobilePhone());
301 383
		ret.setType(user.getUserType());
302 384
		ret.setEmail(user.getEmail());