com.sun.jersey.multipart.impl.MultiPartReaderClientSide Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2010-2015 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 com.sun.jersey.multipart.impl;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.ws.rs.Consumes;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.HttpHeaders;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.ext.MessageBodyReader;
import javax.ws.rs.ext.Provider;
import javax.ws.rs.ext.Providers;
import com.sun.jersey.core.header.MediaTypes;
import com.sun.jersey.multipart.BodyPart;
import com.sun.jersey.multipart.BodyPartEntity;
import com.sun.jersey.multipart.FormDataBodyPart;
import com.sun.jersey.multipart.FormDataMultiPart;
import com.sun.jersey.multipart.MultiPart;
import com.sun.jersey.multipart.MultiPartConfig;
import com.sun.jersey.spi.inject.ClientSide;
import com.sun.jersey.spi.inject.ConstrainedTo;
import org.jvnet.mimepull.Header;
import org.jvnet.mimepull.MIMEConfig;
import org.jvnet.mimepull.MIMEMessage;
import org.jvnet.mimepull.MIMEParsingException;
import org.jvnet.mimepull.MIMEPart;
/**
* {@link Provider} {@link MessageBodyReader} implementation for
* {@link MultiPart} entities.
*/
@ConstrainedTo(ClientSide.class)
@Consumes("multipart/*")
public class MultiPartReaderClientSide implements MessageBodyReader {
private static final Logger LOGGER = Logger.getLogger(MultiPartReaderClientSide.class.getName());
/**
* Injectable helper to look up appropriate {@link Provider}s
* for our body parts.
*/
private final Providers providers;
private final MIMEConfig mimeConfig;
/**
* Accept constructor injection of the configuration parameters for this
* application.
*/
public MultiPartReaderClientSide(@Context Providers providers, @Context MultiPartConfig config) {
this.providers = providers;
if (config == null) {
throw new IllegalArgumentException("The MultiPartConfig instance we expected is not present. Have you registered the MultiPartConfigProvider class?");
}
this.mimeConfig = createMimeConfig(config);
}
private MIMEConfig createMimeConfig(final MultiPartConfig config) {
final MIMEConfig mimeConfig = new MIMEConfig();
// Set values defined by user.
mimeConfig.setMemoryThreshold(config.getBufferThreshold());
if (config.getBufferThreshold() != -1) { // -1 means "is only memory"
// Validate - this checks whether it's possible to create temp files in currently set temp directory.
try {
File.createTempFile("MIME", null).delete();
} catch (final IOException ioe) {
LOGGER.log(Level.WARNING, "Cannot create temporary files. Multipart attachments will be limited to " +
config.getBufferThreshold() + " bytes.", ioe);
}
}
return mimeConfig;
}
public boolean isReadable(Class> type, Type genericType,
Annotation[] annotations, MediaType mediaType) {
return MultiPart.class.isAssignableFrom(type);
}
/**
* Read the entire list of body parts from the Input stream, using the
* appropriate provider implementation to deserialize each body part's entity.
*
* @param type The class of the object to be read (i.e. {@link MultiPart}.class)
* @param genericType The type of object to be written
* @param annotations Annotations on the resource method that returned this object
* @param mediaType Media type (multipart/*
) of this entity
* @param headers Mutable map of HTTP headers for the entire response
* @param stream Output stream to which the entity should be written
*
* @throws java.io.IOException if an I/O error occurs
* @throws javax.ws.rs.WebApplicationException if an HTTP error response
* needs to be produced (only effective if the response is not committed yet)
* @throws javax.ws.rs.WebApplicationException if the Content-Disposition
* header of a multipart/form-data
body part cannot be parsed
*/
public MultiPart readFrom(Class type, Type genericType,
Annotation[] annotations, MediaType mediaType,
MultivaluedMap headers,
InputStream stream) throws IOException, WebApplicationException {
try {
return readMultiPart(type, genericType, annotations, mediaType, headers, stream);
} catch (final MIMEParsingException mpe) {
if (mpe.getCause() instanceof IOException) {
throw (IOException) mpe.getCause();
} else {
throw new WebApplicationException(mpe, Status.BAD_REQUEST);
}
}
}
protected MultiPart readMultiPart(Class type, Type genericType,
Annotation[] annotations, MediaType mediaType,
MultivaluedMap headers,
InputStream stream) throws IOException, MIMEParsingException {
mediaType = unquoteMediaTypeParameters(mediaType, "boundary");
MIMEMessage mm = new MIMEMessage(stream, mediaType.getParameters().get("boundary"), mimeConfig);
boolean formData = false;
MultiPart multiPart;
if (MediaTypes.typeEquals(mediaType, MediaType.MULTIPART_FORM_DATA_TYPE)) {
multiPart = new FormDataMultiPart();
formData = true;
} else {
multiPart = new MultiPart();
}
multiPart.setProviders(providers);
MultivaluedMap mpHeaders = multiPart.getHeaders();
for (Map.Entry> entry : headers.entrySet()) {
List values = entry.getValue();
for (String value : values) {
mpHeaders.add(entry.getKey(), value);
}
}
boolean fileNameFix;
if (!formData) {
multiPart.setMediaType(mediaType);
fileNameFix = false;
} else {
// see if the User-Agent header corresponds to some version of MS Internet Explorer
// if so, need to set fileNameFix to true to handle issue http://java.net/jira/browse/JERSEY-759
String userAgent = headers.getFirst(HttpHeaders.USER_AGENT);
fileNameFix = userAgent != null && userAgent.contains(" MSIE ");
}
for (MIMEPart mp : mm.getAttachments()) {
BodyPart bodyPart = formData ? new FormDataBodyPart(fileNameFix) : new BodyPart();
// Configure providers
bodyPart.setProviders(providers);
// Copy headers
for (Header h : mp.getAllHeaders()) {
bodyPart.getHeaders().add(h.getName(), h.getValue());
}
try {
String contentType = bodyPart.getHeaders().getFirst("Content-Type");
if (contentType != null)
bodyPart.setMediaType(MediaType.valueOf(contentType));
bodyPart.getContentDisposition();
} catch (IllegalArgumentException ex) {
throw new WebApplicationException(ex, Status.BAD_REQUEST);
}
// Copy data into a BodyPartEntity structure
bodyPart.setEntity(new BodyPartEntity(mp));
// Add this BodyPart to our MultiPart
multiPart.getBodyParts().add(bodyPart);
}
return multiPart;
}
protected static MediaType unquoteMediaTypeParameters(final MediaType mediaType, final String... parameters) {
if (parameters == null || parameters.length == 0) {
return mediaType;
}
final HashMap unquotedParams = new HashMap(mediaType.getParameters());
for (final String parameterName : parameters) {
String parameterValue = mediaType.getParameters().get(parameterName);
if (parameterValue.startsWith("\"")) {
parameterValue = parameterValue.substring(1, parameterValue.length() - 1);
unquotedParams.put(parameterName, parameterValue);
}
}
return new MediaType(mediaType.getType(), mediaType.getSubtype(), unquotedParams);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy