-
Notifications
You must be signed in to change notification settings - Fork 242
/
web-server.js
35 lines (29 loc) · 1.02 KB
/
web-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
const express = require("express");
const morgan = require("morgan");
const cors = require("cors");
const { auth } = require("express-oauth2-jwt-bearer");
const { join } = require("path");
const authConfig = require("./auth_config.json");
const app = express();
if (!authConfig.domain || !authConfig.authorizationParams.audience) {
throw "Please make sure that auth_config.json is in place and populated";
}
app.use(morgan("dev"));
app.use(cors());
app.use(express.static(join(__dirname, "dist")));
const checkJwt = auth({
audience: authConfig.authorizationParams.audience,
issuerBaseURL: `https://${authConfig.domain}`,
});
app.get("/api/external", checkJwt, (req, res) => {
res.send({
msg: "Your access token was successfully validated!"
});
});
if (process.env.NODE_ENV === "production") {
app.use((_, res) => {
res.sendFile(join(__dirname, "dist", "index.html"));
});
}
const port = process.env.NODE_ENV === "production" ? 3000 : 3001;
app.listen(port, () => console.log(`Server listening on port ${port}`));