mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
22 lines
744 B
JavaScript
22 lines
744 B
JavaScript
const CC = Components.Constructor;
|
|
const BinaryInputStream = CC("@mozilla.org/binaryinputstream;1",
|
|
"nsIBinaryInputStream",
|
|
"setInputStream");
|
|
|
|
function handleRequest(request, response)
|
|
{
|
|
if (request.hasHeader("Content-Type"))
|
|
response.setHeader("Result-Content-Type",
|
|
request.getHeader("Content-Type"));
|
|
|
|
response.setHeader("Content-Type", "text/plain; charset=ISO-8859-1");
|
|
|
|
var body = new BinaryInputStream(request.bodyInputStream);
|
|
var avail;
|
|
var bytes = [];
|
|
while ((avail = body.available()) > 0)
|
|
Array.prototype.push.apply(bytes, body.readByteArray(avail));
|
|
|
|
var data = String.fromCharCode.apply(null, bytes);
|
|
response.write(data);
|
|
} |