summaryrefslogtreecommitdiffstats
path: root/netwerk/test/browser/auth_post.sjs
blob: 8c3e723558dda3477a0345ffb4a8dda39ec181d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const CC = Components.Constructor;
const BinaryInputStream = CC(
  "@mozilla.org/binaryinputstream;1",
  "nsIBinaryInputStream",
  "setInputStream"
);

function readStream(inputStream) {
  let available = 0;
  let result = [];
  while ((available = inputStream.available()) > 0) {
    result.push(inputStream.readBytes(available));
  }

  return result.join("");
}

function handleRequest(request, response) {
  if (request.method != "POST") {
    response.setStatusLine(request.httpVersion, 405, "Method Not Allowed");
    return;
  }

  if (request.hasHeader("Authorization")) {
    let data = "";
    try {
      data = readStream(new BinaryInputStream(request.bodyInputStream));
    } catch (e) {
      data = `${e}`;
    }
    response.bodyOutputStream.write(data, data.length);
    return;
  }

  response.setStatusLine(request.httpVersion, 401, "Unauthorized");
  response.setHeader("WWW-Authenticate", `basic realm="test"`, true);
}