You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by ta...@apache.org on 2003/02/13 07:15:58 UTC

cvs commit: jakarta-jetspeed/src/java/org/apache/jetspeed/modules/actions/portlets SkinUpdateAction.java

taylor      2003/02/12 22:15:58

  Added:       src/java/org/apache/jetspeed/modules/actions/portlets
                        SkinUpdateAction.java
  Log:
  New Skin Browser from Jeremy Ford. Very nice.
  
  Revision  Changes    Path
  1.1                  jakarta-jetspeed/src/java/org/apache/jetspeed/modules/actions/portlets/SkinUpdateAction.java
  
  Index: SkinUpdateAction.java
  ===================================================================
  /* ====================================================================
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution,
   *    if any, must include the following acknowledgment:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowledgment may appear in the software itself,
   *    if and wherever such third-party acknowledgments normally appear.
   *
   * 4. The names "Apache" and "Apache Software Foundation" and
   *     "Apache Jetspeed" must not be used to endorse or promote products
   *    derived from this software without prior written permission. For
   *    written permission, please contact apache@apache.org.
   *
   * 5. Products derived from this software may not be called "Apache" or
   *    "Apache Jetspeed", nor may "Apache" appear in their name, without
   *    prior written permission of the Apache Software Foundation.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   */
  
  package org.apache.jetspeed.modules.actions.portlets;
  
  import java.util.Iterator;
  import java.util.Map;
  
  import org.apache.jetspeed.modules.actions.portlets.security.SecurityConstants;
  import org.apache.jetspeed.om.registry.SkinEntry;
  import org.apache.jetspeed.om.registry.base.BaseSkinEntry;
  import org.apache.jetspeed.portal.portlets.VelocityPortlet;
  import org.apache.jetspeed.services.Registry;
  import org.apache.jetspeed.util.template.JetspeedLink;
  import org.apache.jetspeed.util.template.JetspeedLinkFactory;
  import org.apache.turbine.util.DynamicURI;
  import org.apache.turbine.util.Log;
  import org.apache.turbine.util.RunData;
  import org.apache.turbine.util.security.EntityExistsException;
  import org.apache.velocity.context.Context;
  
  /**
   * This action enables to update the skin entries
   *
   * @author <a href="mailto:caius1440@hotmail.com">Jeremy Ford</a>
   * @version $Id: SkinUpdateAction.java,v 1.1 2003/02/13 06:15:58 taylor Exp $
   */
  public class SkinUpdateAction extends VelocityPortletAction
  {
  
      private static final String PARAMETER = "parameter.";
      private static final String SKIN_UPDATE_PANE = "SkinForm";
  
      /**
       * Subclasses must override this method to provide default behavior
       * for the portlet action
       */
      /**
       * Build the normal state content for this portlet.
       *
       * @param portlet The velocity-based portlet that is being built.
       * @param context The velocity context for this request.
       * @param rundata The turbine rundata context for this request.
       */
      protected void buildNormalContext(
          VelocityPortlet portlet,
          Context context,
          RunData rundata)
          throws Exception
      {
  
          String mode =
              rundata.getParameters().getString(SecurityConstants.PARAM_MODE);
          context.put(SecurityConstants.PARAM_MODE, mode);
  
          String msgid =
              rundata.getParameters().getString(SecurityConstants.PARAM_MSGID);
          if (msgid != null)
          {
              int id = Integer.parseInt(msgid);
              if (id < SecurityConstants.MESSAGES.length)
              {
                  context.put(
                      SecurityConstants.PARAM_MSG,
                      SecurityConstants.MESSAGES[id]);
              }
          }
  
          if (mode != null
              && (mode.equals(SecurityConstants.PARAM_MODE_DELETE)
                  || mode.equals(SecurityConstants.PARAM_MODE_UPDATE)))
          {
              String skinName = rundata.getParameters().getString("skinname");
              SkinEntry skinEntry =
                  (SkinEntry) Registry.getEntry(Registry.SKIN, skinName);
              context.put("entry", skinEntry);
          }
      }
  
      /**
       * Insert a skin entry into the registry
       * @param rundata The turbine rundata context for this request.
       * @param context The velocity context for this request.
       * @throws Exception
       */
      public void doInsert(RunData rundata, Context context) throws Exception
      {
          try
          {
              String skinName = rundata.getParameters().getString("skinname");
  
              if (skinName == null || skinName.length() == 0)
              {
                  JetspeedLink link = JetspeedLinkFactory.getInstance(rundata);
                  DynamicURI duri =
                      link
                          .getPaneByName(SKIN_UPDATE_PANE)
                          .addPathInfo(
                              SecurityConstants.PARAM_MODE,
                              SecurityConstants.PARAM_MODE_INSERT)
                          .addPathInfo(
                              SecurityConstants.PARAM_MSGID,
                              SecurityConstants.MID_INVALID_ENTITY_NAME);
                  JetspeedLinkFactory.putInstance(link);
                  rundata.setRedirectURI(duri.toString());
  
                  resetForm(rundata);
              }
              else
              {
                  //check if profile to be created already exists
                  SkinEntry existingSkinEntry =
                      (SkinEntry) Registry.getEntry(Registry.SKIN, skinName);
                  if (existingSkinEntry != null)
                  {
                      throw new EntityExistsException(
                          "SkinEntry: " + skinName + " Already Exists!");
                  }
  
                  BaseSkinEntry skinEntry = new BaseSkinEntry();
                  skinEntry.setName(skinName);
  
                  addParameters(rundata, skinEntry);
  
                  Registry.addEntry(Registry.SKIN, skinEntry);
  
                  clearUserData(rundata);
              }
          }
          catch (EntityExistsException e)
          {
              //
              // dup key found - display error message - bring back to same screen
              //
              JetspeedLink link = JetspeedLinkFactory.getInstance(rundata);
              DynamicURI duri =
                  link
                      .getPaneByName(SKIN_UPDATE_PANE)
                      .addPathInfo(
                          SecurityConstants.PARAM_MODE,
                          SecurityConstants.PARAM_MODE_INSERT)
                      .addPathInfo(
                          SecurityConstants.PARAM_MSGID,
                          SecurityConstants.MID_ENTITY_ALREADY_EXISTS);
              JetspeedLinkFactory.putInstance(link);
              rundata.setRedirectURI(duri.toString());
  
              resetForm(rundata);
          }
          catch (Exception e)
          {
              JetspeedLink link = JetspeedLinkFactory.getInstance(rundata);
              DynamicURI duri =
                  link
                      .getPaneByName(SKIN_UPDATE_PANE)
                      .addPathInfo(
                          SecurityConstants.PARAM_MODE,
                          SecurityConstants.PARAM_MODE_INSERT)
                      .addPathInfo(
                          SecurityConstants.PARAM_MSGID,
                          SecurityConstants.MID_UPDATE_FAILED);
              JetspeedLinkFactory.putInstance(link);
              rundata.setRedirectURI(duri.toString());
  
              resetForm(rundata);
          }
      }
  
      /**
       * Update a skin entry that is in the registry
       * @param rundata The turbine rundata context for this request.
       * @param context The velocity context for this request.
       * @throws Exception
       */
      public void doUpdate(RunData rundata, Context context) throws Exception
      {
          try
          {
              String skinName = rundata.getParameters().getString("skinname");
  
              if (skinName == null || skinName.length() == 0)
              {
                  JetspeedLink link = JetspeedLinkFactory.getInstance(rundata);
                  DynamicURI duri =
                      link
                          .getPaneByName(SKIN_UPDATE_PANE)
                          .addPathInfo(
                              SecurityConstants.PARAM_MODE,
                              SecurityConstants.PARAM_MODE_UPDATE)
                          .addPathInfo(
                              SecurityConstants.PARAM_MSGID,
                              SecurityConstants.MID_INVALID_ENTITY_NAME);
  
                  JetspeedLinkFactory.putInstance(link);
                  rundata.setRedirectURI(duri.toString());
  
                  resetForm(rundata);
  
                  clearUserData(rundata);
              }
              else
              {
                  SkinEntry skinEntry =
                      (SkinEntry) Registry.getEntry(Registry.SKIN, skinName);
  
                  skinEntry.getParameterMap().clear();
  
                  addParameters(rundata, skinEntry);
              }
          }
          catch (Exception e)
          {
              JetspeedLink link = JetspeedLinkFactory.getInstance(rundata);
              DynamicURI duri =
                  link
                      .getPaneByName(SKIN_UPDATE_PANE)
                      .addPathInfo(
                          SecurityConstants.PARAM_MODE,
                          SecurityConstants.PARAM_MODE_UPDATE)
                      .addPathInfo(
                          SecurityConstants.PARAM_MSGID,
                          SecurityConstants.MID_UPDATE_FAILED);
              JetspeedLinkFactory.putInstance(link);
              rundata.setRedirectURI(duri.toString());
  
              resetForm(rundata);
          }
      }
  
      /**
       * Delete a skin entry from the registry
       * @param rundata The turbine rundata context for this request.
       * @param context The velocity context for this request.
       * @throws Exception
       */
      public void doDelete(RunData rundata, Context context) throws Exception
      {
          try
          {
              String skinName = rundata.getParameters().getString("skinname");
  
              if (skinName == null || skinName.length() == 0)
              {
                  JetspeedLink link = JetspeedLinkFactory.getInstance(rundata);
                  DynamicURI duri =
                      link
                          .getPaneByName(SKIN_UPDATE_PANE)
                          .addPathInfo(
                              SecurityConstants.PARAM_MODE,
                              SecurityConstants.PARAM_MODE_DELETE)
                          .addPathInfo(
                              SecurityConstants.PARAM_MSGID,
                              SecurityConstants.MID_INVALID_ENTITY_NAME);
                  JetspeedLinkFactory.putInstance(link);
                  rundata.setRedirectURI(duri.toString());
  
              }
              else
              {
                  Registry.removeEntry(Registry.SKIN, skinName);
  
                  clearUserData(rundata);
              }
          }
          catch (Exception e)
          {
              JetspeedLink link = JetspeedLinkFactory.getInstance(rundata);
              DynamicURI duri =
                  link
                      .getPaneByName(SKIN_UPDATE_PANE)
                      .addPathInfo(
                          SecurityConstants.PARAM_MODE,
                          SecurityConstants.PARAM_MODE_DELETE)
                      .addPathInfo(
                          SecurityConstants.PARAM_MSGID,
                          SecurityConstants.MID_DELETE_FAILED);
              JetspeedLinkFactory.putInstance(link);
              rundata.setRedirectURI(duri.toString());
          }
      }
  
      public void doCancel(RunData rundata, Context context) throws Exception
      {
          clearUserData(rundata);
      }
  
      /**
       * Populates the user's temp storage with form data
       * @param rundata The turbine rundata context for this request.
       */
      private void resetForm(RunData rundata)
      {
          Object[] keys = rundata.getParameters().getKeys();
          if (keys != null)
          {
              for (int i = 0; i < keys.length; i++)
              {
                  String key = (String) keys[i];
  
                  if (key.startsWith(PARAMETER))
                  {
                      String parameterValue =
                          rundata.getParameters().getString(key);
  
                      if (parameterValue != null && parameterValue.length() > 0)
                      {
                          rundata.getUser().setTemp(key, parameterValue);
                      }
                  }
              }
          }
  
          String skinName = rundata.getParameters().getString("skinname");
          rundata.getUser().setTemp("skinname", skinName);
      }
  
      /**
       * Adds parameters to a skin entry
       * @param rundata The turbine rundata context for this request.
       * @param skinEntry
       */
      private void addParameters(RunData rundata, SkinEntry skinEntry)
      {
          Object[] keys = rundata.getParameters().getKeys();
          if (keys != null)
          {
              for (int i = 0; i < keys.length; i++)
              {
                  String key = (String) keys[i];
  
                  if (key.startsWith(PARAMETER))
                  {
                      String parameterValue =
                          rundata.getParameters().getString(key);
  
                      if (parameterValue != null && parameterValue.length() > 0)
                      {
                          String parameterName =
                              key.substring(PARAMETER.length());
                          skinEntry.addParameter(parameterName, parameterValue);
                      }
                  }
              }
          }
      }
  
      private void clearUserData(RunData rundata)
      {
          try
          {
              Map tempStorage = rundata.getUser().getTempStorage();
              tempStorage.remove("skinname");
  
              if (tempStorage != null)
              {
                  Iterator keyIter = tempStorage.keySet().iterator();
                  while (keyIter.hasNext())
                  {
                      Object keyObj = keyIter.next();
                      if (keyObj instanceof String)
                      {
                          String key = (String) keyObj;
                          if (key.startsWith(PARAMETER))
                          {
                              keyIter.remove();
                          }
                      }
                  }
              }
          }
          catch (Exception e)
          {
              if (Log.getLogger().isDebugEnabled())
              {
                  Log.debug("SkinUpdateAction: Failed to clear user data");
              }
          }
      }
  }
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-dev-help@jakarta.apache.org