-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy pathserver.js
49 lines (38 loc) · 1.15 KB
/
server.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
const express = require("express");
const morgan = require("morgan");
const helmet = require("helmet");
const { auth } = require("express-oauth2-jwt-bearer");
const { join } = require("path");
const authConfig = require("./auth_config.json");
const app = express();
if (!authConfig.domain || !authConfig.audience) {
throw "Please make sure that auth_config.json is in place and populated";
}
app.use(morgan("dev"));
app.use(helmet());
app.use(express.static(join(__dirname, "public")));
const checkJwt = auth({
audience: authConfig.audience,
issuerBaseURL: `https://${authConfig.domain}`,
});
app.get("/api/external", checkJwt, (req, res) => {
res.send({
msg: "Your access token was successfully validated!"
});
});
app.get("/auth_config.json", (req, res) => {
res.sendFile(join(__dirname, "auth_config.json"));
});
app.get("/*", (req, res) => {
res.sendFile(join(__dirname, "index.html"));
});
app.use(function(err, req, res, next) {
if (err.name === "UnauthorizedError") {
return res.status(401).send({ msg: "Invalid token" });
}
next(err, req, res);
});
process.on("SIGINT", function() {
process.exit();
});
module.exports = app;