|
@@ -7,8 +7,13 @@ import com.bootdo.common.controller.BaseController;
|
|
|
import com.bootdo.common.domain.FileDO;
|
|
|
import com.bootdo.common.domain.Tree;
|
|
|
import com.bootdo.common.service.FileService;
|
|
|
+import com.bootdo.common.token.Header;
|
|
|
+import com.bootdo.common.token.Payload;
|
|
|
+import com.bootdo.common.token.Token;
|
|
|
+import com.bootdo.common.token.TokenUtil;
|
|
|
import com.bootdo.common.utils.*;
|
|
|
import com.bootdo.system.domain.MenuDO;
|
|
|
+import com.bootdo.system.domain.UserDO;
|
|
|
import com.bootdo.system.service.MenuService;
|
|
|
import com.bootdo.system.service.ThirdMsgLogDOService;
|
|
|
import org.apache.shiro.SecurityUtils;
|
|
@@ -21,9 +26,8 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.ui.Model;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
-import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
+import org.springframework.util.ObjectUtils;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
@@ -57,6 +61,8 @@ public class LoginController extends BaseController {
|
|
|
@Resource
|
|
|
private ThirdMsgLogDOService thirdMsgLogDOService;
|
|
|
|
|
|
+ @Resource
|
|
|
+ private TokenUtil tokenUtil;
|
|
|
|
|
|
@GetMapping({"/", ""})
|
|
|
String welcome(Model model) {
|
|
@@ -71,8 +77,8 @@ public class LoginController extends BaseController {
|
|
|
|
|
|
@Log("请求访问主页")
|
|
|
@GetMapping({"/index"})
|
|
|
- String index(Model model) {
|
|
|
- List<Tree<MenuDO>> menus = menuService.listMenuTree(getUserId());
|
|
|
+ String index(@RequestParam("sysFlag") String sysFlag, Model model) {
|
|
|
+ List<Tree<MenuDO>> menus = menuService.listMenuTree(sysFlag,getUserId());
|
|
|
model.addAttribute("menus", menus);
|
|
|
model.addAttribute("name", getUser().getName());
|
|
|
FileDO fileDO = fileService.get(getUser().getPicId());
|
|
@@ -150,16 +156,58 @@ public class LoginController extends BaseController {
|
|
|
return R.error("验证码校验失败");
|
|
|
}
|
|
|
password = MD5Utils.encrypt(username, password);
|
|
|
- UsernamePasswordToken token = new UsernamePasswordToken(username, password);
|
|
|
+ UsernamePasswordToken usernamePasswordToken = new UsernamePasswordToken(username, password);
|
|
|
Subject subject = SecurityUtils.getSubject();
|
|
|
try {
|
|
|
- subject.login(token);
|
|
|
+ subject.login(usernamePasswordToken);
|
|
|
+
|
|
|
return R.ok();
|
|
|
- } catch (AuthenticationException e) {
|
|
|
+ } catch (Exception e) {
|
|
|
return R.error("用户或密码错误");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Log("使用token登录")
|
|
|
+ @GetMapping("/loginWithToken")
|
|
|
+ String loginWithToken(String token) {
|
|
|
+ try {
|
|
|
+ if(ObjectUtils.isEmpty(token)){
|
|
|
+ throw new Exception("token不能为空");
|
|
|
+ }
|
|
|
+
|
|
|
+ Token tokenObj = tokenUtil.getToken(token);
|
|
|
+ if(ObjectUtils.isEmpty(tokenObj) || !tokenUtil.verifyToken(tokenObj)){
|
|
|
+ throw new Exception("token无效");
|
|
|
+ }
|
|
|
+ Payload payload = tokenObj.getPayload();
|
|
|
+ String username = payload.getUsername();
|
|
|
+ String password = payload.getPassword();
|
|
|
+
|
|
|
+ UsernamePasswordToken usernamePasswordToken = new UsernamePasswordToken(username, password);
|
|
|
+ Subject subject = SecurityUtils.getSubject();
|
|
|
+ subject.login(usernamePasswordToken);
|
|
|
+ return "loginWithToken";
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ return "login";
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取当前token
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/getCurrToken")
|
|
|
+ @ResponseBody
|
|
|
+ public String getCurrToken() {
|
|
|
+ try {
|
|
|
+ return tokenUtil.createCurrTokenString();
|
|
|
+ } catch (Exception e) {
|
|
|
+ logger.error("获取当前token失败>>>> ", e);
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/logout")
|
|
|
String logout() {
|
|
|
ShiroUtils.logout();
|