Package org.broadleafcommerce.common.web.controller

Source Code of org.broadleafcommerce.common.web.controller.BroadleafRedirectController

/*
* #%L
* BroadleafCommerce Common Libraries
* %%
* Copyright (C) 2009 - 2013 Broadleaf Commerce
* %%
* 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.
* #L%
*/
package org.broadleafcommerce.common.web.controller;

import org.broadleafcommerce.common.util.BLCRequestUtils;
import org.springframework.ui.Model;
import org.springframework.web.context.request.ServletWebRequest;

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

/**
* This controller works in conjunction with the broadleaf-ajax style redirect.
*
* The logic is quite complex but solves a problem related to redirects and
* an Ajax form.
*
* It is intended to solve a problem with using an Ajax style login modal
* along with Spring Security.
*
* Spring Security wants to redirect after a successful login.   Unfortunately,
* we can reliably redirect from Spring Security to a page within the BLC
* system when the login modal is presented in Ajax.
*
* To solve this problem, Spring Security can be configured to use
* the BroadleafWindowLocationRedirectStrategy.   That strategy will add an attribute to
* session for the page you want to redirect to if the request is coming in
* from an Ajax call.    It will then cause a redirect that should be picked
* up by this controller.   This controller will then render a page with the
* blc-redirect-div.    The client-side javaScript (BLC.js) will intercept
* this code and force the browser to load the new page (e.g. via window.location)
*
* @see BroadleafRedirectStrategy
*
* @author bpolster
*/
public class BroadleafRedirectController {
   
    public String redirect(HttpServletRequest request, HttpServletResponse response, Model model) {
        String path = null;
        if (BLCRequestUtils.isOKtoUseSession(new ServletWebRequest(request))) {
            path = (String) request.getSession().getAttribute("BLC_REDIRECT_URL");
        }

        if (path == null) {
            path = request.getContextPath();
        }
        return "ajaxredirect:" + path;
    }
}
TOP

Related Classes of org.broadleafcommerce.common.web.controller.BroadleafRedirectController

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.