SingleEntityPartReader.java

/*
 * Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package org.glassfish.jersey.media.multipart.internal;

import jakarta.inject.Inject;
import jakarta.ws.rs.WebApplicationException;
import jakarta.ws.rs.core.Context;
import jakarta.ws.rs.core.EntityPart;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.ext.MessageBodyReader;
import jakarta.ws.rs.ext.Providers;
import org.glassfish.jersey.media.multipart.BodyPart;
import org.glassfish.jersey.media.multipart.FormDataBodyPart;
import org.glassfish.jersey.media.multipart.JerseyEntityPartBuilderProvider;
import org.glassfish.jersey.media.multipart.MultiPart;

import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.LinkedList;
import java.util.List;

public class SingleEntityPartReader implements MessageBodyReader<EntityPart> {

    private MultiPartReaderClientSide multiPartReaderClientSide;

    private final Providers providers;

    @Inject
    public SingleEntityPartReader(@Context Providers providers) {
        this.providers = providers;
    }

    @Override
    public boolean isReadable(Class<?> type, Type generic, Annotation[] annotations, MediaType mediaType) {
        return EntityPart.class.isAssignableFrom(type);
    }

    @Override
    public EntityPart readFrom(Class<EntityPart> type, Type genericType, Annotation[] annotations,
                                     MediaType mediaType, MultivaluedMap<String, String> httpHeaders,
                                     InputStream entityStream) throws IOException, WebApplicationException {

        if (multiPartReaderClientSide == null) {
            multiPartReaderClientSide = (MultiPartReaderClientSide) providers.getMessageBodyReader(
                    MultiPart.class, MultiPart.class, new Annotation[0], MediaType.MULTIPART_FORM_DATA_TYPE);
        }

        final MultiPart multiPart = multiPartReaderClientSide.readFrom(
                MultiPart.class, MultiPart.class, annotations, mediaType, httpHeaders, entityStream);
        final List<BodyPart> bodyParts = multiPart.getBodyParts();
        final List<EntityPart> entityParts = new LinkedList<>();

        for (BodyPart bp : bodyParts) {
            if (FormDataBodyPart.class.isInstance(bp)) {
                entityParts.add((EntityPart) bp);
            } else {
                final EntityPart ep = new JerseyEntityPartBuilderProvider().withName("")
                        .mediaType(bp.getMediaType()).content(bp.getEntity()).headers(bp.getHeaders()).build();
                entityParts.add(ep);
            }
            // consume all bodyParts
        }

        return entityParts.get(0);
    }
}