-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathexistingMiddleware.js
More file actions
60 lines (46 loc) · 1.3 KB
/
existingMiddleware.js
File metadata and controls
60 lines (46 loc) · 1.3 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
const express = require("express");
const app = express();
// Use built-in JSON middleware
app.use(express.json()); // Read the request body, parses it as JSON, automatically sets req.body, rejects invalid JSON with 400
/**
* 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 (validation only):
* Ensure body is an array of strings
*/
// We still need to validate the shape of the data
const validateStringArrayBody = (req, res, next) => {
if (!Array.isArray(req.body)) {
return res.status(400).send("Request body must be a JSON array");
}
if (!req.body.every(item => typeof item === "string")) {
return res.status(400).send("Array must contain only strings");
}
next();
};
/**
* POST endpoint
*/
app.post(
"/",
usernameMiddleware,
validateStringArrayBody,
(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");
});