org.glassfish.jersey.media.multipart.FormDataBodyPart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jersey-all Show documentation
Show all versions of jersey-all Show documentation
jersey-all is a rebundled verison of Jersey as one OSGi bundle.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* http://glassfish.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package org.glassfish.jersey.media.multipart;
import java.text.ParseException;
import javax.ws.rs.ProcessingException;
import javax.ws.rs.core.MediaType;
import org.glassfish.jersey.media.multipart.internal.LocalizationMessages;
import org.glassfish.jersey.message.internal.MediaTypes;
/**
* Subclass of {@link BodyPart} with specialized support for media type
* {@code multipart/form-data}. See
* RFC 2388
* for the formal definition of this media type.
*
* For a server side application wishing to process an incoming
* {@code multipart/form-data} message, the following features
* are provided:
*
* - Property accessor to retrieve the control name.
* - Property accessor to retrieve the field value for a simple
* String field.
* - Convenience accessor to retrieve the field value after conversion
* through an appropriate {@code MessageBodyReader}.
*
*
* For a client side application wishing to construct an outgoing
* {@code multipart/form-data} message, the following features
* are provided:
*
* - Convenience constructors for named fields with either
* simple string values, or arbitrary entities and media types.
* - Property accessor to set the control name.
* - Property accessor to set the field value for a simple
* String field.
* - Convenience accessor to set the media type and value of a
* "file" field.
*
*
* @author Craig McClanahan
* @author Imran M Yousuf (imran at smartitengineering.com)
* @author Paul Sandoz (paul.sandoz at oracle.com)
* @author Michal Gajdos (michal.gajdos at oracle.com)
*/
public class FormDataBodyPart extends BodyPart {
private final boolean fileNameFix;
/**
* Instantiates an unnamed new {@link FormDataBodyPart} with a
* {@code mediaType} of {@code text/plain}.
*/
public FormDataBodyPart() {
this(false);
}
/**
* Instantiates an unnamed new {@link FormDataBodyPart} with {@code mediaType} of {@code text/plain}
* and setting the flag for applying the fix for erroneous file name value if content disposition header of
* messages coming from MS Internet Explorer (see JERSEY-759).
*
* @param fileNameFix If set to {@code true}, header parser will not treat backslash as an escape character when retrieving
* the value of {@code filename} parameter of {@code Content-Disposition} header.
*/
public FormDataBodyPart(boolean fileNameFix) {
super();
this.fileNameFix = fileNameFix;
}
/**
* Instantiates an unnamed {@link FormDataBodyPart} with the
* specified characteristics.
*
* @param mediaType the {@link MediaType} for this body part.
*/
public FormDataBodyPart(MediaType mediaType) {
super(mediaType);
this.fileNameFix = false;
}
/**
* Instantiates an unnamed {@link FormDataBodyPart} with the
* specified characteristics.
*
* @param entity the entity for this body part.
* @param mediaType the {@link MediaType} for this body part.
*/
public FormDataBodyPart(Object entity, MediaType mediaType) {
super(entity, mediaType);
this.fileNameFix = false;
}
/**
* Instantiates a named {@link FormDataBodyPart} with a
* media type of {@code text/plain} and String value.
*
* @param name the control name for this body part.
* @param value the value for this body part.
*/
public FormDataBodyPart(String name, String value) {
super(value, MediaType.TEXT_PLAIN_TYPE);
this.fileNameFix = false;
setName(name);
}
/**
* Instantiates a named {@link FormDataBodyPart} with the
* specified characteristics.
*
* @param name the control name for this body part.
* @param entity the entity for this body part.
* @param mediaType the {@link MediaType} for this body part.
*/
public FormDataBodyPart(String name, Object entity, MediaType mediaType) {
super(entity, mediaType);
this.fileNameFix = false;
setName(name);
}
/**
* Instantiates a named {@link FormDataBodyPart} with the
* specified characteristics.
*
* @param formDataContentDisposition the content disposition header for this body part.
* @param value the value for this body part.
*/
public FormDataBodyPart(FormDataContentDisposition formDataContentDisposition, String value) {
super(value, MediaType.TEXT_PLAIN_TYPE);
this.fileNameFix = false;
setFormDataContentDisposition(formDataContentDisposition);
}
/**
* Instantiates a named {@link FormDataBodyPart} with the
* specified characteristics.
*
* @param formDataContentDisposition the content disposition header for this body part.
* @param entity the entity for this body part.
* @param mediaType the {@link MediaType} for this body part.
*/
public FormDataBodyPart(FormDataContentDisposition formDataContentDisposition, Object entity, MediaType mediaType) {
super(entity, mediaType);
this.fileNameFix = false;
setFormDataContentDisposition(formDataContentDisposition);
}
/**
* Gets the form data content disposition.
*
* @return the form data content disposition.
*/
public FormDataContentDisposition getFormDataContentDisposition() {
return (FormDataContentDisposition) getContentDisposition();
}
/**
* Sets the form data content disposition.
*
* @param formDataContentDisposition the form data content disposition.
*/
public void setFormDataContentDisposition(FormDataContentDisposition formDataContentDisposition) {
super.setContentDisposition(formDataContentDisposition);
}
/**
* Overrides the behaviour on {@link BodyPart} to ensure that
* only instances of {@link FormDataContentDisposition} can be obtained.
*
* @return the content disposition.
* @throws IllegalArgumentException if the content disposition header cannot be parsed.
*/
@Override
public ContentDisposition getContentDisposition() {
if (contentDisposition == null) {
String scd = getHeaders().getFirst("Content-Disposition");
if (scd != null) {
try {
contentDisposition = new FormDataContentDisposition(scd, fileNameFix);
} catch (ParseException ex) {
throw new IllegalArgumentException(LocalizationMessages.ERROR_PARSING_CONTENT_DISPOSITION(scd), ex);
}
}
}
return contentDisposition;
}
/**
* Overrides the behaviour on {@link BodyPart} to ensure that
* only instances of {@link FormDataContentDisposition} can be set.
*
* @param contentDisposition the content disposition which must be an instance of {@link FormDataContentDisposition}.
* @throws IllegalArgumentException if the content disposition is not an instance of {@link FormDataContentDisposition}.
*/
@Override
public void setContentDisposition(ContentDisposition contentDisposition) {
if (contentDisposition instanceof FormDataContentDisposition) {
super.setContentDisposition(contentDisposition);
} else {
throw new IllegalArgumentException();
}
}
/**
* Gets the control name.
*
* @return the control name.
*/
public String getName() {
FormDataContentDisposition formDataContentDisposition = getFormDataContentDisposition();
if (formDataContentDisposition == null) {
return null;
}
return formDataContentDisposition.getName();
}
/**
* Sets the control name.
*
* @param name the control name.
*/
public void setName(String name) {
if (name == null) {
throw new IllegalArgumentException(LocalizationMessages.CONTROL_NAME_CANNOT_BE_NULL());
}
if (getFormDataContentDisposition() == null) {
FormDataContentDisposition contentDisposition;
contentDisposition = FormDataContentDisposition.name(name).build();
super.setContentDisposition(contentDisposition);
} else {
FormDataContentDisposition formDataContentDisposition = FormDataContentDisposition.name(name).fileName
(contentDisposition.getFileName()).creationDate(contentDisposition.getCreationDate()).modificationDate
(contentDisposition.getModificationDate()).readDate(contentDisposition.getReadDate()).size
(contentDisposition.getSize()).build();
super.setContentDisposition(formDataContentDisposition);
}
}
/**
* Gets the field value for this body part. This should be called only on body parts representing simple field values.
*
* @return the simple field value.
* @throws ProcessingException if an IO error arises during reading the value.
* @throws IllegalStateException if called on a body part with a media type other than {@code text/plain}
*/
public String getValue() {
if (!MediaTypes.typeEqual(MediaType.TEXT_PLAIN_TYPE, getMediaType())) {
throw new IllegalStateException(LocalizationMessages.MEDIA_TYPE_NOT_TEXT_PLAIN());
}
if (getEntity() instanceof BodyPartEntity) {
return getValueAs(String.class);
} else {
return (String) getEntity();
}
}
/**
* Gets the field value after appropriate conversion to the requested type. This is useful only when the containing {@link
* FormDataMultiPart} instance has been received, which causes the {@code providers} property to have been set.
*
* @param the type of the field value.
* @param clazz Desired class into which the field value should be converted.
* @return the field value.
* @throws ProcessingException if an IO error arises during reading an entity.
* @throws IllegalArgumentException if no {@code MessageBodyReader} can be found to perform the requested conversion.
* @throws IllegalStateException if this method is called when the {@code providers} property has not been set or when
* the entity instance is not the unconverted content of the body part entity.
*/
public T getValueAs(Class clazz) {
return getEntityAs(clazz);
}
/**
* Sets the field value for this body part. This should be called
* only on body parts representing simple field values.
*
* @param value the field value.
* @throws IllegalStateException if called on a body part with a media type other than {@code text/plain}.
*/
public void setValue(String value) {
if (!MediaType.TEXT_PLAIN_TYPE.equals(getMediaType())) {
throw new IllegalStateException(LocalizationMessages.MEDIA_TYPE_NOT_TEXT_PLAIN());
}
setEntity(value);
}
/**
* Sets the field media type and value for this body part.
*
* @param mediaType the media type for this field value.
* @param value the field value as a Java object.
*/
public void setValue(MediaType mediaType, Object value) {
setMediaType(mediaType);
setEntity(value);
}
/**
* @return {@code true} if this body part represents a simple, string-based, field value, otherwise {@code false}.
*/
public boolean isSimple() {
return MediaType.TEXT_PLAIN_TYPE.equals(getMediaType());
}
}