-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgateway.js
46 lines (42 loc) · 1.19 KB
/
gateway.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
const express = require("express");
const helmet = require("helmet");
const app = express();
const registry = require("./config/registry.json");
const routes = require("./routes");
const PORT = 5000;
app.use(express.json());
app.use(helmet());
const auth = (req, res, next) => {
const {
protocol,
hostname,
path,
headers: { authorization },
} = req;
const url = `${protocol}://${hostname}${PORT}${path}`;
const authString = Buffer.from(authorization, "base64").toString("utf-8");
const authParts = authString.split(":");
const [username, password] = authParts;
console.log(`${username} | ${password}`);
const user = registry.auth.users[username];
if (user) {
if (user.username === username && user.password === password) {
next();
} else {
res.send({
authenticated: false,
path: url,
message: "Authentication Unsuccessful: Incorrect password.",
});
}
} else {
res.send({
authenticated: false,
path: url,
message: `Authentication Unsuccessful: User ${username} doesn't exist.`,
});
}
};
app.use(auth);
app.use("/", routes);
app.listen(PORT, () => console.log(`Gateway started on port ${PORT}`));