/**************************************************************************** * Copyright (C) 2012 ecsec GmbH. * All rights reserved. * Contact: ecsec GmbH (info@ecsec.de) * * This file is part of the Open eCard App. * * GNU General Public License Usage * This file may be used under the terms of the GNU General Public * License version 3.0 as published by the Free Software Foundation * and appearing in the file LICENSE.GPL included in the packaging of * this file. Please review the following information to ensure the * GNU General Public License version 3.0 requirements will be met: * http://www.gnu.org/copyleft/gpl.html. * * Other Usage * Alternatively, this file may be used in accordance with the terms * and conditions contained in a signed written agreement between * you and ecsec GmbH. * ***************************************************************************/ package org.openecard.control.binding.http.interceptor; import java.io.IOException; import org.openecard.apache.http.HttpException; import org.openecard.apache.http.HttpRequest; import org.openecard.apache.http.HttpRequestInterceptor; import org.openecard.apache.http.protocol.HttpContext; import org.openecard.control.binding.http.common.HttpRequestWrapper; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * * @author Moritz Horsch <horsch@cdc.informatik.tu-darmstadt.de> * @author Benedikt Biallowons <benedikt.biallowons@ecsec.de> */ public class CORSRequestInterceptor implements HttpRequestInterceptor { private static final Logger _logger = LoggerFactory.getLogger(CORSRequestInterceptor.class); @Override public void process(HttpRequest httpRequest, HttpContext httpContext) throws HttpException, IOException { HttpRequestWrapper requestWrapper = new HttpRequestWrapper(httpRequest); if (requestWrapper.hasRequestParameter("redirectUrlAsBody")) { _logger.debug("CORS redirect not supported"); httpRequest.getParams().setBooleanParameter("disable-CORS-redirect", true); } } }