Package org.hoteia.qalingo.core.web.handler.security

Source Code of org.hoteia.qalingo.core.web.handler.security.ExtSimpleUrlAuthenticationSuccessHandler

/**
* Most of the code in the Qalingo project is copyrighted Hoteia and licensed
* under the Apache License Version 2.0 (release version 0.8.0)
*         http://www.apache.org/licenses/LICENSE-2.0
*
*                   Copyright (c) Hoteia, 2012-2014
* http://www.hoteia.com - http://twitter.com/hoteia - contact@hoteia.com
*
*/
package org.hoteia.qalingo.core.web.handler.security;

import java.io.IOException;
import java.util.Date;

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

import org.apache.commons.lang.StringUtils;
import org.hoteia.qalingo.core.Constants;
import org.hoteia.qalingo.core.domain.User;
import org.hoteia.qalingo.core.domain.UserConnectionLog;
import org.hoteia.qalingo.core.domain.enumtype.BoUrls;
import org.hoteia.qalingo.core.service.BackofficeUrlService;
import org.hoteia.qalingo.core.service.UserConnectionLogService;
import org.hoteia.qalingo.core.service.UserService;
import org.hoteia.qalingo.core.web.util.RequestUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.Authentication;
import org.springframework.security.web.authentication.SimpleUrlAuthenticationSuccessHandler;
import org.springframework.stereotype.Component;

@Component(value="extSimpleUrlAuthenticationSuccessHandler")
public class ExtSimpleUrlAuthenticationSuccessHandler extends SimpleUrlAuthenticationSuccessHandler {

  private final Logger logger = LoggerFactory.getLogger(getClass());
 
    @Autowired
    private UserService userService;

    @Autowired
    private UserConnectionLogService userConnectionLogService;
   
  @Autowired
    protected RequestUtil requestUtil;
 
  @Autowired
    protected BackofficeUrlService backofficeUrlService;
 
  @Autowired
    protected ExtRedirectStrategy redirectStrategy;
 
    @Override
    public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response,
        Authentication authentication) throws IOException, ServletException {

      // Find the current user
      User user = userService.getUserByLoginOrEmail(authentication.getName());

      // Persit only the new UserConnectionLog
      UserConnectionLog userConnectionLog = new UserConnectionLog();
      userConnectionLog.setUserId(user.getId());
      userConnectionLog.setLoginDate(new Date());
      userConnectionLog.setApp(Constants.APP_NAME_BO_BUSINESS_CODE);
      userConnectionLog.setHost(request.getRemoteHost());
     
      userConnectionLog.setPublicAddress(request.getRemoteAddr());
        userConnectionLog.setPrivateAddress(request.getHeader(Constants.X_FORWARDED_FOR));
     
      userConnectionLogService.saveOrUpdateUserConnectionLog(userConnectionLog);

    try {
        // Update the User in Session
        user.getConnectionLogs().add(userConnectionLog);
        requestUtil.updateCurrentUser(request, user);
       
            setUseReferer(false);
            String targetUrl = null;
            String lastUrl = requestUtil.getCurrentRequestUrlNotSecurity(request);

            // SANITY CHECK
            if (StringUtils.isNotEmpty(lastUrl)) {
                // && (lastUrl.contains("cart") || lastUrl.contains("checkout"))
                targetUrl = lastUrl;
            } else {
                targetUrl = backofficeUrlService.generateUrl(BoUrls.HOME, requestUtil.getRequestData(request));;
            }

            setDefaultTargetUrl(targetUrl);
            redirectStrategy.sendRedirect(request, response, targetUrl);
         
    } catch (Exception e) {
      logger.error("", e);
    }

    }

}
TOP

Related Classes of org.hoteia.qalingo.core.web.handler.security.ExtSimpleUrlAuthenticationSuccessHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.