FAISP/src/main/java/com/dbnt/faisp/controller/BaseController.java

61 lines
1.9 KiB
Java
Raw Normal View History

2022-08-18 06:21:44 +00:00
package com.dbnt.faisp.controller;
import com.dbnt.faisp.model.UserInfo;
import com.dbnt.faisp.service.CommonCodeService;
import lombok.RequiredArgsConstructor;
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpSession;
@RestController
@RequiredArgsConstructor
public class BaseController {
private final CommonCodeService commonCodeService;
@GetMapping("/")
public ModelAndView loginCheck(@AuthenticationPrincipal UserInfo loginUser, HttpSession session) {
ModelAndView mav = null;
if(loginUser == null){
mav = new ModelAndView("redirect:/user/login");
}else{
session.setAttribute("positionList", commonCodeService.selectCommonCodeValue("POSITION"));
session.setAttribute("departmentList", commonCodeService.selectCommonCodeValue("DEPARTMENT"));
if(loginUser.getUserRole().indexOf("ADMIN")>0){
mav = new ModelAndView("redirect:/admin/main");
}else{
mav = new ModelAndView("redirect:/board/main");
}
}
return mav;
}
@GetMapping("/refreshSession")
public void getSession(HttpSession session){
session.setAttribute("positionList", commonCodeService.selectCommonCodeValue("POSITION"));
session.setAttribute("departmentList", commonCodeService.selectCommonCodeValue("DEPARTMENT"));
}
@GetMapping("/user/login")
public ModelAndView goLogin() {
ModelAndView mav = new ModelAndView("login");
return mav;
}
@GetMapping("/login-error")
public ModelAndView loginError() {
ModelAndView mav = new ModelAndView("/login");
mav.addObject("loginError", true);
return mav;
}
@GetMapping("/denied")
public ModelAndView doDenied() {
ModelAndView mav = new ModelAndView("login/denied");
return mav;
}
}