org.apereo.cas.config.CasThymeleafConfiguration Maven / Gradle / Ivy
package org.apereo.cas.config;
import org.apereo.cas.configuration.CasConfigurationProperties;
import org.apereo.cas.services.web.CasThymeleafLoginFormDirector;
import org.apereo.cas.services.web.CasThymeleafOutputTemplateHandler;
import org.apereo.cas.services.web.CasThymeleafViewResolverConfigurer;
import org.apereo.cas.services.web.ThemeBasedViewResolver;
import org.apereo.cas.services.web.ThemeViewResolver;
import org.apereo.cas.services.web.ThemeViewResolverFactory;
import org.apereo.cas.util.CollectionUtils;
import org.apereo.cas.util.LoggingUtils;
import org.apereo.cas.validation.CasProtocolViewFactory;
import org.apereo.cas.web.flow.CasWebflowExecutionPlan;
import org.apereo.cas.web.view.CasProtocolThymeleafViewFactory;
import org.apereo.cas.web.view.ChainingTemplateViewResolver;
import org.apereo.cas.web.view.RestfulUrlTemplateResolver;
import org.apereo.cas.web.view.ThemeClassLoaderTemplateResolver;
import org.apereo.cas.web.view.ThemeFileTemplateResolver;
import lombok.extern.slf4j.Slf4j;
import lombok.val;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration;
import org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.OrderComparator;
import org.springframework.core.Ordered;
import org.springframework.util.MimeType;
import org.springframework.util.ResourceUtils;
import org.springframework.web.servlet.ThemeResolver;
import org.springframework.web.servlet.ViewResolver;
import org.thymeleaf.dialect.IDialect;
import org.thymeleaf.dialect.IPostProcessorDialect;
import org.thymeleaf.postprocessor.IPostProcessor;
import org.thymeleaf.postprocessor.PostProcessor;
import org.thymeleaf.spring5.SpringTemplateEngine;
import org.thymeleaf.spring5.view.AbstractThymeleafView;
import org.thymeleaf.spring5.view.ThymeleafViewResolver;
import org.thymeleaf.templatemode.TemplateMode;
import org.thymeleaf.templateresolver.AbstractConfigurableTemplateResolver;
import org.thymeleaf.templateresolver.AbstractTemplateResolver;
import org.thymeleaf.templateresolver.ClassLoaderTemplateResolver;
import org.thymeleaf.templateresolver.FileTemplateResolver;
import org.thymeleaf.templateresolver.ITemplateResolver;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Set;
/**
* This is {@link CasThymeleafConfiguration}.
*
* @author Misagh Moayyed
* @since 6.2.0
*/
@Configuration(value = "casThymeleafConfiguration", proxyBeanMethods = true)
@EnableConfigurationProperties(CasConfigurationProperties.class)
@ConditionalOnClass(value = SpringTemplateEngine.class)
@ImportAutoConfiguration(ThymeleafAutoConfiguration.class)
@Slf4j
public class CasThymeleafConfiguration {
@Autowired
private CasConfigurationProperties casProperties;
@Autowired
private ConfigurableApplicationContext applicationContext;
@Autowired
@Qualifier("themeResolver")
private ObjectProvider themeResolver;
@Autowired
private ObjectProvider> thymeleafViewResolverConfigurers;
@Autowired
private ObjectProvider springTemplateEngine;
@Autowired
private ObjectProvider thymeleafProperties;
private static String appendCharset(final MimeType type, final String charset) {
if (type.getCharset() != null) {
return type.toString();
}
val parameters = new LinkedHashMap();
parameters.put("charset", charset);
parameters.putAll(type.getParameters());
return new MimeType(type, parameters).toString();
}
@Bean
@ConditionalOnMissingBean(name = "chainingTemplateViewResolver")
public AbstractTemplateResolver chainingTemplateViewResolver() {
val chain = new ChainingTemplateViewResolver();
val rest = casProperties.getView().getRest();
if (StringUtils.isNotBlank(rest.getUrl())) {
val url = new RestfulUrlTemplateResolver(casProperties, themeResolver.getObject());
configureTemplateViewResolver(url);
chain.addResolver(url);
}
val templatePrefixes = casProperties.getView().getTemplatePrefixes();
templatePrefixes.forEach(prefix -> {
try {
val prefixPath = ResourceUtils.getFile(prefix).getCanonicalPath();
val viewPath = StringUtils.appendIfMissing(prefixPath, "/");
val theme = prefix.startsWith(ResourceUtils.CLASSPATH_URL_PREFIX)
? new ThemeClassLoaderTemplateResolver(themeResolver.getObject())
: new ThemeFileTemplateResolver(casProperties, themeResolver.getObject());
configureTemplateViewResolver(theme);
theme.setPrefix(viewPath + "themes/%s/");
chain.addResolver(theme);
val template = prefix.startsWith(ResourceUtils.CLASSPATH_URL_PREFIX)
? new ClassLoaderTemplateResolver()
: new FileTemplateResolver();
configureTemplateViewResolver(template);
template.setPrefix(viewPath);
chain.addResolver(template);
} catch (final Exception e) {
LoggingUtils.warn(LOGGER, String.format("Could not add template prefix '%s' to resolver", prefix), e);
}
});
val themeCp = new ThemeClassLoaderTemplateResolver(themeResolver.getObject());
configureTemplateViewResolver(themeCp);
themeCp.setPrefix("templates/%s/");
chain.addResolver(themeCp);
val cpResolver = new ClassLoaderTemplateResolver();
configureTemplateViewResolver(cpResolver);
cpResolver.setPrefix("thymeleaf/templates/");
chain.addResolver(cpResolver);
chain.initialize();
return chain;
}
@ConditionalOnMissingBean(name = "casPropertiesThymeleafViewResolverConfigurer")
@Bean
@RefreshScope
public CasThymeleafViewResolverConfigurer casPropertiesThymeleafViewResolverConfigurer() {
return new CasThymeleafViewResolverConfigurer() {
@Override
public int getOrder() {
return 0;
}
@Override
public void configureThymeleafViewResolver(final ThymeleafViewResolver thymeleafViewResolver) {
thymeleafViewResolver.addStaticVariable("cas", casProperties);
thymeleafViewResolver.addStaticVariable("casProperties", casProperties);
}
@Override
public void configureThymeleafView(final AbstractThymeleafView thymeleafView) {
thymeleafView.addStaticVariable("cas", casProperties);
thymeleafView.addStaticVariable("casProperties", casProperties);
}
};
}
@ConditionalOnMissingBean(name = "registeredServiceViewResolver")
@Bean
@Autowired
@RefreshScope
public ViewResolver registeredServiceViewResolver(@Qualifier("themeViewResolverFactory") final ThemeViewResolverFactory themeViewResolverFactory) {
val resolver = new ThemeBasedViewResolver(this.themeResolver.getObject(), themeViewResolverFactory);
resolver.setOrder(thymeleafViewResolver().getOrder() - 1);
return resolver;
}
@ConditionalOnMissingBean(name = "casThymeleafLoginFormDirector")
@Bean
@RefreshScope
@Autowired
public CasThymeleafLoginFormDirector casThymeleafLoginFormDirector(@Qualifier("casWebflowExecutionPlan")
final CasWebflowExecutionPlan webflowExecutionPlan) {
return new CasThymeleafLoginFormDirector(webflowExecutionPlan);
}
@ConditionalOnMissingBean(name = "themeViewResolverFactory")
@Bean
@RefreshScope
public ThemeViewResolverFactory themeViewResolverFactory() {
val factory = new ThemeViewResolver.Factory(thymeleafViewResolver(),
thymeleafProperties.getObject(), casProperties,
thymeleafViewResolverConfigurers.getObject());
factory.setApplicationContext(applicationContext);
return factory;
}
@ConditionalOnMissingBean(name = "casProtocolViewFactory")
@Bean
@RefreshScope
public CasProtocolViewFactory casProtocolViewFactory() {
return new CasProtocolThymeleafViewFactory(this.springTemplateEngine.getObject(), thymeleafProperties.getObject());
}
@Bean
public ThymeleafViewResolver thymeleafViewResolver() {
val resolver = new ThymeleafViewResolver();
val properties = thymeleafProperties.getObject();
resolver.setProducePartialOutputWhileProcessing(
properties.getServlet().isProducePartialOutputWhileProcessing());
resolver.setCharacterEncoding(properties.getEncoding().name());
resolver.setApplicationContext(applicationContext);
resolver.setExcludedViewNames(properties.getExcludedViewNames());
resolver.setOrder(Ordered.LOWEST_PRECEDENCE - 5);
resolver.setCache(false);
resolver.setViewNames(properties.getViewNames());
resolver.setContentType(appendCharset(properties.getServlet().getContentType(), resolver.getCharacterEncoding()));
val engine = springTemplateEngine.getObject();
if (!engine.isInitialized()) {
engine.addDialect(new IPostProcessorDialect() {
@Override
public int getDialectPostProcessorPrecedence() {
return Integer.MAX_VALUE;
}
@Override
public Set getPostProcessors() {
return CollectionUtils.wrapSet(new PostProcessor(TemplateMode.parse(thymeleafProperties.getObject().getMode()),
CasThymeleafOutputTemplateHandler.class, Integer.MAX_VALUE));
}
@Override
public String getName() {
return CasThymeleafOutputTemplateHandler.class.getSimpleName();
}
});
}
resolver.setTemplateEngine(engine);
thymeleafViewResolverConfigurers.getObject().stream()
.sorted(OrderComparator.INSTANCE)
.forEach(configurer -> configurer.configureThymeleafViewResolver(resolver));
return resolver;
}
private void configureTemplateViewResolver(final AbstractConfigurableTemplateResolver resolver) {
val props = thymeleafProperties.getObject();
resolver.setCacheable(props.isCache());
resolver.setCharacterEncoding(props.getEncoding().name());
resolver.setCheckExistence(props.isCheckTemplateLocation());
resolver.setForceTemplateMode(true);
resolver.setOrder(0);
resolver.setSuffix(".html");
resolver.setTemplateMode(props.getMode());
}
@Bean
public SpringTemplateEngine templateEngine(final ThymeleafProperties properties,
final ObjectProvider templateResolvers,
final ObjectProvider dialects) {
val engine = new SpringTemplateEngine();
engine.setEnableSpringELCompiler(properties.isEnableSpringElCompiler());
engine.setRenderHiddenMarkersBeforeCheckboxes(properties.isRenderHiddenMarkersBeforeCheckboxes());
templateResolvers.orderedStream().forEach(engine::addTemplateResolver);
dialects.orderedStream().forEach(engine::addDialect);
return engine;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy