All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.thymeleaf.spring4.requestdata.RequestDataValueProcessorUtils Maven / Gradle / Ivy

There is a newer version: 3.0.15.RELEASE
Show newest version
/*
 * =============================================================================
 * 
 *   Copyright (c) 2011-2014, The THYMELEAF team (http://www.thymeleaf.org)
 * 
 *   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.
 * 
 * =============================================================================
 */
package org.thymeleaf.spring4.requestdata;

import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.servlet.support.RequestContext;
import org.thymeleaf.context.IProcessingContext;
import org.thymeleaf.context.IWebVariablesMap;
import org.thymeleaf.exceptions.ConfigurationException;
import org.thymeleaf.exceptions.TemplateProcessingException;
import org.thymeleaf.spring4.naming.SpringContextVariableNames;
import org.thymeleaf.spring4.util.SpringVersionUtils;
import org.thymeleaf.util.ClassLoaderUtils;


/**
 * 

* Utility class used for applying the org.springframework.web.servlet.support.RequestDataValueProcessor * interface to URLs and forms output by Thymeleaf. *

*

* This Spring interface only exists since Spring 3.1, but was modified in Spring 4. This class will only * apply this value processor if the version of Spring is 4 or newer. *

* * @author Daniel Fernández * * @since 2.1.0 * */ public final class RequestDataValueProcessorUtils { private static final boolean canApply; private static final boolean isSpring31AtLeast; private static final boolean isSpring40AtLeast; private static final String SPRING4_DELEGATE_CLASS = "org.thymeleaf.spring4.requestdata.RequestDataValueProcessor4Delegate"; private static final IRequestDataValueProcessorDelegate spring4Delegate; private static final Logger LOGGER = LoggerFactory.getLogger(RequestDataValueProcessorUtils.class); static { isSpring31AtLeast = SpringVersionUtils.isSpring31AtLeast(); isSpring40AtLeast = SpringVersionUtils.isSpring40AtLeast(); canApply = isSpring40AtLeast; final ClassLoader classLoader = ClassLoaderUtils.getClassLoader(RequestDataValueProcessorUtils.class); if (isSpring40AtLeast) { try { final Class implClass = Class.forName(SPRING4_DELEGATE_CLASS, true, classLoader); spring4Delegate = (IRequestDataValueProcessorDelegate) implClass.newInstance(); } catch (final Exception e) { throw new ConfigurationException( "Environment has been detected to be at least Spring 4, but thymeleaf could not initialize a " + "delegate of class \"" + SPRING4_DELEGATE_CLASS + "\"", e); } } else { LOGGER.warn( "[THYMELEAF] You seem to be using the thymeleaf-spring4 module with Spring version 3.x. " + "Even though most features should work OK, support for CSRF protection on websites will be " + "disabled due to incompatibilities between the different versions of the " + "RequestDataValueProcessor interface in versions 4.x and 3.x."); spring4Delegate = null; } } public static String processAction( final IProcessingContext processingContext, final String action, final String httpMethod) { if (!canApply || !processingContext.isWeb()) { return action; } final IWebVariablesMap variablesMap = (IWebVariablesMap) processingContext.getVariables(); final RequestContext requestContext = (RequestContext) variablesMap.getVariable(SpringContextVariableNames.SPRING_REQUEST_CONTEXT); if (requestContext == null) { return action; } if (spring4Delegate != null) { return spring4Delegate.processAction(requestContext, variablesMap.getRequest(), action, httpMethod); } throw new TemplateProcessingException( "According to the detected Spring version info, a RequestDataValueProcessor delegate should be available, " + "but none seem applicable"); } public static String processFormFieldValue( final IProcessingContext processingContext, final String name, final String value, final String type) { if (!canApply || !processingContext.isWeb()) { return value; } final IWebVariablesMap variablesMap = (IWebVariablesMap) processingContext.getVariables(); final RequestContext requestContext = (RequestContext) variablesMap.getVariable(SpringContextVariableNames.SPRING_REQUEST_CONTEXT); if (requestContext == null) { return value; } if (spring4Delegate != null) { return spring4Delegate.processFormFieldValue(requestContext, variablesMap.getRequest(), name, value, type); } throw new TemplateProcessingException( "According to the detected Spring version info, a RequestDataValueProcessor delegate should be available, " + "but none seem applicable"); } public static Map getExtraHiddenFields(final IProcessingContext processingContext) { if (!canApply || !processingContext.isWeb()) { return null; } final IWebVariablesMap variablesMap = (IWebVariablesMap) processingContext.getVariables(); final RequestContext requestContext = (RequestContext) variablesMap.getVariable(SpringContextVariableNames.SPRING_REQUEST_CONTEXT); if (requestContext == null) { return null; } if (spring4Delegate != null) { return spring4Delegate.getExtraHiddenFields(requestContext, variablesMap.getRequest()); } throw new TemplateProcessingException( "According to the detected Spring version info, a RequestDataValueProcessor delegate should be available, " + "but none seem applicable"); } public static String processUrl(final IProcessingContext processingContext, final String url) { if (!canApply || !processingContext.isWeb()) { return url; } final IWebVariablesMap variablesMap = (IWebVariablesMap) processingContext.getVariables(); final RequestContext requestContext = (RequestContext) variablesMap.getVariable(SpringContextVariableNames.SPRING_REQUEST_CONTEXT); if (requestContext == null) { return url; } if (spring4Delegate != null) { return spring4Delegate.processUrl(requestContext, variablesMap.getRequest(), url); } throw new TemplateProcessingException( "According to the detected Spring version info, a RequestDataValueProcessor delegate should be available, " + "but none seem applicable"); } private RequestDataValueProcessorUtils() { super(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy