summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/identity/idp.sjs
blob: b6313297bc2bc67b9108337a7720099707b9c41d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function handleRequest(request, response) {
  var key = '/.well-known/idp-proxy/' + request.queryString;
  dump(getState(key) + '\n');
  if (request.method === 'GET') {
    if (getState(key)) {
      response.setStatusLine(request.httpVersion, 200, 'OK');
    } else {
      response.setStatusLine(request.httpVersion, 404, 'Not Found');
    }
  } else if (request.method === 'PUT') {
    setState(key, 'OK');
    response.setStatusLine(request.httpVersion, 200, 'OK');
  } else {
    response.setStatusLine(request.httpVersion, 406, 'Method Not Allowed');
  }
  response.setHeader('Content-Type', 'text/plain;charset=UTF-8');
  response.write('OK');
}