mirror of https://github.com/adamdruppe/arsd.git
postJson support
This commit is contained in:
parent
06a006183b
commit
cb2a4e54d7
26
cgi.d
26
cgi.d
|
@ -584,6 +584,7 @@ class Cgi {
|
||||||
this.requestUri = requestUri;
|
this.requestUri = requestUri;
|
||||||
this.pathInfo = pathInfo;
|
this.pathInfo = pathInfo;
|
||||||
this.queryString = queryString;
|
this.queryString = queryString;
|
||||||
|
this.postJson = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Initializes it using a CGI or CGI-like interface */
|
/** Initializes it using a CGI or CGI-like interface */
|
||||||
|
@ -792,6 +793,7 @@ class Cgi {
|
||||||
filesArray = assumeUnique(pps._files);
|
filesArray = assumeUnique(pps._files);
|
||||||
files = keepLastOf(filesArray);
|
files = keepLastOf(filesArray);
|
||||||
post = keepLastOf(postArray);
|
post = keepLastOf(postArray);
|
||||||
|
this.postJson = pps.postJson;
|
||||||
cleanUpPostDataState();
|
cleanUpPostDataState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -836,6 +838,7 @@ class Cgi {
|
||||||
string boundary;
|
string boundary;
|
||||||
string localBoundary; // the ones used at the end or something lol
|
string localBoundary; // the ones used at the end or something lol
|
||||||
bool isMultipart;
|
bool isMultipart;
|
||||||
|
bool isJson;
|
||||||
|
|
||||||
ulong expectedLength;
|
ulong expectedLength;
|
||||||
ulong contentConsumed;
|
ulong contentConsumed;
|
||||||
|
@ -847,6 +850,8 @@ class Cgi {
|
||||||
string[] thisOnesHeaders;
|
string[] thisOnesHeaders;
|
||||||
immutable(ubyte)[] thisOnesData;
|
immutable(ubyte)[] thisOnesData;
|
||||||
|
|
||||||
|
string postJson;
|
||||||
|
|
||||||
UploadedFile piece;
|
UploadedFile piece;
|
||||||
bool isFile = false;
|
bool isFile = false;
|
||||||
|
|
||||||
|
@ -948,6 +953,11 @@ class Cgi {
|
||||||
} else if(pps.contentType == "multipart/form-data") {
|
} else if(pps.contentType == "multipart/form-data") {
|
||||||
pps.isMultipart = true;
|
pps.isMultipart = true;
|
||||||
enforce(pps.boundary.length, "no boundary");
|
enforce(pps.boundary.length, "no boundary");
|
||||||
|
} else if(pps.contentType == "application/json") {
|
||||||
|
pps.isJson = true;
|
||||||
|
pps.isMultipart = false;
|
||||||
|
//} else if(pps.contentType == "application/json") {
|
||||||
|
//pps.isJson = true;
|
||||||
} else {
|
} else {
|
||||||
// FIXME: should set a http error code too
|
// FIXME: should set a http error code too
|
||||||
throw new Exception("unknown request content type: " ~ pps.contentType);
|
throw new Exception("unknown request content type: " ~ pps.contentType);
|
||||||
|
@ -1255,7 +1265,7 @@ class Cgi {
|
||||||
|
|
||||||
// btw all boundaries except the first should have a \r\n before them
|
// btw all boundaries except the first should have a \r\n before them
|
||||||
} else {
|
} else {
|
||||||
// application/x-www-form-urlencoded
|
// application/x-www-form-urlencoded and application/json
|
||||||
|
|
||||||
// not using maxContentLength because that might be cranked up to allow
|
// not using maxContentLength because that might be cranked up to allow
|
||||||
// large file uploads. We can handle them, but a huge post[] isn't any good.
|
// large file uploads. We can handle them, but a huge post[] isn't any good.
|
||||||
|
@ -1265,9 +1275,14 @@ class Cgi {
|
||||||
pps.buffer ~= chunk;
|
pps.buffer ~= chunk;
|
||||||
|
|
||||||
// simple handling, but it works... until someone bombs us with gigabytes of crap at least...
|
// simple handling, but it works... until someone bombs us with gigabytes of crap at least...
|
||||||
if(pps.buffer.length == pps.expectedLength)
|
if(pps.buffer.length == pps.expectedLength) {
|
||||||
pps._post = decodeVariables(cast(string) pps.buffer);
|
if(pps.isJson)
|
||||||
else {
|
pps.postJson = cast(string) pps.buffer;
|
||||||
|
else
|
||||||
|
pps._post = decodeVariables(cast(string) pps.buffer);
|
||||||
|
version(preserveData)
|
||||||
|
originalPostData = pps.buffer;
|
||||||
|
} else {
|
||||||
// just for debugging
|
// just for debugging
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1538,6 +1553,7 @@ class Cgi {
|
||||||
filesArray = assumeUnique(pps._files);
|
filesArray = assumeUnique(pps._files);
|
||||||
files = keepLastOf(filesArray);
|
files = keepLastOf(filesArray);
|
||||||
post = keepLastOf(postArray);
|
post = keepLastOf(postArray);
|
||||||
|
postJson = pps.postJson;
|
||||||
cleanUpPostDataState();
|
cleanUpPostDataState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2081,6 +2097,8 @@ class Cgi {
|
||||||
version(preserveData) // note: this can eat lots of memory; don't use unless you're sure you need it.
|
version(preserveData) // note: this can eat lots of memory; don't use unless you're sure you need it.
|
||||||
immutable(ubyte)[] originalPostData;
|
immutable(ubyte)[] originalPostData;
|
||||||
|
|
||||||
|
public immutable string postJson;
|
||||||
|
|
||||||
/* Internal state flags */
|
/* Internal state flags */
|
||||||
private bool outputtedResponseData;
|
private bool outputtedResponseData;
|
||||||
private bool noCache = true;
|
private bool noCache = true;
|
||||||
|
|
Loading…
Reference in New Issue