All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.enterprise.admin.remote.writer.MultipartProprietaryWriter Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2013, 2018 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 com.sun.enterprise.admin.remote.writer;

import com.sun.enterprise.admin.remote.ParamsWithPayload;
import com.sun.enterprise.util.StringUtils;

import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.net.HttpURLConnection;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;

import org.glassfish.api.ActionReport;
import org.glassfish.api.admin.ParameterMap;
import org.glassfish.api.admin.Payload;
import org.glassfish.api.admin.Payload.Part;

/**
 *
 * @author martinmares
 */
public class MultipartProprietaryWriter implements ProprietaryWriter {

    public static interface ContentTypeWriter {
        void writeContentType(String firstPart, String secondPart, String boundary);
    }

    protected static final String BOUNDARY_BASE = "admfrmwrk_payload_";
    protected static final AtomicInteger boundary_int = new AtomicInteger();
    protected static final String EOL = "\r\n";
    protected static final String BOUNDERY_DELIMIT = "--";

    @Override
    public boolean isWriteable(final Object entity) {
        if (entity instanceof ParamsWithPayload) {
            ParamsWithPayload pwp = (ParamsWithPayload) entity;
            return pwp.getPayloadOutbound() != null && pwp.getPayloadOutbound().size() > 0;
        } else if (entity instanceof Payload.Outbound) {
            return ((Payload.Outbound) entity).size() > 0;
        }
        return false;
    }

    @Override
    public void writeTo(final Object entity, final HttpURLConnection urlConnection) throws IOException {
        Payload.Outbound payload = null;
        ParameterMap parameters = null;
        ActionReport ar = null;
        if (entity instanceof ParamsWithPayload) {
            ParamsWithPayload pwp = (ParamsWithPayload) entity;
            payload = pwp.getPayloadOutbound();
            parameters = pwp.getParameters();
            ar = pwp.getActionReport();
        } else if (entity instanceof Payload.Outbound) {
            payload = (Payload.Outbound) entity;
        }
        writeTo(payload, parameters, ar, new OutputStream() {
            private OutputStream delegate;

            private OutputStream getDelegate() throws IOException {
                if (delegate == null) {
                    delegate = urlConnection.getOutputStream();
                }
                return delegate;
            }

            @Override
            public void write(int b) throws IOException {
                getDelegate().write(b);
            }

            @Override
            public void write(byte b[]) throws IOException {
                getDelegate().write(b);
            }

            @Override
            public void write(byte b[], int off, int len) throws IOException {
                getDelegate().write(b, off, len);
            }

            @Override
            public void flush() throws IOException {
                getDelegate().flush();
            }

            @Override
            public void close() throws IOException {
                getDelegate().close();
            }
        }, new ContentTypeWriter() {
            @Override
            public void writeContentType(String firstPart, String secondPart, String boundary) {
                StringBuilder ct = new StringBuilder();
                ct.append(firstPart).append('/').append(secondPart);
                if (boundary != null) {
                    ct.append("; boundary=").append(boundary);
                }
                urlConnection.addRequestProperty("Content-type", ct.toString());
                urlConnection.setRequestProperty("MIME-Version", "1.0");
            }
        });
    }

    protected void writeParam(final Writer writer, final OutputStream underOS, final String boundary, final String key, final String value)
            throws IOException {
        //        //Inrtroducing boundery
        //        if (isFirst) {
        //            isFirst = false;
        //        } else {
        //            writer.write(EOL);
        //        }
        multiWrite(writer, BOUNDERY_DELIMIT, boundary, EOL);
        //Headers
        //Headers - Disposition
        multiWrite(writer, "Content-Disposition: form-data; name=\"", key, "\"", EOL);
        //Data
        multiWrite(writer, EOL, value, EOL);
        writer.flush();
    }

    protected void writePayloadPart(final Writer writer, final OutputStream underOS, final String boundary, final Part part)
            throws IOException {
        //        //Inrtroducing boundery
        //        if (isFirst) {
        //            isFirst = false;
        //        } else {
        //            writer.write(EOL);
        //        }
        multiWrite(writer, BOUNDERY_DELIMIT, boundary, EOL);
        //Headers
        multiWrite(writer, "Content-Disposition: file; name=\"", part.getName(), "\"; filename=\"", part.getName(), "\"", EOL);
        if (StringUtils.ok(part.getContentType())) {
            multiWrite(writer, "Content-Type: ", part.getContentType(), EOL);
        }
        for (Map.Entry entry : part.getProperties().entrySet()) {
            String key = (String) entry.getKey();
            String lKey = key.toLowerCase(Locale.ENGLISH);
            //todo: JDK7: convert to String switch-case
            if (!"content-disposition".equals(lKey) && !"content-type".equals(lKey)) {
                if (!"content-transfer-encoding".equals(lKey)) {
                    key = "Content-" + key;
                }
                multiWrite(writer, key, ": ", String.valueOf(entry.getValue()), EOL);
            }
        }
        //Data
        writer.write(EOL);
        writer.flush();
        part.copy(underOS);
        underOS.flush();
        writer.write(EOL);
    }

    protected void writeActionReport(final Writer writer, final OutputStream underOS, final String boundary, final ActionReport ar)
            throws IOException {
        throw new UnsupportedOperationException();
    }

    public void writeTo(final Payload.Outbound payload, final ParameterMap parameters, final ActionReport ar, final OutputStream os,
            final ContentTypeWriter contentTypeWriter) throws IOException {
        final String boundary = getBoundary();
        //Content-Type
        String ctType = "form-data";
        if (parameters == null || parameters.size() == 0) {
            ctType = "mixed";
        }
        contentTypeWriter.writeContentType("multipart", ctType, boundary);
        // Write content
        final Writer writer = new BufferedWriter(new OutputStreamWriter(os, "UTF-8"));
        //        boolean isFirst = true;
        //Parameters
        if (parameters != null) {
            for (Map.Entry> entry : parameters.entrySet()) {
                for (String value : entry.getValue()) {
                    writeParam(writer, os, boundary, entry.getKey(), value);
                }
            }
        }
        //ActionReport
        if (ar != null) {
            writeActionReport(writer, os, boundary, ar);
        }
        //Payload
        if (payload != null) {
            Iterator parts = payload.parts();
            while (parts.hasNext()) {
                writePayloadPart(writer, os, boundary, parts.next());
            }
        }
        // Write the final boundary string
        multiWrite(writer, BOUNDERY_DELIMIT, boundary, BOUNDERY_DELIMIT, EOL);
        writer.flush();
    }

    private String getBoundary() {
        return BOUNDARY_BASE + boundary_int.incrementAndGet();
    }

    protected static void multiWrite(Writer writer, String... args) throws IOException {
        for (String arg : args) {
            writer.write(arg);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy