2017-07-11 13:37:51 +02:00
|
|
|
package org.apache.cordova.plugin;
|
|
|
|
|
|
|
|
|
|
|
|
import android.annotation.TargetApi;
|
|
|
|
import android.os.Build;
|
2017-07-11 16:45:27 +02:00
|
|
|
import android.util.Log;
|
2017-07-11 13:37:51 +02:00
|
|
|
|
|
|
|
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;
|
2017-07-11 13:37:51 +02:00
|
|
|
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;
|
2017-07-11 13:37:51 +02:00
|
|
|
|
2018-01-25 11:14:31 +01:00
|
|
|
public class NanoHTTPDWebserver extends NanoHTTPD {
|
2017-07-11 13:37:51 +02:00
|
|
|
|
|
|
|
Webserver webserver;
|
|
|
|
|
|
|
|
public NanoHTTPDWebserver(int port, Webserver webserver) {
|
2017-07-11 16:45:27 +02:00
|
|
|
super(port);
|
2017-07-11 13:37:51 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-07-11 13:37:51 +02:00
|
|
|
/**
|
|
|
|
* Create a request object
|
2018-01-25 11:14:31 +01:00
|
|
|
* <p>
|
2017-07-11 13:37:51 +02:00
|
|
|
* [
|
2018-01-25 11:14:31 +01:00
|
|
|
* "requestId": requestUUID,
|
|
|
|
* " body": request.jsonObject ?? "",
|
|
|
|
* " headers": request.headers,
|
|
|
|
* " method": request.method,
|
|
|
|
* " path": request.url.path,
|
|
|
|
* " query": request.url.query ?? ""
|
|
|
|
* ]
|
2017-07-11 13:37:51 +02:00
|
|
|
*
|
|
|
|
* @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));
|
2017-07-11 13:37:51 +02:00
|
|
|
jsonRequest.put("headers", session.getHeaders());
|
|
|
|
jsonRequest.put("method", session.getMethod());
|
|
|
|
jsonRequest.put("path", session.getUri());
|
|
|
|
jsonRequest.put("query", session.getQueryParameterString());
|
|
|
|
return jsonRequest;
|
|
|
|
}
|
|
|
|
|
2018-01-25 11:14:31 +01:00
|
|
|
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";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-11 13:37:51 +02:00
|
|
|
@Override
|
|
|
|
public Response serve(IHTTPSession session) {
|
2017-07-11 16:45:27 +02:00
|
|
|
Log.d(this.getClass().getName(), "New request is incoming!");
|
|
|
|
|
2017-07-11 13:37:51 +02:00
|
|
|
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);
|
2017-07-11 13:37:51 +02:00
|
|
|
} catch (InterruptedException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JSONObject responseObject = (JSONObject) this.webserver.responses.get(requestUUID);
|
2017-07-11 16:45:27 +02:00
|
|
|
Log.d(this.getClass().getName(), "responseObject: " + responseObject.toString());
|
2017-07-11 13:37:51 +02:00
|
|
|
Response response = null;
|
2018-01-25 11:14:31 +01:00
|
|
|
|
2017-07-11 13:37:51 +02:00
|
|
|
try {
|
|
|
|
response = newFixedLengthResponse(
|
2018-01-25 11:14:31 +01:00
|
|
|
Response.Status.lookup(responseObject.getInt("status")),
|
|
|
|
getContentType(responseObject),
|
|
|
|
responseObject.getString("body")
|
2017-07-11 13:37:51 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
Iterator<?> keys = responseObject.getJSONObject("headers").keys();
|
|
|
|
while (keys.hasNext()) {
|
|
|
|
String key = (String) keys.next();
|
|
|
|
response.addHeader(
|
2018-01-25 11:14:31 +01:00
|
|
|
key,
|
|
|
|
responseObject.getJSONObject("headers").getString(key)
|
2017-07-11 13:37:51 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (JSONException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
}
|