/branches/features/aipo6_5110/aipo/jetspeed/src/main/java/org/apache/jetspeed/modules/actions/portlets/SkinUpdateAction.java

http://aipo.googlecode.com/ · Java · 197 lines · 125 code · 21 blank · 51 comment · 24 complexity · beac24a01c895739f016e09b9c8ab1c4 MD5 · raw file

  1. /*
  2. * Copyright 2000-2004 The Apache Software Foundation.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.apache.jetspeed.modules.actions.portlets;
  17. import java.util.Iterator;
  18. import java.util.Map;
  19. import org.apache.jetspeed.modules.actions.portlets.security.SecurityConstants;
  20. import org.apache.jetspeed.om.registry.RegistryEntry;
  21. import org.apache.jetspeed.om.registry.SkinEntry;
  22. import org.apache.jetspeed.portal.portlets.VelocityPortlet;
  23. import org.apache.jetspeed.services.logging.JetspeedLogFactoryService;
  24. import org.apache.jetspeed.services.logging.JetspeedLogger;
  25. import org.apache.jetspeed.services.Registry;
  26. import org.apache.turbine.util.RunData;
  27. import org.apache.velocity.context.Context;
  28. /**
  29. * This action enables to update the skin entries
  30. *
  31. * @author <a href="mailto:caius1440@hotmail.com">Jeremy Ford</a>
  32. * @version $Id: SkinUpdateAction.java,v 1.6 2004/02/23 02:56:58 jford Exp $
  33. */
  34. public class SkinUpdateAction extends RegistryUpdateAction
  35. {
  36. private static final String PARAMETER = "parameter.";
  37. private static final String SKIN_UPDATE_PANE = "SkinForm";
  38. /**
  39. * Static initialization of the logger for this class
  40. */
  41. private static final JetspeedLogger logger = JetspeedLogFactoryService.getLogger(SkinUpdateAction.class.getName());
  42. public SkinUpdateAction()
  43. {
  44. registryEntryName = "skinname";
  45. registry = Registry.SKIN;
  46. pane = SKIN_UPDATE_PANE;
  47. }
  48. /**
  49. * Subclasses must override this method to provide default behavior
  50. * for the portlet action
  51. */
  52. /**
  53. * Build the normal state content for this portlet.
  54. *
  55. * @param portlet The velocity-based portlet that is being built.
  56. * @param context The velocity context for this request.
  57. * @param rundata The turbine rundata context for this request.
  58. */
  59. protected void buildNormalContext(
  60. VelocityPortlet portlet,
  61. Context context,
  62. RunData rundata)
  63. throws Exception
  64. {
  65. super.buildNormalContext(portlet, context, rundata);
  66. String mode =
  67. rundata.getParameters().getString(SecurityConstants.PARAM_MODE);
  68. if (mode != null
  69. && (mode.equals(SecurityConstants.PARAM_MODE_DELETE)
  70. || mode.equals(SecurityConstants.PARAM_MODE_UPDATE)))
  71. {
  72. String skinName = rundata.getParameters().getString("skinname");
  73. SkinEntry skinEntry =
  74. (SkinEntry) Registry.getEntry(Registry.SKIN, skinName);
  75. context.put("entry", skinEntry);
  76. }
  77. }
  78. /**
  79. * @see org.apache.jetspeed.modules.actions.portlets.RegistryUpdateAction#updateRegistryEntry(org.apache.turbine.util.RunData, org.apache.jetspeed.om.registry.RegistryEntry)
  80. */
  81. protected void updateRegistryEntry(
  82. RunData rundata,
  83. RegistryEntry registryEntry) throws Exception
  84. {
  85. super.updateRegistryEntry(rundata, registryEntry);
  86. updateParameters(rundata, (SkinEntry) registryEntry);
  87. }
  88. /**
  89. * Populates the user's temp storage with form data
  90. * @param rundata The turbine rundata context for this request.
  91. */
  92. protected void resetForm(RunData rundata)
  93. {
  94. super.resetForm(rundata);
  95. Object[] keys = rundata.getParameters().getKeys();
  96. if (keys != null)
  97. {
  98. for (int i = 0; i < keys.length; i++)
  99. {
  100. String key = (String) keys[i];
  101. if (key.startsWith(PARAMETER))
  102. {
  103. String parameterValue =
  104. rundata.getParameters().getString(key);
  105. if (parameterValue != null && parameterValue.length() > 0)
  106. {
  107. rundata.getUser().setTemp(key, parameterValue);
  108. }
  109. }
  110. }
  111. }
  112. }
  113. /**
  114. * Adds parameters to a skin entry
  115. * @param rundata The turbine rundata context for this request.
  116. * @param skinEntry
  117. */
  118. private void updateParameters(RunData rundata, SkinEntry skinEntry)
  119. {
  120. Object[] keys = rundata.getParameters().getKeys();
  121. if (keys != null)
  122. {
  123. for (int i = 0; i < keys.length; i++)
  124. {
  125. String key = (String) keys[i];
  126. if (key.startsWith(PARAMETER))
  127. {
  128. String parameterValue =
  129. rundata.getParameters().getString(key);
  130. if (parameterValue != null && parameterValue.length() > 0)
  131. {
  132. String parameterName =
  133. key.substring(PARAMETER.length());
  134. skinEntry.removeParameter(parameterName);
  135. skinEntry.addParameter(parameterName, parameterValue);
  136. }
  137. }
  138. }
  139. }
  140. }
  141. /**
  142. * Clears the temporary storage of any data that was used
  143. * @param rundata
  144. */
  145. protected void clearUserData(RunData rundata)
  146. {
  147. try
  148. {
  149. super.clearUserData(rundata);
  150. Map tempStorage = rundata.getUser().getTempStorage();
  151. if (tempStorage != null)
  152. {
  153. Iterator keyIter = tempStorage.keySet().iterator();
  154. while (keyIter.hasNext())
  155. {
  156. Object keyObj = keyIter.next();
  157. if (keyObj instanceof String)
  158. {
  159. String key = (String) keyObj;
  160. if (key.startsWith(PARAMETER))
  161. {
  162. keyIter.remove();
  163. }
  164. }
  165. }
  166. }
  167. }
  168. catch (Exception e)
  169. {
  170. if (logger.isDebugEnabled())
  171. {
  172. logger.debug("SkinUpdateAction: Failed to clear user data");
  173. }
  174. }
  175. }
  176. }