io.undertow.servlet.spec.PartImpl Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.undertow.servlet.spec;
import java.io.BufferedInputStream;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import javax.servlet.MultipartConfigElement;
import javax.servlet.http.Part;
import io.undertow.server.handlers.form.FormData;
import io.undertow.servlet.UndertowServletMessages;
import io.undertow.util.FileUtils;
import io.undertow.util.HeaderValues;
import io.undertow.util.Headers;
import io.undertow.util.HttpString;
/**
* @author Stuart Douglas
*/
public class PartImpl implements Part {
private final String name;
private final FormData.FormValue formValue;
private final MultipartConfigElement config;
private final ServletContextImpl servletContext;
public PartImpl(final String name, final FormData.FormValue formValue, MultipartConfigElement config, ServletContextImpl servletContext) {
this.name = name;
this.formValue = formValue;
this.config = config;
this.servletContext = servletContext;
}
@Override
public InputStream getInputStream() throws IOException {
if (formValue.isFile()) {
return new BufferedInputStream(new FileInputStream(formValue.getFile()));
} else {
return new ByteArrayInputStream(formValue.getValue().getBytes());
}
}
@Override
public String getContentType() {
return formValue.getHeaders().getFirst(Headers.CONTENT_TYPE);
}
@Override
public String getName() {
return name;
}
@Override
public String getSubmittedFileName() {
return formValue.getFileName();
}
@Override
public long getSize() {
if (formValue.isFile()) {
return formValue.getFile().length();
} else {
return formValue.getValue().length();
}
}
@Override
public void write(final String fileName) throws IOException {
File target = new File(fileName);
if(!target.isAbsolute()) {
if(config.getLocation().isEmpty()) {
target = new File(servletContext.getDeployment().getDeploymentInfo().getTempDir(), fileName);
} else {
target = new File(config.getLocation(), fileName);
}
}
if(!formValue.getFile().renameTo(target)) {
//maybe different filesystem
FileUtils.copyFile(formValue.getFile(), target);
}
}
@Override
public void delete() throws IOException {
if (!formValue.getFile().delete()) {
throw UndertowServletMessages.MESSAGES.deleteFailed(formValue.getFile());
}
}
@Override
public String getHeader(final String name) {
return formValue.getHeaders().getFirst(new HttpString(name));
}
@Override
public Collection getHeaders(final String name) {
HeaderValues values = formValue.getHeaders().get(new HttpString(name));
return values == null ? Collections.emptyList() : values;
}
@Override
public Collection getHeaderNames() {
final Set ret = new HashSet();
for (HttpString i : formValue.getHeaders().getHeaderNames()) {
ret.add(i.toString());
}
return ret;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy