-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathserver2.js
33 lines (30 loc) · 1.03 KB
/
server2.js
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
const http = require('http');
const fs = require('fs');
function processApiResponse(res, tableauServer, username) {
let data = {
ticket: '<ticket for \'' + username + '\'>'
};
let contents = JSON.stringify(data);
res.writeHead(200, {'Content-Type': 'application/json'});
res.end(contents + '\n');
console.log('200 POST /api - ' + contents);
}
http.createServer(function (req, res) {
if (req.method === 'GET') {
if (req.url === '/') {
let contents = fs.readFileSync('index.html', 'ascii');
res.writeHead(200, {'Content-Type': 'text/html'});
res.end(contents);
console.log('200 GET / - ' + contents.length);
} else if (req.url == '/api') {
processApiResponse(res, "http://localhost", "smith");
} else {
res.writeHead(404)
res.end("Not Found");
console.log('404 GET ' + req.url);
}
} else {
res.writeHead(405);
res.end('Invalid request method: ' + req.method);
}
}).listen(8080, '0.0.0.0');