UserCtrl.java
4.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package com.ui.ctrl;
import com.ui.User.MD5Util;
import com.ui.User.UserAuthLocal;
import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.req.AuthModule;
import com.ui.model.req.User;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpSession;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Controller
@RequestMapping("user")
public class UserCtrl {
Logger log = LoggerFactory.getLogger(UserCtrl.class);
@Autowired
HttpRestClient httpRestClient;
@Autowired
UserAuthLocal userAuthLocal;
@RequestMapping("/toLogin")
public ModelAndView toLogin() {
return new ModelAndView("user/login");
}
@RequestMapping("/toupdatePwd")
public ModelAndView toupdatePwd() {
return new ModelAndView("user/modifypwd");
}
@RequestMapping("/login")
public ModelAndView toLogin(User user, HttpSession session, Model model) {
if (StringUtils.isBlank(user.getName())){
if (session.getAttribute("user") == null){
return new ModelAndView("user/login");
}else {
return new ModelAndView("dashBoard/dashBoard");
}
}
User u = userAuthLocal.getUserByname(user.getName());
if (u == null) {
model.addAttribute("message", "用户名不存在");
return new ModelAndView("user/login");
}
if (u.getPwd().equals(MD5Util.encryption(user.getPwd()))) {
session.setAttribute("user", u);
return new ModelAndView("dashBoard/dashBoard");
} else {
model.addAttribute("message", "密码错误");
return new ModelAndView("user/login");
}
}
@RequestMapping("/logout")
public ModelAndView toLogin(HttpSession session) {
session.removeAttribute("user");
return new ModelAndView("user/login");
}
@RequestMapping("/updatePwd")
public ModelAndView updatePwd(String name, String oldpwd, String newpwd, HttpSession session, Model model) {
User u = (User) session.getAttribute("user");
String username = u.getName();
if ("admin".equals(username) && !"admin".equals(name)) {
User user = userAuthLocal.getUserByname(name);
if (user == null) {
model.addAttribute("message", "当前用户不存在");
return new ModelAndView("user/modifypwd");
}
user.setPwd(RandomStringUtils.random(8,true,true));
httpRestClient.defaultPost(HttpUriContants.USER_UPDATE_PWD, user, BaseResponse.class);
userAuthLocal.flushUser(name);
return new ModelAndView("dashBoard/dashBoard");
} else if (name.equals(username)) {
User user = userAuthLocal.getUserByname(name);
if (!user.getPwd().equals(MD5Util.encryption(oldpwd))) {
model.addAttribute("message", "旧密码错误");
return new ModelAndView("user/modifypwd");
}
user.setPwd(newpwd);
httpRestClient.defaultPost(HttpUriContants.USER_UPDATE_PWD, user, BaseResponse.class);
session.removeAttribute("user");
userAuthLocal.flushUser(name);
return new ModelAndView("user/login");
} else {
model.addAttribute("message", "无权限修改当前账户");
return new ModelAndView("user/modifypwd");
}
}
@RequestMapping("/getAllModuleAndGroup")
@ResponseBody
public Map getAllModuleAndGroup() {
//加载mudule信息
BaseResponse<List<AuthModule>> moduleResponse = httpRestClient.exchangeForget(HttpUriContants.GET_All_MODULE, new ParameterizedTypeReference<BaseResponse<List<AuthModule>>>() {}, null);
BaseResponse baseResponse = httpRestClient.defaultPost(HttpUriContants.GET_All_MODULEGROUP, null, BaseResponse.class);
if (moduleResponse != null && baseResponse != null){
Map map = new HashMap<>();
map.put("modules",moduleResponse.getData());
map.put("moduleGroups",baseResponse.getData());
return map;
}else {
return null;
}
}
}