-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5-http.js
executable file
·71 lines (66 loc) · 2.01 KB
/
5-http.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// HTTP server with Node's http module
const http = require('http');
const { readFile } = require('fs');
const hostname = '127.0.0.1';
const port = 1245;
function countStudents(fileName) {
const students = {};
const fields = {};
let length = 0;
return new Promise((resolve, reject) => {
readFile(fileName, (err, data) => {
if (err) {
reject(err);
} else {
let output = '';
const lines = data.toString().split('\n');
for (let i = 0; i < lines.length; i += 1) {
if (lines[i]) {
length += 1;
const field = lines[i].toString().split(',');
if (Object.prototype.hasOwnProperty.call(students, field[3])) {
students[field[3]].push(field[0]);
} else {
students[field[3]] = [field[0]];
}
if (Object.prototype.hasOwnProperty.call(fields, field[3])) {
fields[field[3]] += 1;
} else {
fields[field[3]] = 1;
}
}
}
const l = length - 1;
output += `Number of students: ${l}\n`;
for (const [key, value] of Object.entries(fields)) {
if (key !== 'field') {
output += `Number of students in ${key}: ${value}. `;
output += `List: ${students[key].join(', ')}\n`;
}
}
resolve(output);
}
});
});
}
const app = http.createServer((request, response) => {
response.statusCode = 200;
response.setHeader('Content-Type', 'text/plain');
if (request.url === '/') {
response.write('Hello Holberton School!');
response.end();
}
if (request.url === '/students') {
response.write('This is the list of our students\n');
countStudents(process.argv[2].toString()).then((output) => {
const outString = output.slice(0, -1);
response.end(outString);
}).catch(() => {
response.statusCode = 404;
response.end('Cannot load the database');
});
}
});
app.listen(port, hostname, () => {
});
module.exports = app;