org.joinfaces.autoconfigure.adminfaces.AdminfacesAutoConfiguration Maven / Gradle / Ivy
/*
* Copyright 2016-2022 the original author or authors.
*
* 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
*
* https://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.joinfaces.autoconfigure.adminfaces;
import javax.ejb.AccessLocalException;
import javax.faces.application.ViewExpiredException;
import javax.persistence.OptimisticLockException;
import com.github.adminfaces.template.config.AdminConfig;
import com.github.adminfaces.template.exception.AccessDeniedException;
import com.github.adminfaces.template.session.AdminServletContextListener;
import com.github.adminfaces.template.session.AdminSession;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import org.joinfaces.autoconfigure.primefaces.Primefaces4_0Properties;
import org.joinfaces.autoconfigure.primefaces.Primefaces5_2Properties;
import org.joinfaces.autoconfigure.primefaces.PrimefacesAutoConfiguration;
import org.joinfaces.autoconfigure.servlet.WebFragmentRegistrationBean;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.web.server.ErrorPage;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Scope;
import org.springframework.context.annotation.ScopedProxyMode;
import org.springframework.http.HttpStatus;
import org.springframework.lang.Nullable;
/**
* Spring Boot Auto Configuration of AdminFaces.
*
* @author Marcelo Fernandes
*/
@Slf4j
@AutoConfiguration(before = PrimefacesAutoConfiguration.class)
@EnableConfigurationProperties(AdminfacesProperties.class)
@ComponentScan({"com.github.adminfaces.template.bean",
"com.github.adminfaces.template.config",
"com.github.adminfaces.template.security"})
@ServletComponentScan({"com.github.adminfaces.template.security",
"com.github.adminfaces.template.session"})
@ConditionalOnClass(AdminSession.class)
@ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.SERVLET)
public class AdminfacesAutoConfiguration {
@Autowired
private AdminfacesProperties adminfacesProperties;
@Bean
public BeanPostProcessor adminfacesPrimeFacesPropertiesPostProcessor() {
PrimeFacesPropertiesPostProcessor result = new PrimeFacesPropertiesPostProcessor();
result.setAdminfacesProperties(this.adminfacesProperties);
return result;
}
// AdminSession does not contain @Named.
@Bean
@Scope(value = "session", proxyMode = ScopedProxyMode.TARGET_CLASS)
public AdminSession adminSession() {
return new AdminSession();
}
/**
* This {@link WebFragmentRegistrationBean} is equivalent to the
* {@code META-INF/web-fragment.xml} of the {@code admin-template.jar}.
*
* @return adminTemplateWebFragmentRegistrationBean
*/
@Bean
public WebFragmentRegistrationBean adminTemplateWebFragmentRegistrationBean() {
WebFragmentRegistrationBean bean = new WebFragmentRegistrationBean();
bean.getContextParams().put("primefaces.THEME", "admin");
bean.getErrorPages().add(new ErrorPage(HttpStatus.FORBIDDEN, "/403.xhtml"));
bean.getErrorPages().add(new ErrorPage(AccessDeniedException.class, "/403.xhtml"));
bean.getErrorPages().add(new ErrorPage(AccessLocalException.class, "/403.xhtml"));
bean.getErrorPages().add(new ErrorPage(HttpStatus.NOT_FOUND, "/404.xhtml"));
bean.getErrorPages().add(new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR, "/500.xhtml"));
bean.getErrorPages().add(new ErrorPage(Throwable.class, "/500.xhtml"));
bean.getErrorPages().add(new ErrorPage(ViewExpiredException.class, "/expired.xhtml"));
bean.getErrorPages().add(new ErrorPage(OptimisticLockException.class, "/optimistic.xhtml"));
bean.getListeners().add(AdminServletContextListener.class);
return bean;
}
/**
* This {@link WebFragmentRegistrationBean} is equivalent to the
* {@code META-INF/web-fragment.xml} of the {@code admin-theme.jar}.
*
* @return adminThemeWebFragmentRegistrationBean
*/
@Bean
public WebFragmentRegistrationBean adminThemeWebFragmentRegistrationBean() {
WebFragmentRegistrationBean bean = new WebFragmentRegistrationBean();
bean.getContextParams().put("primefaces.FONT_AWESOME", "true");
return bean;
}
/**
* Configures Primefaces to use admin theme.
* Apply adminfaces configuration from adminfaces properties.
*
* @author Marcelo Fernandes
*/
static class PrimeFacesPropertiesPostProcessor implements BeanPostProcessor {
@Setter
private AdminfacesProperties adminfacesProperties;
@Override
public Object postProcessBeforeInitialization(@Nullable Object bean, @Nullable String beanName) throws BeansException {
if (bean instanceof Primefaces4_0Properties) {
Primefaces4_0Properties properties = (Primefaces4_0Properties) bean;
log.warn("Changing primefaces theme from '{}' to 'admin'.", properties.getTheme());
properties.setTheme("admin");
}
if (bean instanceof Primefaces5_2Properties) {
Primefaces5_2Properties properties = (Primefaces5_2Properties) bean;
log.warn("Changing primefaces fontAwesome from 'false' to 'true'.");
properties.setFontAwesome(true);
}
if (bean instanceof AdminConfig) {
AdminConfigWrapper adminConfigWrapper = new AdminConfigWrapper();
adminConfigWrapper.setAdminfacesProperties(this.adminfacesProperties);
bean = adminConfigWrapper;
}
return bean;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy