/** * 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.security.fo.component; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.hoteia.qalingo.core.domain.enumtype.FoUrls; import org.hoteia.qalingo.core.service.UrlService; 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.access.AccessDeniedException; import org.springframework.stereotype.Component; @Component(value="accessDeniedHandler") public class AccessDeniedHandler extends org.springframework.security.web.access.AccessDeniedHandlerImpl { private final Logger logger = LoggerFactory.getLogger(getClass()); @Autowired protected UrlService urlService; @Autowired protected RequestUtil requestUtil; @Override public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException accessDeniedException) throws IOException, ServletException { try { String url = urlService.generateRedirectUrl(FoUrls.FORBIDDEN, requestUtil.getRequestData(request)); setErrorPage(url); } catch (Exception e) { logger.error("", e); } super.handle(request, response, accessDeniedException); } }