view Sphinx/source/plugins/python/authorization-node-service.js @ 719:8a247c645ac6 Orthanc-1.9.4

Orthanc 1.9.4
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 24 Jun 2021 09:52:22 +0200
parents ba2403ebd4b7
children
line wrap: on
line source

const http = require('http');

const requestListener = function(req, res) {
  let body = '';
  req.on('data', function(chunk) {
    body += chunk;
  });
  req.on('end', function() {
    console.log(JSON.parse(body));
    var answer = {
      'granted' : false  // Forbid access
    };
    res.writeHead(200);
    res.end(JSON.stringify(answer));
  });
}

http.createServer(requestListener).listen(8000);