XMTT 6 years ago
parent
commit
7b7d6e312d

+ 9 - 14
src/main/java/com/ekexiu/project/bridge/servlet/VerifyCodeServlet.java

@ -1,23 +1,18 @@
1 1
package com.ekexiu.project.bridge.servlet;
2 2

3
import java.awt.Color;
4
import java.awt.Font;
5
import java.awt.Graphics;
6
import java.awt.Graphics2D;
7
import java.awt.RenderingHints;
8
import java.awt.geom.AffineTransform;
9
import java.awt.image.BufferedImage;
10
import java.io.IOException;
11
import java.io.OutputStream;
12
import java.util.Arrays;
13
import java.util.Random;
14

15 3
import javax.imageio.ImageIO;
16 4
import javax.servlet.ServletException;
17 5
import javax.servlet.http.HttpServlet;
18 6
import javax.servlet.http.HttpServletRequest;
19 7
import javax.servlet.http.HttpServletResponse;
20 8
import javax.servlet.http.HttpSession;
9
import java.awt.*;
10
import java.awt.geom.AffineTransform;
11
import java.awt.image.BufferedImage;
12
import java.io.IOException;
13
import java.io.OutputStream;
14
import java.util.Arrays;
15
import java.util.Random;
21 16

22 17
public class VerifyCodeServlet extends HttpServlet {
23 18
	/**
@ -133,8 +128,8 @@ public class VerifyCodeServlet extends HttpServlet {
133 128
			len = Integer.parseInt(request.getParameter("l"));
134 129
		} catch (Exception e) {
135 130
		}
136
		if (width < 4 || width > 10) {
137
			width = DEFAULT_VERIFY_LEN;
131
		if (len < 4 || len > 10) {
132
			len = DEFAULT_VERIFY_LEN;
138 133
		}
139 134
		String flag = request.getParameter("flag");
140 135
		if (flag == null || flag.length() == 0) {

+ 46 - 0
src/main/java/com/ekexiu/project/bridge/system/dao/BirdgeDao.java

@ -0,0 +1,46 @@
1
package com.ekexiu.project.bridge.system.dao;
2
3
import com.ekexiu.project.bridge.resource.po.Bridge;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
8
import org.jfw.apt.orm.annotation.dao.method.Where;
9
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
10
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
11
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
12
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
13
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
14
import org.jfw.apt.orm.annotation.dao.param.Like;
15
import org.jfw.apt.orm.annotation.dao.param.Set;
16
import org.jfw.util.PageQueryResult;
17
18
import java.sql.Connection;
19
import java.sql.SQLException;
20
21
/**
22
 * Created by TT on 2018/8/8.
23
 */
24
@DAO
25
public interface BirdgeDao {
26
27
    @Insert
28
    int insert(Connection con, Bridge bridge)throws SQLException;
29
30
    @UpdateWith
31
    @From(Bridge.class)
32
    @SetSentence("active = false")
33
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
34
35
    @Update
36
    int update(Connection con, Bridge bridge) throws SQLException;
37
38
    @SelectOne
39
    @Nullable
40
    Bridge query(Connection con, String id) throws SQLException;
41
42
    @PageSelect
43
    @Where("active = '1'")
44
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable @Like String name, @Nullable String code, int pageSize, int pageNo) throws SQLException;
45
46
}

+ 46 - 0
src/main/java/com/ekexiu/project/bridge/system/dao/BridgeServerDao.java

@ -0,0 +1,46 @@
1
package com.ekexiu.project.bridge.system.dao;
2
3
import com.ekexiu.project.bridge.resource.po.BridgeServer;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
8
import org.jfw.apt.orm.annotation.dao.method.Where;
9
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
10
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
11
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
12
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
13
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
14
import org.jfw.apt.orm.annotation.dao.param.Set;
15
import org.jfw.util.PageQueryResult;
16
17
import java.sql.Connection;
18
import java.sql.SQLException;
19
20
/**
21
 * Created by TT on 2018/8/8.
22
 */
23
@DAO
24
public interface BridgeServerDao {
25
26
    @Insert
27
    int insert(Connection con, BridgeServer bridgeServer) throws SQLException;
28
29
    @UpdateWith
30
    @From(BridgeServer.class)
31
    @SetSentence("active = '0'")
32
    int logicDelete(Connection con, @Set String modifier, String id)throws SQLException;
33
34
    @Update
35
    int update(Connection con, BridgeServer bridgeServer) throws SQLException;
36
37
    @SelectOne
38
    @Nullable
39
    BridgeServer query(Connection con, String id) throws SQLException;
40
41
    @PageSelect
42
    @Where("active = '1'")
43
    PageQueryResult<BridgeServer> pqgeQuery(Connection con);
44
}
45
46

+ 43 - 0
src/main/java/com/ekexiu/project/bridge/system/dao/CollectDeviceDao.java

@ -0,0 +1,43 @@
1
package com.ekexiu.project.bridge.system.dao;
2
3
import com.ekexiu.project.bridge.resource.po.CollectDevice;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
8
import org.jfw.apt.orm.annotation.dao.method.Where;
9
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
10
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
11
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
12
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
13
import org.jfw.apt.orm.annotation.dao.param.Set;
14
import org.jfw.util.PageQueryResult;
15
16
import java.sql.Connection;
17
import java.sql.SQLException;
18
19
/**
20
 * Created by TT on 2018/8/8.
21
 */
22
@DAO
23
public interface CollectDeviceDao {
24
25
    @Insert
26
    int insert(Connection con, CollectDevice collectDevice) throws SQLException;
27
28
    @UpdateWith
29
    @From(CollectDevice.class)
30
    @SetSentence("active = '0'")
31
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
32
33
    @UpdateWith
34
    int update(Connection con, CollectDevice collectDevice)throws SQLException;
35
36
    @SelectOne
37
    @Nullable
38
    CollectDevice query(Connection con, String id) throws SQLException;
39
40
    @PageSelect
41
    @Where("active = '1'")
42
    PageQueryResult<CollectDevice> pageQuery(Connection con, @Nullable String serverId, @Nullable String code) throws SQLException;
43
}

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

@ -0,0 +1,58 @@
1
package com.ekexiu.project.bridge.system.dao;
2
3
import com.ekexiu.project.bridge.system.po.User;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.Dynamic;
7
import org.jfw.apt.orm.annotation.dao.method.Exclude;
8
import org.jfw.apt.orm.annotation.dao.method.From;
9
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
10
import org.jfw.apt.orm.annotation.dao.method.Where;
11
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
12
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.apt.orm.annotation.dao.param.Like;
17
import org.jfw.apt.orm.annotation.dao.param.Set;
18
import org.jfw.util.PageQueryResult;
19
20
import java.sql.Connection;
21
import java.sql.SQLException;
22
23
/**
24
 * Created by TT on 2018/8/7.
25
 */
26
@DAO
27
public interface UserDao {
28
29
    @Nullable
30
    @SelectOne
31
    User query(Connection con, String id)throws SQLException;
32
33
    @Nullable
34
    @SelectOne
35
    @Where("active = '1'")
36
    User login(Connection con, String account,String passwd) throws SQLException;
37
38
    @Insert
39
    int insert(Connection con, User user) throws SQLException;
40
41
    @Update
42
    @Exclude("passwd")
43
    @Dynamic
44
    int update(Connection con, User user) throws SQLException;
45
46
    @UpdateWith
47
    @From(User.class)
48
    @SetSentence("active = '0'")
49
    int ban(Connection con,@Set String modifier, String id) throws SQLException;
50
51
    @PageSelect
52
    @Where("active = '1'")
53
    PageQueryResult<User> pageQuery(Connection con, @Nullable @Like String account, @Nullable @Like String name, @Nullable @Like String comp, int pageSize, int pageNo) throws SQLException;
54
55
    @UpdateWith
56
    @From(User.class)
57
    int changePw(Connection con, @Set String passwd, String id) throws SQLException;
58
}

+ 10 - 1
src/main/java/com/ekexiu/project/bridge/system/po/User.java

@ -5,6 +5,7 @@ import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5 5
import org.jfw.apt.orm.annotation.entry.Table;
6 6
import org.jfw.apt.orm.annotation.entry.Unique;
7 7
import org.jfw.apt.orm.annotation.entry.Uniques;
8
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
8 9
import org.jfw.apt.orm.core.enums.DE;
9 10

10 11
import com.ekexiu.project.bridge.base.po.BaseTable;
@ -27,6 +28,7 @@ public class User implements BaseTable {
27 28
	private String email;
28 29
	private String remark;
29 30
	private String passwd;
31
	private int type;
30 32
	
31 33
	private boolean active;
32 34
	
@ -38,7 +40,7 @@ public class User implements BaseTable {
38 40
	public void setActive(boolean active) {
39 41
		this.active = active;
40 42
	}
41
	@Column(descp="密码(MD5)",value=DE.id_32)
43
	@Column(descp="密码(MD5)",queryable=false,handlerClass = StringHandler.class,dbType = "TEXT")
42 44
	public String getPasswd() {
43 45
		return passwd;
44 46
	}
@ -101,6 +103,13 @@ public class User implements BaseTable {
101 103
	public void setRemark(String remark) {
102 104
		this.remark = remark;
103 105
	}
106
	@Column(descp="账户类型",value=DE.int_de)
107
	public int getType() {
108
		return type;
109
	}
110
	public void setType(int type) {
111
		this.type = type;
112
	}
104 113
	public String getCreateTime() {
105 114
		return createTime;
106 115
	}

+ 15 - 9
src/main/java/com/ekexiu/project/bridge/system/service/DictService.java

@ -1,12 +1,7 @@
1 1
package com.ekexiu.project.bridge.system.service;
2 2

3
import java.sql.Connection;
4
import java.sql.SQLException;
5
import java.util.Collections;
6
import java.util.HashMap;
7
import java.util.LinkedList;
8
import java.util.List;
9

3
import com.ekexiu.project.bridge.system.dao.DictDao;
4
import com.ekexiu.project.bridge.system.po.DictItem;
10 5
import org.jfw.apt.annotation.Autowrie;
11 6
import org.jfw.apt.annotation.Nullable;
12 7
import org.jfw.apt.web.annotation.Path;
@ -15,8 +10,12 @@ import org.jfw.apt.web.annotation.operate.Post;
15 10
import org.jfw.apt.web.annotation.param.AfterCommit;
16 11
import org.jfw.apt.web.annotation.param.JdbcConn;
17 12

18
import com.ekexiu.project.bridge.system.dao.DictDao;
19
import com.ekexiu.project.bridge.system.po.DictItem;
13
import java.sql.Connection;
14
import java.sql.SQLException;
15
import java.util.Collections;
16
import java.util.HashMap;
17
import java.util.LinkedList;
18
import java.util.List;
20 19

21 20
@Path("/dict")
22 21
public class DictService {
@ -26,6 +25,13 @@ public class DictService {
26 25
	@Autowrie
27 26
	private DictDao dictDao;
28 27

28
	public DictDao getDictDao() {
29
		return dictDao;
30
	}
31

32
	public void setDictDao(DictDao dictDao) {
33
		this.dictDao = dictDao;
34
	}
29 35
	public void load(Connection con) throws SQLException {
30 36
		List<DictItem> items = this.dictDao.query(con);
31 37
		for (DictItem item : items) {

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

@ -0,0 +1,131 @@
1
package com.ekexiu.project.bridge.system.service;
2
3
import com.ekexiu.project.bridge.system.dao.UserDao;
4
import com.ekexiu.project.bridge.system.po.User;
5
import com.ekexiu.project.bridge.system.vo.SessionUser;
6
import org.jfw.apt.annotation.Autowrie;
7
import org.jfw.apt.annotation.Nullable;
8
import org.jfw.apt.web.annotation.LoginUser;
9
import org.jfw.apt.web.annotation.Path;
10
import org.jfw.apt.web.annotation.method.InvalidSession;
11
import org.jfw.apt.web.annotation.method.SetSession;
12
import org.jfw.apt.web.annotation.operate.Get;
13
import org.jfw.apt.web.annotation.operate.Post;
14
import org.jfw.apt.web.annotation.param.JdbcConn;
15
import org.jfw.apt.web.annotation.param.PathVar;
16
import org.jfw.util.PageQueryResult;
17
import org.jfw.util.StringUtil;
18
import org.jfw.util.exception.JfwBaseException;
19
20
import java.sql.Connection;
21
import java.sql.SQLException;
22
23
/**
24
 * Created by TT on 2018/8/7.
25
 */
26
@Path("/sys")
27
public class SysService {
28
29
    public static final String DEFAULT_PW_STR = StringUtil.md5("123456");
30
31
    @Autowrie
32
    private UserDao userDao;
33
34
35
    public UserDao getUserDao() {
36
        return userDao;
37
    }
38
39
    public void setUserDao(UserDao userDao) {
40
        this.userDao = userDao;
41
    }
42
43
    @SetSession("JFW_SESSION_LOGIN_USER=result")
44
    @Path("/login")
45
    @Post
46
    public SessionUser login(@JdbcConn Connection con, String account, String pw) throws SQLException {
47
        User user = userDao.login(con, account, StringUtil.md5(pw));
48
        if (user != null) {
49
            SessionUser sessionUser = new SessionUser();
50
            sessionUser.setAccount(user.getAccount());
51
            sessionUser.setComp(user.getComp());
52
            sessionUser.setEmail(user.getEmail());
53
            sessionUser.setId(user.getId());
54
            sessionUser.setJob(user.getJob());
55
            sessionUser.setName(user.getName());
56
            sessionUser.setPhone(user.getPhone());
57
            sessionUser.setRemark(user.getRemark());
58
            sessionUser.setType(user.getType());
59
            return sessionUser;
60
        }
61
        return null;
62
    }
63
64
    @Get
65
    @Path
66
    public SessionUser get(@LoginUser SessionUser user) {
67
        return user;
68
    }
69
70
    @Get
71
    @Path("/logout")
72
    @InvalidSession
73
    public void logout() {
74
    }
75
76
    @Post
77
    @Path
78
    public void insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, User user) throws SQLException {
79
        user.setId(StringUtil.buildUUID());
80
        user.setActive(true);
81
        user.setPasswd(DEFAULT_PW_STR);
82
        user.setType(0);
83
        user.setCreator(sessionUser.getId());
84
        user.setModifier(sessionUser.getId());
85
        this.userDao.insert(con, user);
86
    }
87
88
    @Get
89
    @Path("/id/{id}")
90
    public User query(@JdbcConn Connection con,@PathVar String id)throws SQLException {
91
        return this.userDao.query(con, id);
92
    }
93
94
    @Post
95
    @Path("/update")
96
    public void update(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, User user) throws SQLException {
97
        user.setModifier(sessionUser.getId());
98
        this.userDao.update(con, user);
99
    }
100
101
    @Get
102
    @Path("/ban")
103
    public void ban(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
104
        this.userDao.ban(con, sessionUser.getId(), id);
105
    }
106
107
    @Get
108
    @Path("/pq")
109
    public PageQueryResult pageQuery(@JdbcConn Connection con, @Nullable String account, @Nullable String name, @Nullable String comp, int pageSize, int pageNo) throws SQLException {
110
        return this.userDao.pageQuery(con, account == null ? null : "%" + account + "%", name == null ? null : "%" + name + "%", comp == null ? null : "%" + comp + "%", pageSize, pageNo);
111
    }
112
113
    @Get
114
    @Path("/resetPw")
115
    public void resetPw(@JdbcConn(true) Connection con,String id)throws SQLException {
116
        this.userDao.changePw(con, DEFAULT_PW_STR, id);
117
    }
118
119
    @Post
120
    @Path("/changePw")
121
    public void changePw(@JdbcConn(true) Connection con,String id,String oldPw,String newPw) throws SQLException, JfwBaseException {
122
        User user = this.userDao.query(con, id);
123
        if (user!=null&&StringUtil.md5(oldPw).equals(StringUtil.md5(user.getPasswd()))) {
124
            this.userDao.changePw(con, StringUtil.md5(newPw), id);
125
        }else{
126
            throw new JfwBaseException(100001, "用户不存在或密码不匹配");
127
        }
128
    }
129
130
131
}

+ 89 - 0
src/main/java/com/ekexiu/project/bridge/system/vo/SessionUser.java

@ -0,0 +1,89 @@
1
package com.ekexiu.project.bridge.system.vo;
2
3
/**
4
 * Created by TT on 2018/8/7.
5
 */
6
public class SessionUser {
7
8
    private String id;
9
    private String name;
10
    private String account;
11
    private String comp;
12
    private String job;
13
    private String phone;
14
    private String email;
15
    private String remark;
16
    private int type;
17
18
    public String getId() {
19
        return id;
20
    }
21
22
    public void setId(String id) {
23
        this.id = id;
24
    }
25
26
    public String getName() {
27
        return name;
28
    }
29
30
    public void setName(String name) {
31
        this.name = name;
32
    }
33
34
    public String getAccount() {
35
        return account;
36
    }
37
38
    public void setAccount(String account) {
39
        this.account = account;
40
    }
41
42
    public String getComp() {
43
        return comp;
44
    }
45
46
    public void setComp(String comp) {
47
        this.comp = comp;
48
    }
49
50
    public String getJob() {
51
        return job;
52
    }
53
54
    public void setJob(String job) {
55
        this.job = job;
56
    }
57
58
    public String getPhone() {
59
        return phone;
60
    }
61
62
    public void setPhone(String phone) {
63
        this.phone = phone;
64
    }
65
66
    public String getEmail() {
67
        return email;
68
    }
69
70
    public void setEmail(String email) {
71
        this.email = email;
72
    }
73
74
    public String getRemark() {
75
        return remark;
76
    }
77
78
    public void setRemark(String remark) {
79
        this.remark = remark;
80
    }
81
82
    public int getType() {
83
        return type;
84
    }
85
86
    public void setType(int type) {
87
        this.type = type;
88
    }
89
}