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

org.apache.jetspeed.JetspeedPortalContext Maven / Gradle / Ivy

There is a newer version: 2.3.1
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.jetspeed;

import java.util.Collection;
import java.util.Collections;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Iterator;

import javax.portlet.PortletMode;
import javax.portlet.WindowState;

import org.apache.jetspeed.administration.PortalConfiguration;
import org.apache.jetspeed.container.PortletWindow;
import org.apache.jetspeed.engine.Engine;
import org.apache.jetspeed.request.RequestContext;

/**
 * Implementation of Portal Context associated with running thread of the engine
 *
 * @author David Sean Taylor
 * @version $Id: JetspeedPortalContext.java 760344 2009-03-31 06:31:57Z taylor $
 */
public class JetspeedPortalContext implements PortalContext
{
    private static final String SUPPORTED_WINDOWSTATE_ATTR = "supported.windowstate";
    private static final String SUPPORTED_PORTLETMODE_ATTR = "supported.portletmode";
    private static final String PORTAL_VERSION_ATTR = "portal.version";
    private static final String PORTAL_NAME_ATTR = "portal.name";
    
    /**
     * The engine associated with this context.
     */
    private Engine engine = null;

    /**
     * Runtime attributes.
     */
    private HashMap attributes = new HashMap();

    /**
     * Configuration state
     */
    private PortalConfiguration configuration = null;

    /**
     * The base from which the Jetspped application will operate.
     */
    private String applicationRoot;
    
    private String contextPath;
    
    private String portalInfo;

    public JetspeedPortalContext()
    {
    }
    
    public JetspeedPortalContext(Engine engine, PortalConfiguration configuration, String applicationRoot)
    {
        this.engine = engine;
        this.configuration = configuration;
        this.applicationRoot = applicationRoot;
        initialize();
    }

    // ------------------------------------------------------------------------
    //  A C C E S S O R S
    // ------------------------------------------------------------------------

    /**
     * Returns the configuration properties for this Jetspeed engine context.
     *
     * @return a Configuration containing the configuration properties for this Jetspeed context.
     */
    public PortalConfiguration getConfiguration()
    {
        return configuration;
    }

    public String getConfigurationProperty(String key)
    {
        return configuration.getString(key);
    }

    public String getConfigurationProperty(String key, String defaultValue)
    {
        return configuration.getString(key, defaultValue);
    }

    /**
     * Set the configuration properties for this Jetspeed engine context.
     *
     * @param configuration - the configuration properties
     */
    public void setConfiguration(PortalConfiguration configuration)
    {
        this.configuration = configuration;
        initialize();
    }
    
    protected void initialize()
    {
        portalInfo = configuration.getString(PORTAL_NAME_ATTR) + "/" + configuration.getString(PORTAL_VERSION_ATTR);
        
        // Inititalize supported portlet modes and window states
        String[] supportedModes = configuration.getStringArray(SUPPORTED_PORTLETMODE_ATTR);
        String[] supportedStates = configuration.getStringArray(SUPPORTED_WINDOWSTATE_ATTR);
        new JetspeedActions(supportedModes, supportedStates);        
    }

    /**
     * Returns the application root for this Jetspeed engine context.
     *
     * @return a String containing the application root path for this Jetspeed context.
     */
    public String getApplicationRoot()
    {
        return applicationRoot;
    }

    /**
     * Sets the application root path for this Jetspeed engine context.
     *
     * @param applicationRoot - the applicationRoot path on the file system.
     */
    public void setApplicationRoot(String applicationRoot)
    {
        this.applicationRoot = applicationRoot;
    }
    
    public String getContextPath()
    {
        return contextPath;
    }
    
    public void setContextPath(String contextPath)
    {
        this.contextPath = contextPath;
    }

    /**
     * Returns the engine associated with this context.
     *
     * @return an Engine associated with this context
     */
    public Engine getEngine()
    {
        return this.engine;
    }
    
    /**
     * Returns the engine attribute with the given name, or null if there is no attribute by that name.
     *
     * @return an Object containing the value of the attribute, or null if no attribute exists matching the given name
     */
    public Object getAttribute(String name)
    {
        return attributes.get(name);
    }


    /**
     * Binds an object to a given attribute name in this servlet context.
     *
     * @param  name - a String specifying the name of the attribute
     * @param value - an Object representing the attribute to be bound
     */
    public void setAttribute(String name, Object value)
    {
        attributes.put(name, value);
    }

    /* (non-Javadoc)
     * @see javax.portlet.PortalContext#getProperty(java.lang.String)
     */
    public String getProperty(String name)
    {
        if (name == null) 
        {
            throw new IllegalArgumentException("Property name == null");
        }
        return(String) configuration.getString(name);
    }

    /* (non-Javadoc)
     * @see javax.portlet.PortalContext#getPropertyNames()
     */
    public Enumeration getPropertyNames()
    {
        final Iterator keys = configuration.getKeys(); 
        return new Enumeration()
        {
            public boolean hasMoreElements()
            {
                return keys.hasNext();
            }

            public String nextElement()
            {
                return keys.next();
            }
        };
    }
    
    private Collection getSupportedModes()
    {
        RequestContext rc = Jetspeed.getCurrentRequestContext();
        if (rc != null)
        {
            PortletWindow window  = rc.getCurrentPortletWindow();
            if (window != null)
            {
                return window.getPortletDefinition().getApplication().getSupportedPortletModes();
            }
        }
        return JetspeedActions.getStandardPortletModes();
    }

    /* (non-Javadoc)
     * @see javax.portlet.PortalContext#getSupportedPortletModes()
     */
    public Enumeration getSupportedPortletModes()
    {
        return Collections.enumeration(getSupportedModes());
    }
    
    public boolean isPortletModeAllowed(PortletMode mode)
    {
        return getSupportedModes().contains(mode);
    }

    private Collection getSupportedStates()
    {
        RequestContext rc = Jetspeed.getCurrentRequestContext();
        if (rc != null)
        {        
            PortletWindow window = rc.getCurrentPortletWindow();
            if (window != null)
            {
                return window.getPortletDefinition().getApplication().getSupportedWindowStates();
            }
        }
        return JetspeedActions.getStandardWindowStates();
    }
    
    /* (non-Javadoc)
     * @see javax.portlet.PortalContext#getSupportedWindowStates()
     */
    public Enumeration getSupportedWindowStates()
    {
        return Collections.enumeration(getSupportedStates());
    }
    
    public boolean isWindowStateAllowed(WindowState state)
    {
        return getSupportedStates().contains(state);
    }

    /* (non-Javadoc)
     * @see javax.portlet.PortalContext#getPortalInfo()
     */
    public String getPortalInfo()
    {
        return portalInfo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy