-
-
Notifications
You must be signed in to change notification settings - Fork 629
/
Copy pathhttp-select-and-render.js
40 lines (37 loc) · 1.03 KB
/
http-select-and-render.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
34
35
36
37
38
39
40
'use strict';
const http = require('http');
const common = require('../test/common');
const url = require('url');
const conn = common.createConnection();
const render = common.createTemplate();
const port = process.env.PORT;
http
.createServer((req, res) => {
const q = new url.URL(req.url);
if (q.pathname === '/render') {
const sql = q.searchParams.get('q');
const n = q.searchParams.get('n');
let rowsTotal = [];
const doQueries = function (number) {
if (number === 0) {
const body = render({ records: rowsTotal });
res.writeHead(200, {
'Content-Length': body.length,
'Content-Type': 'text/html',
});
res.end(body);
} else {
conn.query(sql, (err, rows) => {
// TODO: handle error
rowsTotal = rowsTotal.concat(rows);
doQueries(number - 1);
});
}
};
doQueries(n);
} else {
res.writeHead(404);
res.end();
}
})
.listen(port || 1234);