com.pedra.storefront.controllers.integration.BaseIntegrationController.java Source code

Java tutorial

Introduction

Here is the source code for com.pedra.storefront.controllers.integration.BaseIntegrationController.java

Source

/*
 * [y] hybris Platform
 *
 * Copyright (c) 2000-2013 hybris AG
 * All rights reserved.
 *
 * This software is the confidential and proprietary information of hybris
 * ("Confidential Information"). You shall not disclose such Confidential
 * Information and shall use it only in accordance with the terms of the
 * license agreement you entered into with hybris.
 */

package com.pedra.storefront.controllers.integration;

import de.hybris.platform.cms2.exceptions.CMSItemNotFoundException;
import de.hybris.platform.cms2.model.site.CMSSiteModel;
import de.hybris.platform.cms2.servicelayer.services.CMSSiteService;
import de.hybris.platform.site.BaseSiteService;
import com.pedra.storefront.controllers.AbstractController;

import java.net.MalformedURLException;
import java.net.URL;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Map;

import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;

import org.apache.commons.lang.StringUtils;
import org.apache.log4j.Logger;

/**
 * Base controller for all integration controllers.
 */
public class BaseIntegrationController extends AbstractController {
    private static final Logger LOG = Logger.getLogger(BaseIntegrationController.class);

    @Resource(name = "cmsSiteService")
    protected CMSSiteService cmsSiteService;

    @Resource(name = "baseSiteService")
    protected BaseSiteService baseSiteService;

    protected void initializeSiteFromRequest(final HttpServletRequest httpRequest) {

        final String queryString = httpRequest.getQueryString();
        final String currentRequestURL = httpRequest.getRequestURL().toString();
        final String absoluteURL = StringUtils.removeEnd(currentRequestURL, "/")
                + (StringUtils.isBlank(queryString) ? "" : "?" + queryString);

        try {

            final URL currentURL = new URL(absoluteURL);
            final CMSSiteModel cmsSiteModel = cmsSiteService.getSiteForURL(currentURL);
            if (cmsSiteModel != null) {
                baseSiteService.setCurrentBaseSite(cmsSiteModel, true);
            }
        } catch (final MalformedURLException e) {
            if (LOG.isDebugEnabled()) {
                LOG.debug("Cannot find CMSSite associated with current URL ( " + absoluteURL
                        + " - check whether this is correct URL) !");
            }
        } catch (final CMSItemNotFoundException e) {
            LOG.warn("Cannot find CMSSite associated with current URL (" + absoluteURL + ")!");
            if (LOG.isDebugEnabled()) {
                LOG.debug(e);
            }
        }
    }

    protected Map<String, String> getParameterMap(final HttpServletRequest request) {
        final Map<String, String> map = new HashMap<String, String>();
        final Enumeration myEnum = request.getParameterNames();
        while (myEnum.hasMoreElements()) {
            final String paramName = (String) myEnum.nextElement();
            final String paramValue = request.getParameter(paramName);
            map.put(paramName, paramValue);
        }
        return map;
    }
}