aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLordFokas <LordFokas@users.noreply.github.com>2015-10-19 13:24:19 +0100
committerLordFokas <LordFokas@users.noreply.github.com>2015-10-19 13:24:19 +0100
commit61b0528365fe1e5aad7b8ce8a291ba1579311d43 (patch)
tree8a28df20a8300f20587b2d2045948b2c41417f3d
parent2080278ba0b8a33cafbd24a7b38ed8a71f8b07b8 (diff)
parent6b302d1735579ac02f327b87cc99fdbfea09f61b (diff)
downloadnanohttpd-61b0528365fe1e5aad7b8ce8a291ba1579311d43.tar.gz
Merge pull request #1 from NanoHttpd/master
Pull upstream updates
-rw-r--r--core/src/main/java/fi/iki/elonen/NanoHTTPD.java62
-rw-r--r--core/src/test/java/fi/iki/elonen/JavaIOTempDirExistTest.java87
-rw-r--r--core/src/test/java/fi/iki/elonen/integration/GetAndPostIntegrationTest.java35
-rw-r--r--samples/src/main/java/fi/iki/elonen/TempFilesServer.java5
-rw-r--r--websocket/src/main/java/fi/iki/elonen/NanoWebSocketServer.java4
5 files changed, 167 insertions, 26 deletions
diff --git a/core/src/main/java/fi/iki/elonen/NanoHTTPD.java b/core/src/main/java/fi/iki/elonen/NanoHTTPD.java
index b63f467..3c2a403 100644
--- a/core/src/main/java/fi/iki/elonen/NanoHTTPD.java
+++ b/core/src/main/java/fi/iki/elonen/NanoHTTPD.java
@@ -388,8 +388,8 @@ public abstract class NanoHTTPD {
private final OutputStream fstream;
- public DefaultTempFile(String tempdir) throws IOException {
- this.file = File.createTempFile("NanoHTTPD-", "", new File(tempdir));
+ public DefaultTempFile(File tempdir) throws IOException {
+ this.file = File.createTempFile("NanoHTTPD-", "", tempdir);
this.fstream = new FileOutputStream(this.file);
}
@@ -424,12 +424,15 @@ public abstract class NanoHTTPD {
*/
public static class DefaultTempFileManager implements TempFileManager {
- private final String tmpdir;
+ private final File tmpdir;
private final List<TempFile> tempFiles;
public DefaultTempFileManager() {
- this.tmpdir = System.getProperty("java.io.tmpdir");
+ this.tmpdir = new File(System.getProperty("java.io.tmpdir"));
+ if (!tmpdir.exists()) {
+ tmpdir.mkdirs();
+ }
this.tempFiles = new ArrayList<TempFile>();
}
@@ -464,6 +467,14 @@ public abstract class NanoHTTPD {
}
}
+ private static final String CHARSET_REGEX = "[ |\t]*(charset)[ |\t]*=[ |\t]*['|\"]?([^\"^'^;]*)['|\"]?";
+
+ private static final Pattern CHARSET_PATTERN = Pattern.compile(CHARSET_REGEX, Pattern.CASE_INSENSITIVE);
+
+ private static final String BOUNDARY_REGEX = "[ |\t]*(boundary)[ |\t]*=[ |\t]*['|\"]?([^\"^'^;]*)['|\"]?";
+
+ private static final Pattern BOUNDARY_PATTERN = Pattern.compile(BOUNDARY_REGEX, Pattern.CASE_INSENSITIVE);
+
private static final String CONTENT_DISPOSITION_REGEX = "([ |\t]*Content-Disposition[ |\t]*:)(.*)";
private static final Pattern CONTENT_DISPOSITION_PATTERN = Pattern.compile(CONTENT_DISPOSITION_REGEX, Pattern.CASE_INSENSITIVE);
@@ -484,6 +495,8 @@ public abstract class NanoHTTPD {
public static final int BUFSIZE = 8192;
+ public static final int MAX_HEADER_SIZE = 1024;
+
private final TempFileManager tempFileManager;
private final OutputStream outputStream;
@@ -585,24 +598,24 @@ public abstract class NanoHTTPD {
/**
* Decodes the Multipart Body data and put it into Key/Value pairs.
*/
- private void decodeMultipartFormData(String boundary, ByteBuffer fbuf, Map<String, String> parms, Map<String, String> files) throws ResponseException {
+ private void decodeMultipartFormData(String boundary, String encoding, ByteBuffer fbuf, Map<String, String> parms, Map<String, String> files) throws ResponseException {
try {
int[] boundary_idxs = getBoundaryPositions(fbuf, boundary.getBytes());
if (boundary_idxs.length < 2) {
throw new ResponseException(Response.Status.BAD_REQUEST, "BAD REQUEST: Content type is multipart/form-data but contains less than two boundary strings.");
}
- final int MAX_HEADER_SIZE = 1024;
byte[] part_header_buff = new byte[MAX_HEADER_SIZE];
for (int bi = 0; bi < boundary_idxs.length - 1; bi++) {
fbuf.position(boundary_idxs[bi]);
int len = (fbuf.remaining() < MAX_HEADER_SIZE) ? fbuf.remaining() : MAX_HEADER_SIZE;
fbuf.get(part_header_buff, 0, len);
- ByteArrayInputStream bais = new ByteArrayInputStream(part_header_buff, 0, len);
- BufferedReader in = new BufferedReader(new InputStreamReader(bais, Charset.forName("US-ASCII")));
+ BufferedReader in = new BufferedReader(new InputStreamReader(new ByteArrayInputStream(part_header_buff, 0, len), Charset.forName(encoding)), len);
+ int headerLines = 0;
// First line is boundary string
String mpline = in.readLine();
+ headerLines++;
if (!mpline.contains(boundary)) {
throw new ResponseException(Response.Status.BAD_REQUEST, "BAD REQUEST: Content type is multipart/form-data but chunk does not start with boundary.");
}
@@ -610,6 +623,7 @@ public abstract class NanoHTTPD {
String part_name = null, file_name = null, content_type = null;
// Parse the reset of the header lines
mpline = in.readLine();
+ headerLines++;
while (mpline != null && mpline.trim().length() > 0) {
Matcher matcher = CONTENT_DISPOSITION_PATTERN.matcher(mpline);
if (matcher.matches()) {
@@ -629,10 +643,13 @@ public abstract class NanoHTTPD {
content_type = matcher.group(2).trim();
}
mpline = in.readLine();
+ headerLines++;
+ }
+ int part_header_len = 0;
+ while (headerLines-- > 0) {
+ part_header_len = scipOverNewLine(part_header_buff, part_header_len);
}
-
// Read the part data
- int part_header_len = len - (int) in.skip(MAX_HEADER_SIZE);
if (part_header_len >= len - 4) {
throw new ResponseException(Response.Status.INTERNAL_ERROR, "Multipart header size exceeds MAX_HEADER_SIZE.");
}
@@ -644,7 +661,7 @@ public abstract class NanoHTTPD {
// Read the part into a string
byte[] data_bytes = new byte[part_data_end - part_data_start];
fbuf.get(data_bytes);
- parms.put(part_name, new String(data_bytes));
+ parms.put(part_name, new String(data_bytes, encoding));
} else {
// Read it into a file
String path = saveTmpFile(fbuf, part_data_start, part_data_end - part_data_start, file_name);
@@ -667,6 +684,13 @@ public abstract class NanoHTTPD {
}
}
+ private int scipOverNewLine(byte[] part_header_buff, int index) {
+ while (part_header_buff[index] != '\n') {
+ index++;
+ }
+ return ++index;
+ }
+
/**
* Decodes parameters in percent-encoded URI-format ( e.g.
* "name=Jack%20Daniels&pass=Single%20Malt" ) and adds them to given
@@ -982,15 +1006,8 @@ public abstract class NanoHTTPD {
throw new ResponseException(Response.Status.BAD_REQUEST,
"BAD REQUEST: Content type is multipart/form-data but boundary missing. Usage: GET /example/file.html");
}
-
- String boundaryStartString = "boundary=";
- int boundaryContentStart = contentTypeHeader.indexOf(boundaryStartString) + boundaryStartString.length();
- String boundary = contentTypeHeader.substring(boundaryContentStart, contentTypeHeader.length());
- if (boundary.startsWith("\"") && boundary.endsWith("\"")) {
- boundary = boundary.substring(1, boundary.length() - 1);
- }
-
- decodeMultipartFormData(boundary, fbuf, this.parms, files);
+ decodeMultipartFormData(getAttributeFromContentHeader(contentTypeHeader, BOUNDARY_PATTERN, null), //
+ getAttributeFromContentHeader(contentTypeHeader, CHARSET_PATTERN, "US-ASCII"), fbuf, this.parms, files);
} else {
byte[] postBytes = new byte[fbuf.remaining()];
fbuf.get(postBytes);
@@ -1013,6 +1030,11 @@ public abstract class NanoHTTPD {
}
}
+ private String getAttributeFromContentHeader(String contentTypeHeader, Pattern pattern, String defaultValue) {
+ Matcher matcher = pattern.matcher(contentTypeHeader);
+ return matcher.find() ? matcher.group(2) : defaultValue;
+ }
+
/**
* Retrieves the content of a sent file and saves it to a temporary
* file. The full path to the saved file is returned.
diff --git a/core/src/test/java/fi/iki/elonen/JavaIOTempDirExistTest.java b/core/src/test/java/fi/iki/elonen/JavaIOTempDirExistTest.java
new file mode 100644
index 0000000..b586bc2
--- /dev/null
+++ b/core/src/test/java/fi/iki/elonen/JavaIOTempDirExistTest.java
@@ -0,0 +1,87 @@
+package fi.iki.elonen;
+
+/*
+ * #%L
+ * NanoHttpd-Core
+ * %%
+ * Copyright (C) 2012 - 2015 nanohttpd
+ * %%
+ * Redistribution and use in source and binary forms, with or without modification,
+ * are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ *
+ * 3. Neither the name of the nanohttpd nor the names of its contributors
+ * may be used to endorse or promote products derived from this software without
+ * specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ * #L%
+ */
+
+import java.io.File;
+import java.io.IOException;
+import java.util.UUID;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+import fi.iki.elonen.NanoHTTPD.DefaultTempFile;
+
+/**
+ * Created by Victor Nikiforov on 10/16/15.
+ */
+public class JavaIOTempDirExistTest {
+
+ @Test
+ public void testJavaIoTempDefault() throws Exception {
+ String tmpdir = System.getProperty("java.io.tmpdir");
+ NanoHTTPD.DefaultTempFileManager manager = new NanoHTTPD.DefaultTempFileManager();
+ DefaultTempFile tempFile = (DefaultTempFile) manager.createTempFile("xx");
+ File tempFileBackRef = new File(tempFile.getName());
+ Assert.assertEquals(tempFileBackRef.getParentFile(), new File(tmpdir));
+
+ // force an exception
+ tempFileBackRef.delete();
+ Exception e = null;
+ try {
+ tempFile.delete();
+ } catch (Exception ex) {
+ e = ex;
+ }
+ Assert.assertNotNull(e);
+ manager.clear();
+ }
+
+ @Test
+ public void testJavaIoTempSpecific() throws IOException {
+ final String tmpdir = System.getProperty("java.io.tmpdir");
+ try {
+ String tempFileName = UUID.randomUUID().toString();
+ File newDir = new File("target", tempFileName);
+ System.setProperty("java.io.tmpdir", newDir.getAbsolutePath());
+ Assert.assertEquals(false, newDir.exists());
+ new NanoHTTPD.DefaultTempFileManager();
+ Assert.assertEquals(true, newDir.exists());
+ newDir.delete();
+ } finally {
+ System.setProperty("java.io.tmpdir", tmpdir);
+ }
+
+ }
+
+}
diff --git a/core/src/test/java/fi/iki/elonen/integration/GetAndPostIntegrationTest.java b/core/src/test/java/fi/iki/elonen/integration/GetAndPostIntegrationTest.java
index d4fc5cf..eef2f22 100644
--- a/core/src/test/java/fi/iki/elonen/integration/GetAndPostIntegrationTest.java
+++ b/core/src/test/java/fi/iki/elonen/integration/GetAndPostIntegrationTest.java
@@ -35,11 +35,14 @@ package fi.iki.elonen.integration;
import static org.junit.Assert.assertEquals;
+import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
+import org.apache.http.HttpEntity;
+import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.entity.UrlEncodedFormEntity;
@@ -50,9 +53,11 @@ import org.apache.http.entity.mime.MultipartEntity;
import org.apache.http.entity.mime.content.StringBody;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.message.BasicNameValuePair;
+import org.apache.http.util.EntityUtils;
import org.junit.Test;
import fi.iki.elonen.NanoHTTPD;
+import fi.iki.elonen.NanoHTTPD.Response.Status;
/**
* @author Paul S. Hawke (paul.hawke@gmail.com) On: 5/19/13 at 5:36 PM
@@ -80,8 +85,11 @@ public class GetAndPostIntegrationTest extends IntegrationTestBase<GetAndPostInt
sb.append(';').append(k).append('=').append(parms.get(k));
}
}
-
- return newFixedLengthResponse(sb.toString());
+ if ("/chin".equals(uri)) {
+ return newFixedLengthResponse(Status.OK, "application/octet-stream", sb.toString());
+ } else {
+ return newFixedLengthResponse(sb.toString());
+ }
}
}
@@ -154,4 +162,27 @@ public class GetAndPostIntegrationTest extends IntegrationTestBase<GetAndPostInt
assertEquals("GET:testSimpleGetRequest", responseBody);
}
+
+ @Test
+ public void testPostRequestWithMultipartExtremEncodedParameters() throws Exception {
+ this.testServer.response = "testPostRequestWithMultipartEncodedParameters";
+
+ HttpPost httppost = new HttpPost("http://localhost:8192/chin");
+ MultipartEntity reqEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE, "sfsadfasdf", Charset.forName("UTF-8"));
+ reqEntity.addPart("specialString", new StringBody("拖拉图片到浏览器,可以实现预览功能", "text/plain", Charset.forName("UTF-8")));
+ reqEntity.addPart("gender", new StringBody("图片名称", Charset.forName("UTF-8")) {
+
+ @Override
+ public String getFilename() {
+ return "图片名称";
+ }
+ });
+ httppost.setEntity(reqEntity);
+ HttpResponse response = this.httpclient.execute(httppost);
+
+ HttpEntity entity = response.getEntity();
+ String responseBody = EntityUtils.toString(entity, "UTF-8");
+
+ assertEquals("POST:testPostRequestWithMultipartEncodedParameters-params=2;gender=图片名称;specialString=拖拉图片到浏览器,可以实现预览功能", responseBody);
+ }
}
diff --git a/samples/src/main/java/fi/iki/elonen/TempFilesServer.java b/samples/src/main/java/fi/iki/elonen/TempFilesServer.java
index 8429e32..964f2b2 100644
--- a/samples/src/main/java/fi/iki/elonen/TempFilesServer.java
+++ b/samples/src/main/java/fi/iki/elonen/TempFilesServer.java
@@ -33,6 +33,7 @@ package fi.iki.elonen;
* #L%
*/
+import java.io.File;
import java.util.ArrayList;
import java.util.List;
@@ -46,12 +47,12 @@ public class TempFilesServer extends DebugServer {
private static class ExampleManager implements TempFileManager {
- private final String tmpdir;
+ private final File tmpdir;
private final List<TempFile> tempFiles;
private ExampleManager() {
- this.tmpdir = System.getProperty("java.io.tmpdir");
+ this.tmpdir = new File(System.getProperty("java.io.tmpdir"));
this.tempFiles = new ArrayList<TempFile>();
}
diff --git a/websocket/src/main/java/fi/iki/elonen/NanoWebSocketServer.java b/websocket/src/main/java/fi/iki/elonen/NanoWebSocketServer.java
index e305d8d..7f75f7a 100644
--- a/websocket/src/main/java/fi/iki/elonen/NanoWebSocketServer.java
+++ b/websocket/src/main/java/fi/iki/elonen/NanoWebSocketServer.java
@@ -845,9 +845,9 @@ public abstract class NanoWebSocketServer extends NanoHTTPD {
return serveHttp(session);
}
}
-
+
protected Response serveHttp(final IHTTPSession session) {
- return super.serve(session);
+ return super.serve(session);
}
/**