diff Sphinx/source/plugins/python/authorization-node-service.js @ 704:ba2403ebd4b7

moving python samples in separate files (3)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 11 Jun 2021 10:24:08 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Sphinx/source/plugins/python/authorization-node-service.js	Fri Jun 11 10:24:08 2021 +0200
@@ -0,0 +1,18 @@
+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);