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

org.apache.deltaspike.jsf.impl.injection.InjectionAwareApplicationWrapper Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you 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.apache.deltaspike.jsf.impl.injection;

import org.apache.deltaspike.core.util.ProxyUtils;
import org.apache.deltaspike.jsf.api.config.JsfModuleConfig;
import org.apache.deltaspike.jsf.impl.security.SecurityAwareViewHandler;
import org.apache.deltaspike.proxy.spi.DeltaSpikeProxy;

import javax.faces.FacesException;
import javax.faces.application.Application;
import javax.faces.application.ApplicationWrapper;
import javax.faces.application.ProjectStage;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;
import javax.faces.event.PreDestroyViewMapEvent;
import javax.faces.event.SystemEvent;
import javax.faces.validator.Validator;

public class InjectionAwareApplicationWrapper extends ApplicationWrapper
{
    private final Application wrapped;
    private final boolean containerManagedConvertersEnabled;
    private final boolean containerManagedValidatorsEnabled;
    private final boolean preDestroyViewMapEventFilterMode;
    private final boolean fullStateSavingFallbackEnabled;
    private final ProjectStage projectStage;

    public InjectionAwareApplicationWrapper(
            Application wrapped, JsfModuleConfig jsfModuleConfig, boolean preDestroyViewMapEventFilterMode,
            ProjectStage projectStage)
    {
        this.wrapped = wrapped;
        this.containerManagedConvertersEnabled = jsfModuleConfig.isContainerManagedConvertersEnabled();
        this.containerManagedValidatorsEnabled = jsfModuleConfig.isContainerManagedValidatorsEnabled();
        this.fullStateSavingFallbackEnabled = jsfModuleConfig.isFullStateSavingFallbackEnabled();
        this.preDestroyViewMapEventFilterMode = preDestroyViewMapEventFilterMode;
        this.projectStage = projectStage;
    }

    @Override
    public Converter createConverter(Class targetClass)
    {
        return managedOrDefaultConverter(this.wrapped.createConverter(targetClass));
    }

    @Override
    public Converter createConverter(String converterId)
    {
        return managedOrDefaultConverter(this.wrapped.createConverter(converterId));
    }

    private Converter managedOrDefaultConverter(Converter defaultResult)
    {
        if (!this.containerManagedConvertersEnabled)
        {
            return defaultResult;
        }
        if (defaultResult == null)
        {
            return null;
        }

        Converter result = ManagedArtifactResolver.resolveManagedConverter(defaultResult.getClass());

        if (result == null)
        {
            return defaultResult;
        }

        if (result instanceof DeltaSpikeProxy || ProxyUtils.isProxiedClass(result.getClass()))
        {
            return result;
        }
        else
        {
            return new ConverterWrapper(result, this.fullStateSavingFallbackEnabled);
        }
    }

    @Override
    public Validator createValidator(String validatorId) throws FacesException
    {
        return managedOrDefaultValidator(this.wrapped.createValidator(validatorId));
    }


    @Override
    public ProjectStage getProjectStage()
    {
        if (this.projectStage == null)
        {
            return getWrapped().getProjectStage();
        }
        return this.projectStage;
    }

    private Validator managedOrDefaultValidator(Validator defaultResult)
    {
        if (!this.containerManagedValidatorsEnabled)
        {
            return defaultResult;
        }
        if (defaultResult == null)
        {
            return null;
        }

        Validator result = ManagedArtifactResolver.resolveManagedValidator(defaultResult.getClass());

        if (result == null)
        {
            return defaultResult;
        }

        if (result instanceof DeltaSpikeProxy || ProxyUtils.isProxiedClass(result.getClass()))
        {
            return result;
        }
        else
        {
            return new ValidatorWrapper(result, this.fullStateSavingFallbackEnabled);
        }
    }

    @Override
    public void publishEvent(FacesContext facesContext, Class systemEventClass, Object source)
    {
        if (!PreDestroyViewMapEvent.class.isAssignableFrom(systemEventClass) ||
                isPreDestroyViewMapEventAllowed(facesContext))
        {
            super.publishEvent(facesContext, systemEventClass, source);
        }
    }

    private boolean isPreDestroyViewMapEventAllowed(FacesContext facesContext)
    {
        return !this.preDestroyViewMapEventFilterMode ||
                    !Boolean.TRUE.equals(facesContext.getExternalContext().getRequestMap().get(
                            SecurityAwareViewHandler.PRE_DESTROY_VIEW_MAP_EVENT_FILTER_ENABLED));
    }

    @Override
    public Application getWrapped()
    {
        return wrapped;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy