cordova-plugin-webserver/src/android/NanoHTTPDWebserver.java

134 lines
4.2 KiB
Java
Raw Normal View History

package org.apache.cordova.plugin;
import android.annotation.TargetApi;
import android.os.Build;
import android.util.Log;
import org.apache.cordova.PluginResult;
import org.json.JSONException;
import org.json.JSONObject;
import fi.iki.elonen.NanoHTTPD;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
2018-04-19 13:16:36 +02:00
import java.io.IOException;
2017-07-11 17:35:59 +02:00
import java.io.StringWriter;
import java.io.UnsupportedEncodingException;
import java.util.Iterator;
import java.util.UUID;
2018-04-18 20:33:14 -05:00
import java.util.HashMap;
import java.util.Map;
public class NanoHTTPDWebserver extends NanoHTTPD {
Webserver webserver;
public NanoHTTPDWebserver(int port, Webserver webserver) {
super(port);
this.webserver = webserver;
}
2018-04-18 20:33:14 -05:00
private String getBodyText(IHTTPSession session) {
Map<String, String> files = new HashMap<String, String>();
Method method = session.getMethod();
if (Method.PUT.equals(method) || Method.POST.equals(method)) {
try {
session.parseBody(files);
} catch (IOException ioe) {
return "{}";
} catch (ResponseException re) {
return "{}";
}
}
// get the POST body
return files.get("postData");
2017-07-11 17:35:59 +02:00
}
/**
* Create a request object
* <p>
* [
* "requestId": requestUUID,
* " body": request.jsonObject ?? "",
* " headers": request.headers,
* " method": request.method,
* " path": request.url.path,
* " query": request.url.query ?? ""
* ]
*
* @param session
* @return
*/
private JSONObject createJSONRequest(String requestId, IHTTPSession session) throws JSONException {
JSONObject jsonRequest = new JSONObject();
jsonRequest.put("requestId", requestId);
2018-04-18 20:33:14 -05:00
jsonRequest.put("body", this.getBodyText(session));
jsonRequest.put("headers", session.getHeaders());
jsonRequest.put("method", session.getMethod());
jsonRequest.put("path", session.getUri());
jsonRequest.put("query", session.getQueryParameterString());
return jsonRequest;
}
private String getContentType(JSONObject responseObject) throws JSONException {
if (responseObject.has("headers") &&
responseObject.getJSONObject("headers").has("Content-Type")) {
return responseObject.getJSONObject("headers").getString("Content-Type");
} else {
return "text/plain";
}
}
@Override
public Response serve(IHTTPSession session) {
Log.d(this.getClass().getName(), "New request is incoming!");
String requestUUID = UUID.randomUUID().toString();
PluginResult pluginResult = null;
try {
pluginResult = new PluginResult(
PluginResult.Status.OK, this.createJSONRequest(requestUUID, session));
} catch (JSONException e) {
e.printStackTrace();
}
pluginResult.setKeepCallback(true);
this.webserver.onRequestCallbackContext.sendPluginResult(pluginResult);
while (!this.webserver.responses.containsKey(requestUUID)) {
try {
2017-07-11 19:51:39 +02:00
Thread.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
JSONObject responseObject = (JSONObject) this.webserver.responses.get(requestUUID);
Log.d(this.getClass().getName(), "responseObject: " + responseObject.toString());
Response response = null;
try {
response = newFixedLengthResponse(
Response.Status.lookup(responseObject.getInt("status")),
getContentType(responseObject),
responseObject.getString("body")
);
Iterator<?> keys = responseObject.getJSONObject("headers").keys();
while (keys.hasNext()) {
String key = (String) keys.next();
response.addHeader(
key,
responseObject.getJSONObject("headers").getString(key)
);
}
} catch (JSONException e) {
e.printStackTrace();
}
return response;
}
}