-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmiddleware.js
More file actions
71 lines (56 loc) · 1.36 KB
/
middleware.js
File metadata and controls
71 lines (56 loc) · 1.36 KB
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
const express = require("express");
const app = express();
/**
* Middleware 1:
* Read X-Username header and attach it to req.username
*/
const usernameMiddleware = (req, res, next) => {
const username = req.header("X-Username");
req.username = username ? username : null;
next();
};
/**
* Middleware 2:
* Parse POST body as JSON array of strings
*/
const jsonArrayMiddleware = (req, res, next) => {
let rawBody = "";
req.on("data", chunk => {
rawBody += chunk;
});
req.on("end", () => {
let parsed;
try {
parsed = JSON.parse(rawBody);
} catch {
return res.status(400).send("Request body must be valid JSON");
}
if (!Array.isArray(parsed)) {
return res.status(400).send("Request body must be a JSON array");
}
if (!parsed.every(item => typeof item === "string")) {
return res.status(400).send("Array must contain only strings");
}
req.body = parsed;
next();
});
};
/**
* POST endpoint
*/
app.post(
"/",
usernameMiddleware,
jsonArrayMiddleware,
(req, res) => {
const username = req.username ?? "Anonymous";
const subjects = req.body;
res.send(
`You are authenticated as ${username}.
You have requested information about ${subjects.length} subjects: ${subjects.join(", ")}.`
);
}
);
app.listen(3000, () => {
console.log("Server running on port 3000");
});