Browse Source

Merge branch 'master' of http://121.42.53.174:3000/jiapeng/bridge.git

jiapeng 6 years ago
parent
commit
8a7a93f9a2

+ 11 - 0
src/main/java/com/ekexiu/project/bridge/resource/dao/BridgeDao.java

9
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
9
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
10
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
10
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
11
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
11
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
12
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
12
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
13
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
14
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.apt.orm.annotation.dao.param.GroupSqlColumn;
15
import org.jfw.apt.orm.annotation.dao.param.Like;
17
import org.jfw.apt.orm.annotation.dao.param.Like;
16
import org.jfw.apt.orm.annotation.dao.param.Set;
18
import org.jfw.apt.orm.annotation.dao.param.Set;
17
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
20
22
21
import java.sql.Connection;
23
import java.sql.Connection;
22
import java.sql.SQLException;
24
import java.sql.SQLException;
25
import java.util.List;
23
26
24
/**
27
/**
25
 * Created by TT on 2018/8/8.
28
 * Created by TT on 2018/8/8.
43
    @Nullable
46
    @Nullable
44
    Bridge query(Connection con, String id) throws SQLException;
47
    Bridge query(Connection con, String id) throws SQLException;
45
48
49
    @SelectOne
50
    @Nullable
51
    Bridge queryByCode(Connection con, String code) throws SQLException;
52
46
    @PageSelect
53
    @PageSelect
47
    @OrderBy("ORDER BY CODE")
54
    @OrderBy("ORDER BY CODE")
48
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @Nullable @Like String name, @Nullable String code, int pageSize, int pageNo) throws SQLException;
55
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @Nullable @Like String name, @Nullable String code, int pageSize, int pageNo) throws SQLException;
50
    @PageSelect
57
    @PageSelect
51
    @OrderBy("ORDER BY CODE")
58
    @OrderBy("ORDER BY CODE")
52
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN(SELECT BCODE FROM USER_BRIDGE WHERE UID=?)") String uid, int pageSize, int pageNo) throws SQLException;
59
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN(SELECT BCODE FROM USER_BRIDGE WHERE UID=?)") String uid, int pageSize, int pageNo) throws SQLException;
60
61
    @SelectList
62
    @OrderBy("ORDER BY CODE")
63
    List<Bridge> listQuery(Connection con, @GroupSqlColumn(handlerClass = StringHandler.class, value = {"NAME LIKE ?", "SHORT_NAME LIKE ?"}, isAnd = false) String key) throws SQLException;
53
}
64
}

+ 4 - 4
src/main/java/com/ekexiu/project/bridge/resource/po/CollectDevice.java

11
@Table(descp="采集盒")
11
@Table(descp="采集盒")
12
public class CollectDevice implements BaseTable {
12
public class CollectDevice implements BaseTable {
13
	private String id;
13
	private String id;
14
	private String seq;
14
	private int seq;
15
	private String code;
15
	private String code;
16
	private String serverId;
16
	private String serverId;
17
	private int	channels;
17
	private int	channels;
35
	public void setId(String id) {
35
	public void setId(String id) {
36
		this.id = id;
36
		this.id = id;
37
	}
37
	}
38
	@Column(descp="内部编号",value=DE.text_de)
39
	public String getSeq() {
38
	@Column(descp="内部编号",value=DE.int_de)
39
	public int getSeq() {
40
		return seq;
40
		return seq;
41
	}
41
	}
42
	public void setSeq(String seq) {
42
	public void setSeq(int seq) {
43
		this.seq = seq;
43
		this.seq = seq;
44
	}
44
	}
45
	@Column(descp="采集盒编号",value=DE.text_de)
45
	@Column(descp="采集盒编号",value=DE.text_de)

+ 3 - 3
src/main/java/com/ekexiu/project/bridge/resource/po/Transducer.java

12
	private String id;
12
	private String id;
13
	private String code;
13
	private String code;
14
	private String deviceId;
14
	private String deviceId;
15
	private String seq;
15
	private int seq;
16
	private String cableType;
16
	private String cableType;
17
	private String locType;
17
	private String locType;
18
	private String remark;
18
	private String remark;
32
		this.id = id;
32
		this.id = id;
33
	}
33
	}
34
	@Column(descp="内部编号",value=DE.text_de)
34
	@Column(descp="内部编号",value=DE.text_de)
35
	public String getSeq() {
35
	public int getSeq() {
36
		return seq;
36
		return seq;
37
	}
37
	}
38
	public void setSeq(String seq) {
38
	public void setSeq(int seq) {
39
		this.seq = seq;
39
		this.seq = seq;
40
	}
40
	}
41
	@Column(descp="采集盒编号",value=DE.text_de)
41
	@Column(descp="采集盒编号",value=DE.text_de)

+ 19 - 0
src/main/java/com/ekexiu/project/bridge/resource/service/BridgeService.java

83
        this.transducerDao = transducerDao;
83
        this.transducerDao = transducerDao;
84
    }
84
    }
85
85
86
    public File getImgPath() {
87
        return imgPath;
88
    }
89
90
    public void setImgPath(File imgPath) {
91
        this.imgPath = imgPath;
92
    }
86
93
87
    /**
94
    /**
88
     * 上传文件
95
     * 上传文件
167
        return this.bridgeDao.query(con, id);
174
        return this.bridgeDao.query(con, id);
168
    }
175
    }
169
176
177
    @Get
178
    @Path("/bridge/byCode")
179
    public Bridge queryByCode(@JdbcConn Connection con,String code)throws SQLException {
180
        return this.bridgeDao.queryByCode(con, code);
181
    }
182
170
    @Get
183
    @Get
171
    @Path("/bridge/delete")
184
    @Path("/bridge/delete")
172
    public void delete(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
185
    public void delete(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
186
        return this.bridgeDao.pageQuery(con, active, name == null ? null : "%" + name + "%", code, pageSize, pageNo);
199
        return this.bridgeDao.pageQuery(con, active, name == null ? null : "%" + name + "%", code, pageSize, pageNo);
187
    }
200
    }
188
201
202
    @Get
203
    @Path("/bridge/list")
204
    public List<Bridge> listQuery(@JdbcConn Connection con,@Nullable String key)throws SQLException {
205
        return this.bridgeDao.listQuery(con, key == null ? null : "%" + key + "%");
206
    }
207
189
    @Post
208
    @Post
190
    @Path("/server")
209
    @Path("/server")
191
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, BridgeServer bridgeServer) throws SQLException {
210
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, BridgeServer bridgeServer) throws SQLException {

+ 6 - 8
src/main/java/com/ekexiu/project/bridge/right/po/UserBridge.java

8
public class UserBridge {
8
public class UserBridge {
9

9

10
	private String uid;
10
	private String uid;
11
	private String bcode;
11
	private String bridge;
12
	
12
	
13
	@Column(descp="用户ID",value= DE.rtext_de)
13
	@Column(descp="用户ID",value= DE.rtext_de)
14
	public String getUid() {
14
	public String getUid() {
18
	public void setUid(String uid) {
18
	public void setUid(String uid) {
19
		this.uid = uid;
19
		this.uid = uid;
20
	}
20
	}
21
	@Column(descp="桥梁编号",value= DE.rtext_de)
22
	public String getBcode() {
23
		return bcode;
21
	@Column(descp="桥梁ID",value= DE.rtext_de)
22
	public String getBridge() {
23
		return bridge;
24
	}
24
	}
25
	public void setBcode(String bcode) {
26
		this.bcode = bcode;
25
	public void setBridge(String bridge) {
26
		this.bridge = bridge;
27
	}
27
	}
28
	
29
	
30
}
28
}

+ 11 - 0
src/main/java/com/ekexiu/project/bridge/system/dao/UserDao.java

1
package com.ekexiu.project.bridge.system.dao;
1
package com.ekexiu.project.bridge.system.dao;
2
2
3
import com.ekexiu.project.bridge.right.po.UserBridge;
3
import com.ekexiu.project.bridge.system.po.Notice;
4
import com.ekexiu.project.bridge.system.po.Notice;
4
import com.ekexiu.project.bridge.system.po.User;
5
import com.ekexiu.project.bridge.system.po.User;
5
import org.jfw.apt.annotation.Nullable;
6
import org.jfw.apt.annotation.Nullable;
7
import org.jfw.apt.orm.annotation.dao.Batch;
6
import org.jfw.apt.orm.annotation.dao.DAO;
8
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.Dynamic;
9
import org.jfw.apt.orm.annotation.dao.Dynamic;
8
import org.jfw.apt.orm.annotation.dao.method.Exclude;
10
import org.jfw.apt.orm.annotation.dao.method.Exclude;
10
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
12
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
11
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
13
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
12
import org.jfw.apt.orm.annotation.dao.method.Where;
14
import org.jfw.apt.orm.annotation.dao.method.Where;
15
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
13
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
16
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
14
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
17
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
15
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
18
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
69
    @Nullable
72
    @Nullable
70
    @SelectOne
73
    @SelectOne
71
    User queryByAccount(Connection con,String account)throws SQLException;
74
    User queryByAccount(Connection con,String account)throws SQLException;
75
76
    @Insert
77
    @Batch
78
    int[] insert(Connection con, UserBridge[] userBridges) throws SQLException;
79
80
    @DeleteWith
81
    @From(UserBridge.class)
82
    int delete(Connection con, String uid) throws SQLException;
72
}
83
}

+ 55 - 41
src/main/java/com/ekexiu/project/bridge/system/service/SysService.java

1
package com.ekexiu.project.bridge.system.service;
1
package com.ekexiu.project.bridge.system.service;
2
2
3
import java.sql.Connection;
4
import java.sql.SQLException;
5
import java.util.ArrayList;
6
import java.util.List;
7
import java.util.Random;
8
import java.util.concurrent.TimeUnit;
9
3
import com.ekexiu.project.bridge.mobile.MobilePhoneService;
4
import com.ekexiu.project.bridge.right.po.UserBridge;
5
import com.ekexiu.project.bridge.system.dao.UserDao;
6
import com.ekexiu.project.bridge.system.po.User;
7
import com.ekexiu.project.bridge.system.vo.SessionUser;
10
import org.jfw.apt.annotation.Autowrie;
8
import org.jfw.apt.annotation.Autowrie;
11
import org.jfw.apt.annotation.DefaultValue;
9
import org.jfw.apt.annotation.DefaultValue;
12
import org.jfw.apt.annotation.Nullable;
10
import org.jfw.apt.annotation.Nullable;
21
import org.jfw.apt.web.annotation.param.SessionVal;
19
import org.jfw.apt.web.annotation.param.SessionVal;
22
import org.jfw.util.PageQueryResult;
20
import org.jfw.util.PageQueryResult;
23
import org.jfw.util.StringUtil;
21
import org.jfw.util.StringUtil;
24
import org.jfw.util.context.JfwAppContext;
25
import org.jfw.util.exception.JfwBaseException;
22
import org.jfw.util.exception.JfwBaseException;
26
import org.jfw.util.state.StateCode;
27
23
28
import com.ekexiu.project.bridge.mobile.MobilePhoneService;
29
import com.ekexiu.project.bridge.system.dao.UserDao;
30
import com.ekexiu.project.bridge.system.po.User;
31
import com.ekexiu.project.bridge.system.vo.SessionUser;
24
import java.sql.Connection;
25
import java.sql.SQLException;
26
import java.util.ArrayList;
27
import java.util.List;
28
import java.util.Random;
32
29
33
/**
30
/**
34
 * Created by TT on 2018/8/7.
31
 * Created by TT on 2018/8/7.
66
	@SetSession("JFW_SESSION_LOGIN_USER=result")
63
	@SetSession("JFW_SESSION_LOGIN_USER=result")
67
	@Path("/login")
64
	@Path("/login")
68
	@Post
65
	@Post
69
	public SessionUser login(@JdbcConn Connection con, String account, String pw, String vc, @Nullable @SessionVal(value ="PIC_LOGIN",remove= true) String code,
70
			@Nullable @SessionVal(value ="TIMEOUT_PIC_LOGIN",remove=true) Long timeout) throws SQLException {
71
		if (code == null || timeout == null) {
72
			return null;
73
		}
74
		if (!vc.equals(code)) {
75
			return null;
76
		}
77
		if (System.currentTimeMillis() > timeout) {
78
			return null;
79
		}
80
		User user = userDao.login(con, account, StringUtil.md5(pw));
81
		if (user != null) {
82
			return makeSessionUser(user);
83
		}
84
		return null;
66
    public SessionUser login(@JdbcConn Connection con, String account, String pw, String vc, @Nullable @SessionVal(value = "PIC_LOGIN", remove = true) String code,
67
                             @Nullable @SessionVal(value = "TIMEOUT_PIC_LOGIN", remove = true) Long timeout) throws SQLException, JfwBaseException {
68
        if (code == null || timeout == null) {
69
            throw new JfwBaseException(-60001, "not found sessionVal");
70
        }
71
        if (!vc.equals(code)) {
72
            throw new JfwBaseException(-60003, "vc not right");
73
        }
74
        if (System.currentTimeMillis() > timeout) {
75
            throw new JfwBaseException(-60002, "timeout");
76
        }
77
        User user = userDao.login(con, account, StringUtil.md5(pw));
78
        if (user != null) {
79
            return makeSessionUser(user);
80
        }
81
        return null;
85
	}
82
	}
86
83
87
	@Get
84
	@Get
88
	@Path("")
85
	@Path("/user")
89
	public SessionUser get(@LoginUser SessionUser user) {
86
	public SessionUser get(@LoginUser SessionUser user) {
90
		return user;
87
		return user;
91
	}
88
	}
98
95
99
	@Post
96
	@Post
100
	@Path("/insert")
97
	@Path("/insert")
101
	public void insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, User user) throws SQLException {
102
		user.setId(StringUtil.buildUUID());
98
	public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, User user) throws SQLException {
99
		String id = StringUtil.buildUUID();
100
		user.setId(id);
103
		user.setActive(true);
101
		user.setActive(true);
104
		user.setPasswd(DEFAULT_PW_STR);
102
		user.setPasswd(DEFAULT_PW_STR);
105
		user.setType(0);
106
		user.setCreator(sessionUser.getId());
103
		user.setCreator(sessionUser.getId());
107
		user.setModifier(sessionUser.getId());
104
		user.setModifier(sessionUser.getId());
108
		this.userDao.insert(con, user);
105
		this.userDao.insert(con, user);
106
		return id;
109
	}
107
	}
110
108
111
	@Get
109
	@Get
172
		this.userDao.updateNotice(con, cnt, sessionUser.getId());
170
		this.userDao.updateNotice(con, cnt, sessionUser.getId());
173
	}
171
	}
174
172
175
	@SetSession({ "RESET_PW_MOBILE=result[0]", "RESET_PW_VC=result[1]", "RESET_PW_TO=result[2]" })
176
	@ResultToNull
177
	@Get
178
	@Path("/regmobilephone")
179
	public Object[] regMobilePhone(@JdbcConn(false) Connection con, String account, @DefaultValue("false") boolean checkExists) throws Exception {
173
    @SetSession({"RESET_PW_MOBILE=result[0]", "RESET_PW_VC=result[1]", "RESET_PW_TO=result[2]"})
174
    @ResultToNull
175
    @Get
176
    @Path("/resetPwMobile")
177
    public Object[] resetpwMobile(@JdbcConn(false) Connection con, String account, @DefaultValue("false") boolean checkExists) throws Exception {
180
		if (checkExists) {
178
		if (checkExists) {
181
			User user = this.userDao.queryByAccount(con, account);
179
			User user = this.userDao.queryByAccount(con, account);
182
			if (null != user) {
180
			if (null != user) {
200
	public boolean resetPassword(@JdbcConn(true) Connection con, String pw, String vc,
198
	public boolean resetPassword(@JdbcConn(true) Connection con, String pw, String vc,
201
			@Nullable @SessionVal(value = "RESET_PW_MOBILE", remove = true) String account,
199
			@Nullable @SessionVal(value = "RESET_PW_MOBILE", remove = true) String account,
202
			@Nullable @SessionVal(value = "RESET_PW_VC", remove = true) String vcode, @Nullable @SessionVal(value = "RESET_PW_TO", remove = true) Long timeout)
200
			@Nullable @SessionVal(value = "RESET_PW_VC", remove = true) String vcode, @Nullable @SessionVal(value = "RESET_PW_TO", remove = true) Long timeout)
203
			throws SQLException, JfwBaseException {
201
			throws SQLException,JfwBaseException {
204
		if (vcode == null || account == null || timeout == null) {
202
		if (vcode == null || account == null || timeout == null) {
205
			return false;
203
			throw  new JfwBaseException(-60001,"not found sessionVal");
206
		}
204
		}
207
		if (System.currentTimeMillis() > timeout) {
205
		if (System.currentTimeMillis() > timeout) {
208
			return false;
206
			throw new JfwBaseException(-60002,"timout");
209
		}
207
		}
210
		this.userDao.updatePasswdWithMobile(con, StringUtil.md5(pw), account);
208
		this.userDao.updatePasswdWithMobile(con, StringUtil.md5(pw), account);
211
		return true;
209
		return true;
212
	}
210
	}
213
211
212
	@Post
213
	@Path("/userBridge/refresh")
214
	public void refresh(@JdbcConn(true)Connection con,String id,String[] bridges)throws SQLException {
215
		this.userDao.delete(con, id);
216
		if (bridges != null && bridges.length > 0) {
217
			UserBridge[] userBridges = new UserBridge[bridges.length];
218
			for (int i = 0; i < bridges.length; ++i) {
219
				UserBridge ub = new UserBridge();
220
				ub.setUid(id);
221
				ub.setBridge(bridges[i]);
222
				userBridges[i] = ub;
223
			}
224
			this.userDao.insert(con, userBridges);
225
		}
226
	}
227
214
	private static SessionUser makeSessionUser(User user) {
228
	private static SessionUser makeSessionUser(User user) {
215
		SessionUser sessionUser = new SessionUser();
229
		SessionUser sessionUser = new SessionUser();
216
		sessionUser.setAccount(user.getAccount());
230
		sessionUser.setAccount(user.getAccount());