Browse Source

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

XMTT 6 years ago
parent
commit
961009fc6f

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

60
60
61
    @PageSelect
61
    @PageSelect
62
    @OrderBy("ORDER BY CODE")
62
    @OrderBy("ORDER BY CODE")
63
    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;
63
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN(SELECT BRIDGE FROM USER_BRIDGE WHERE UID=?)") String uid, int pageSize, int pageNo) throws SQLException;
64
64
65
    @SelectList
65
    @SelectList
66
    @OrderBy("ORDER BY CODE")
66
    @OrderBy("ORDER BY CODE")

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

164
164
165
    @Get
165
    @Get
166
    @Path("/bridge/byUser")
166
    @Path("/bridge/byUser")
167
    public PageQueryResult<Bridge> query(@JdbcConn Connection con, String uid, @Nullable Boolean active, int pageSize, int pageNo) throws SQLException {
168
        return this.bridgeDao.pageQuery(con, active, uid, pageSize, pageNo);
167
    public PageQueryResult<Bridge> query(@JdbcConn Connection con, @LoginUser SessionUser user, @Nullable Boolean active, int pageSize, int pageNo) throws SQLException {
168
        return this.bridgeDao.pageQuery(con, active, user.getId(), pageSize, pageNo);
169
    }
169
    }
170
170
171
171
395
395
396
    @Get
396
    @Get
397
    @Path("/all/byUser")
397
    @Path("/all/byUser")
398
    public Map<String,Object> queryAll(@JdbcConn Connection con,@Nullable Boolean active, String id)throws SQLException {
398
    public Map<String,Object> queryAll(@JdbcConn Connection con,@Nullable Boolean active,@LoginUser SessionUser user)throws SQLException {
399
        Map<String, Object> map = new HashMap<>();
399
        Map<String, Object> map = new HashMap<>();
400
        List<Bridge> bridges = this.bridgeDao.listQueryByUser(con, active, id);
400
        List<Bridge> bridges = this.bridgeDao.listQueryByUser(con, active, user.getId());
401
        String[] bridgeId = new String[bridges.size()];
401
        String[] bridgeId = new String[bridges.size()];
402
        for(int i = 0 ; i < bridges.size() ; ++i) {
402
        for(int i = 0 ; i < bridges.size() ; ++i) {
403
            bridgeId[i] = bridges.get(i).getId();
403
            bridgeId[i] = bridges.get(i).getId();

+ 1 - 4
src/main/java/com/ekexiu/project/bridge/servlet/AlarmDataServlet.java

145
											at = at.substring(0, 14);
145
											at = at.substring(0, 14);
146
											msg.setAlarmTime(at);
146
											msg.setAlarmTime(at);
147
										}
147
										}
148

149
									} else {
148
									} else {
150
										items.clear();
149
										items.clear();
151
										break;
150
										break;
175
			in.close();
174
			in.close();
176
		}
175
		}
177
		if (items.size() > 0) {
176
		if (items.size() > 0) {
178

179
			Connection con = null;
177
			Connection con = null;
180
			try {
178
			try {
181
				con = this.dataSource.getConnection();
179
				con = this.dataSource.getConnection();
215
				}
213
				}
216
				if (items.size() > 0) {
214
				if (items.size() > 0) {
217
					con.commit();
215
					con.commit();
218
					JfwAppContext.getScheduledExecutorService().equals(new Runnable() {
216
					JfwAppContext.getScheduledExecutorService().execute(new Runnable() {
219
						@Override
217
						@Override
220
						public void run() {
218
						public void run() {
221

222
							for (Map.Entry<User, String> entry : notices.entrySet()) {
219
							for (Map.Entry<User, String> entry : notices.entrySet()) {
223
								User u = entry.getKey();
220
								User u = entry.getKey();
224
								String to = u.getEmail();
221
								String to = u.getEmail();

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

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
		}