-
-
Notifications
You must be signed in to change notification settings - Fork 767
/
express.js
78 lines (63 loc) · 2.03 KB
/
express.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* eslint-disable no-console */
import * as path from 'node:path';
import * as url from 'node:url';
import { dirname } from 'desm';
import express from 'express'; // eslint-disable-line import/no-unresolved
import helmet from 'helmet';
import Provider from '../lib/index.js'; // from 'oidc-provider';
import Account from './support/account.js';
import configuration from './support/configuration.js';
import routes from './routes/express.js';
const __dirname = dirname(import.meta.url);
const { PORT = 3000, ISSUER = `http://localhost:${PORT}` } = process.env;
configuration.findAccount = Account.findAccount;
const app = express();
const directives = helmet.contentSecurityPolicy.getDefaultDirectives();
delete directives['form-action'];
app.use(helmet({
contentSecurityPolicy: {
useDefaults: false,
directives,
},
}));
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
let server;
try {
let adapter;
if (process.env.MONGODB_URI) {
({ default: adapter } = await import('./adapters/mongodb.js'));
await adapter.connect();
}
const prod = process.env.NODE_ENV === 'production';
const provider = new Provider(ISSUER, { adapter, ...configuration });
if (prod) {
app.enable('trust proxy');
provider.proxy = true;
app.use((req, res, next) => {
if (req.secure) {
next();
} else if (req.method === 'GET' || req.method === 'HEAD') {
res.redirect(url.format({
protocol: 'https',
host: req.get('host'),
pathname: req.originalUrl,
}));
} else {
res.status(400).json({
error: 'invalid_request',
error_description: 'do yourself a favor and only use https',
});
}
});
}
routes(app, provider);
app.use(provider.callback());
server = app.listen(PORT, () => {
console.log(`application is listening on port ${PORT}, check its /.well-known/openid-configuration`);
});
} catch (err) {
if (server?.listening) server.close();
console.error(err);
process.exitCode = 1;
}