-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
158 lines (158 loc) · 6.02 KB
/
app.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
import path from 'node:path';
import { abuseCheck } from '@cityssm/express-abuse-points';
import dateTimeFns from '@cityssm/utils-datetime';
import compression from 'compression';
import cookieParser from 'cookie-parser';
import csurf from 'csurf';
import Debug from 'debug';
import express from 'express';
import rateLimit from 'express-rate-limit';
import session from 'express-session';
import createError from 'http-errors';
import FileStore from 'session-file-store';
import { getSafeRedirectURL } from './helpers/functions.authentication.js';
import configFunctions, { getConfigProperty, includeAttendance } from './helpers/functions.config.js';
import permissionFunctions, { hasAttendance } from './helpers/functions.permissions.js';
import routerAdmin from './routes/admin.js';
import routerAttendance from './routes/attendance.js';
import routerDashboard from './routes/dashboard.js';
import routerLogin from './routes/login.js';
import routerPrint from './routes/print.js';
import routerReports from './routes/reports.js';
import routerSelfService from './routes/selfService.js';
import { version } from './version.js';
const debug = Debug(`attendance-tracking:app:${process.pid}`);
if (getConfigProperty('tempUsers').length > 0) {
debug('Temporary user accounts currently active!');
}
export const app = express();
app.disable('X-Powered-By');
if (!getConfigProperty('reverseProxy.disableEtag')) {
app.set('etag', false);
}
app.set('views', path.join('views'));
app.set('view engine', 'ejs');
if (!getConfigProperty('reverseProxy.disableCompression')) {
app.use(compression());
}
app.use((request, _response, next) => {
debug(`${request.method} ${request.url}`);
next();
});
app.use(express.json());
app.use(express.urlencoded({
extended: false
}));
app.use(cookieParser());
app.use(csurf({
cookie: true
}));
app.use(rateLimit({
windowMs: 10_000,
max: 200
}));
const abuseCheckHandler = abuseCheck();
const urlPrefix = getConfigProperty('reverseProxy.urlPrefix');
if (urlPrefix !== '') {
debug(`urlPrefix = ${urlPrefix}`);
}
app.use(urlPrefix, express.static(path.join('public')));
if (!configFunctions.isLogoOverwritten) {
app.use('/favicon.ico', express.static(path.join('public', 'images', 'favicon', 'favicon.ico')));
app.use(`${urlPrefix}/favicon.ico`, express.static(path.join('public', 'images', 'favicon', 'favicon.ico')));
}
app.use(`${urlPrefix}/lib/cityssm-bulma-js/bulma-js.js`, express.static(path.join('node_modules', '@cityssm', 'bulma-js', 'dist', 'bulma-js.js')));
app.use(`${urlPrefix}/lib/cityssm-bulma-webapp-js`, express.static(path.join('node_modules', '@cityssm', 'bulma-webapp-js', 'dist')));
app.use(`${urlPrefix}/lib/fa`, express.static(path.join('node_modules', '@fortawesome', 'fontawesome-free')));
const sessionCookieName = getConfigProperty('session.cookieName');
const FileStoreSession = FileStore(session);
app.use(session({
store: new FileStoreSession({
path: './data/sessions',
logFn: Debug(`attendance-tracking:session:${process.pid}`),
retries: 20
}),
name: sessionCookieName,
secret: getConfigProperty('session.secret'),
resave: true,
saveUninitialized: false,
rolling: true,
cookie: {
maxAge: getConfigProperty('session.maxAgeMillis'),
sameSite: 'strict'
}
}));
app.use((request, response, next) => {
if (Object.hasOwn(request.cookies, sessionCookieName) &&
!Object.hasOwn(request.session, 'user')) {
response.clearCookie(sessionCookieName);
}
next();
});
const sessionChecker = (request, response, next) => {
if (Object.hasOwn(request.session, 'user') &&
Object.hasOwn(request.cookies, sessionCookieName)) {
next();
return;
}
const redirectUrl = getSafeRedirectURL(request.originalUrl);
response.redirect(`${urlPrefix}/login?redirect=${encodeURIComponent(redirectUrl)}`);
};
app.use((request, response, next) => {
response.locals.buildNumber = version;
response.locals.user = request.session.user;
response.locals.csrfToken = request.csrfToken();
response.locals.permissionFunctions = permissionFunctions;
response.locals.configFunctions = configFunctions;
response.locals.dateTimeFunctions = dateTimeFns;
response.locals.urlPrefix = getConfigProperty('reverseProxy.urlPrefix');
next();
});
app.get(`${urlPrefix}/`, sessionChecker, (_request, response) => {
response.redirect(`${urlPrefix}/dashboard`);
});
app.use(`${urlPrefix}/dashboard`, sessionChecker, routerDashboard);
app.use(`${urlPrefix}/reports`, sessionChecker, routerReports);
app.use(`${urlPrefix}/print`, sessionChecker, routerPrint);
if (includeAttendance()) {
app.use(`${urlPrefix}/attendance`, sessionChecker, (request, response, next) => {
if (hasAttendance(request.session.user)) {
next();
return;
}
response.redirect(`${urlPrefix}/dashboard?error=accessDenied`);
}, routerAttendance);
}
app.use(`${urlPrefix}/admin`, sessionChecker, (request, response, next) => {
if (request.session.user?.isAdmin ?? false) {
next();
return;
}
response.redirect(`${urlPrefix}/dashboard?error=accessDenied`);
}, routerAdmin);
if (getConfigProperty('session.doKeepAlive')) {
app.all(`${urlPrefix}/keepAlive`, (_request, response) => {
response.json(true);
});
}
app.use(`${urlPrefix}/login`, abuseCheckHandler, routerLogin);
app.get(`${urlPrefix}/logout`, (request, response) => {
if (Object.hasOwn(request.session, 'user') &&
Object.hasOwn(request.cookies, sessionCookieName)) {
request.session.destroy(() => {
response.clearCookie(sessionCookieName);
response.redirect(`${urlPrefix}/`);
});
}
else {
response.redirect(`${urlPrefix}/login`);
}
});
if (getConfigProperty('features.selfService')) {
app.use(urlPrefix + getConfigProperty('settings.selfService.path'), abuseCheckHandler, routerSelfService);
}
app.use((request, _response, next) => {
debug(request.url);
next(createError(404, `File not found: ${request.url}`));
});
export default app;