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

http://aipo.googlecode.com/ · Java · 125 lines · 73 code · 13 blank · 39 comment · 6 complexity · 03e7038a7f85dad6d745f3ebbae7ad37 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 org.apache.jetspeed.modules.actions.portlets.security.SecurityConstants;
  18. import org.apache.jetspeed.om.registry.MediaTypeEntry;
  19. import org.apache.jetspeed.om.registry.RegistryEntry;
  20. import org.apache.jetspeed.portal.portlets.VelocityPortlet;
  21. import org.apache.jetspeed.services.Registry;
  22. import org.apache.turbine.util.RunData;
  23. import org.apache.velocity.context.Context;
  24. /**
  25. * This action enables to update the media entries
  26. *
  27. * @author <a href="mailto:caius1440@hotmail.com">Jeremy Ford</a>
  28. * @version $Id: MediaUpdateAction.java,v 1.2 2004/02/23 02:56:58 jford Exp $
  29. */
  30. public class MediaUpdateAction extends RegistryUpdateAction
  31. {
  32. private static final String MEDIA_UPDATE_PANE = "MediaForm";
  33. public MediaUpdateAction()
  34. {
  35. registryEntryName = "media_type_name";
  36. registry = Registry.MEDIA_TYPE;
  37. pane = MEDIA_UPDATE_PANE;
  38. }
  39. /**
  40. * @see org.apache.jetspeed.modules.actions.portlets.VelocityPortletAction#buildNormalContext(org.apache.jetspeed.portal.portlets.VelocityPortlet, org.apache.velocity.context.Context, org.apache.turbine.util.RunData)
  41. */
  42. protected void buildNormalContext(
  43. VelocityPortlet portlet,
  44. Context context,
  45. RunData rundata)
  46. throws Exception
  47. {
  48. super.buildNormalContext(portlet, context, rundata);
  49. String mode =
  50. rundata.getParameters().getString(SecurityConstants.PARAM_MODE);
  51. if (mode != null
  52. && (mode.equals(SecurityConstants.PARAM_MODE_DELETE)
  53. || mode.equals(SecurityConstants.PARAM_MODE_UPDATE)))
  54. {
  55. String mediaTypeName =
  56. rundata.getParameters().getString(registryEntryName);
  57. MediaTypeEntry mediaEntry =
  58. (MediaTypeEntry) Registry.getEntry(
  59. registry,mediaTypeName);
  60. context.put("entry", mediaEntry);
  61. }
  62. }
  63. /**
  64. * @see org.apache.jetspeed.modules.actions.portlets.RegistryUpdateAction#updateRegistryEntry(org.apache.turbine.util.RunData, org.apache.jetspeed.om.registry.RegistryEntry)
  65. */
  66. protected void updateRegistryEntry(RunData rundata, RegistryEntry registryEntry) throws Exception
  67. {
  68. super.updateRegistryEntry(rundata, registryEntry);
  69. updateMediaTypeEntry(rundata, (MediaTypeEntry) registryEntry);
  70. }
  71. /**
  72. * @param rundata
  73. * @param mediaTypeName
  74. */
  75. protected void updateMediaTypeEntry(
  76. RunData rundata,
  77. MediaTypeEntry mediaTypeEntry)
  78. {
  79. String charSet = rundata.getParameters().getString("charset");
  80. String mimeType = rundata.getParameters().getString("mime_type");
  81. if(hasChanged(mediaTypeEntry.getCharacterSet(), charSet))
  82. {
  83. mediaTypeEntry.setCharacterSet(charSet);
  84. }
  85. if(hasChanged(mediaTypeEntry.getMimeType(), mimeType))
  86. {
  87. mediaTypeEntry.setMimeType(mimeType);
  88. }
  89. }
  90. /**
  91. * Populates the user's temp storage with form data
  92. * @param rundata The turbine rundata context for this request.
  93. */
  94. protected void resetForm(RunData rundata)
  95. {
  96. super.resetForm(rundata);
  97. String charSet = rundata.getParameters().getString("charset");
  98. String mimeType = rundata.getParameters().getString("mime_type");
  99. rundata.getUser().setTemp("charset", charSet);
  100. rundata.getUser().setTemp("mime_type", mimeType);
  101. }
  102. /**
  103. * Clears the temporary storage of any data that was used
  104. * @param rundata The turbine rundata context for this request.
  105. */
  106. protected void clearUserData(RunData rundata)
  107. {
  108. super.clearUserData(rundata);
  109. rundata.getUser().removeTemp("charset");
  110. rundata.getUser().removeTemp("mime_type");
  111. }
  112. }