LoginEndpoint.java 3.8 KB
Newer Older
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Copyright [2020] [MaxKey of copyright http://www.maxkey.top]
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 

MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
18 19 20 21 22
package org.maxkey.web.endpoint;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

23
import org.maxkey.authn.AbstractAuthenticationProvider;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
24
import org.maxkey.authn.BasicAuthentication;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
25 26
import org.maxkey.authn.support.jwt.JwtLoginService;
import org.maxkey.authn.support.rememberme.AbstractRemeberMeService;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
27
import org.maxkey.configuration.ApplicationConfig;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
28 29 30 31 32 33 34 35
import org.maxkey.web.WebConstants;
import org.maxkey.web.WebContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.CookieValue;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
36
import org.springframework.web.bind.annotation.ModelAttribute;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
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
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView;


/**
 * @author Crystal.Sea
 *
 */
@Controller
public class LoginEndpoint {
	private static Logger _logger = LoggerFactory.getLogger(LoginEndpoint.class);
	
	@Autowired
  	@Qualifier("applicationConfig")
  	protected ApplicationConfig applicationConfig;
 	
	
	@Autowired
	@Qualifier("remeberMeService")
	protected AbstractRemeberMeService remeberMeService;
	
	@Autowired
	@Qualifier("jwtLoginService")
	JwtLoginService jwtLoginService;
	
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
63 64
	@Autowired
	@Qualifier("authenticationProvider")
65
	AbstractAuthenticationProvider authenticationProvider ;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
66
	
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
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
	/**
	 * init login
	 * @return
	 */
 	@RequestMapping(value={"/login"})
	public ModelAndView login(
			HttpServletRequest request,
			HttpServletResponse response,
			@CookieValue(value=WebConstants.REMEBER_ME_COOKIE,required=false) String remeberMe,
			@RequestParam(value = WebConstants.JWT_TOKEN_PARAMETER, required = false) String jwt) {
 		
		_logger.debug("LoginController /login.");
		ModelAndView modelAndView = new ModelAndView();
		
		boolean isAuthenticated= WebContext.isAuthenticated();
		
		//for jwt Login
		if(!isAuthenticated){
			if(jwt!=null&&!jwt.equals("")){
				isAuthenticated=jwtLoginService.login(jwt, response);
			}
		}
				
		//for RemeberMe login
		if(!isAuthenticated){
			if(applicationConfig.getLoginConfig().isRemeberMe()&&remeberMe!=null&& !remeberMe.equals("")){
				isAuthenticated=remeberMeService.login(remeberMe,response);
			}
		}

		//for normal login
		if(!isAuthenticated){
			modelAndView.addObject("isRemeberMe", applicationConfig.getLoginConfig().isRemeberMe());
			
			modelAndView.addObject("isCaptcha", applicationConfig.getLoginConfig().isCaptcha());
			modelAndView.addObject("sessionid", WebContext.getSession().getId());
		}
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
104
		
MaxKey单点登录官方's avatar
mgt sso  
MaxKey单点登录官方 已提交
105 106 107
		if(WebContext.isAuthenticated()){
 			return WebContext.redirect("/main");
		}
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
108 109 110
		modelAndView.setViewName("login");
		return modelAndView;
	}
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
111 112 113 114 115 116 117
 	
 	@RequestMapping(value={"/logon.do"})
	public ModelAndView logon(@ModelAttribute("authentication") BasicAuthentication authentication) {
 		
 		if(WebContext.isAuthenticated()){
 			return WebContext.redirect("/main");
		}else{
MaxKey单点登录官方's avatar
mgt sso  
MaxKey单点登录官方 已提交
118
			authenticationProvider.authenticate(authentication);
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
119 120 121
			return WebContext.redirect("/login");
		}
 	}
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
122
}