279 lines
6.5 KiB
TypeScript
279 lines
6.5 KiB
TypeScript
import path from 'node:path'
|
|
|
|
import * as 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 { useTestDatabases } from './data/databasePaths.js'
|
|
import * as permissionHandlers from './handlers/permissions.js'
|
|
import { getSafeRedirectURL } from './helpers/functions.authentication.js'
|
|
import * as configFunctions from './helpers/functions.config.js'
|
|
import * as printFunctions from './helpers/functions.print.js'
|
|
import { initializeDatabase } from './helpers/initializer.database.js'
|
|
import routerAdmin from './routes/admin.js'
|
|
import routerApi from './routes/api.js'
|
|
import routerDashboard from './routes/dashboard.js'
|
|
import routerLogin from './routes/login.js'
|
|
import routerLotOccupancies from './routes/lotOccupancies.js'
|
|
import routerLots from './routes/lots.js'
|
|
import routerMaps from './routes/maps.js'
|
|
import routerPrint from './routes/print.js'
|
|
import routerReports from './routes/reports.js'
|
|
import routerWorkOrders from './routes/workOrders.js'
|
|
import { version } from './version.js'
|
|
|
|
const debug = Debug(`lot-occupancy-system:app:${process.pid}`)
|
|
|
|
/*
|
|
* INITIALIZE THE DATABASE
|
|
*/
|
|
|
|
initializeDatabase()
|
|
|
|
/*
|
|
* INITIALIZE APP
|
|
*/
|
|
|
|
const _dirname = '.'
|
|
|
|
export const app = express()
|
|
|
|
app.disable('X-Powered-By')
|
|
|
|
if (!configFunctions.getConfigProperty('reverseProxy.disableEtag')) {
|
|
app.set('etag', false)
|
|
}
|
|
|
|
// View engine setup
|
|
app.set('views', path.join(_dirname, 'views'))
|
|
app.set('view engine', 'ejs')
|
|
|
|
if (!configFunctions.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
|
|
})
|
|
)
|
|
|
|
/*
|
|
* Rate Limiter
|
|
*/
|
|
|
|
app.use(
|
|
rateLimit({
|
|
windowMs: 10_000,
|
|
max: useTestDatabases ? 1_000_000 : 200
|
|
})
|
|
)
|
|
|
|
/*
|
|
* STATIC ROUTES
|
|
*/
|
|
|
|
const urlPrefix = configFunctions.getConfigProperty('reverseProxy.urlPrefix')
|
|
|
|
if (urlPrefix !== '') {
|
|
debug(`urlPrefix = ${urlPrefix}`)
|
|
}
|
|
|
|
app.use(urlPrefix, express.static(path.join('public')))
|
|
|
|
app.use(
|
|
`${urlPrefix}/lib/bulma-calendar`,
|
|
express.static(path.join('node_modules', 'bulma-calendar', 'dist'))
|
|
)
|
|
|
|
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'))
|
|
)
|
|
|
|
app.use(
|
|
`${urlPrefix}/lib/leaflet`,
|
|
express.static(path.join('node_modules', 'leaflet', 'dist'))
|
|
)
|
|
|
|
app.use(
|
|
`${urlPrefix}/lib/randomcolor/randomColor.js`,
|
|
express.static(path.join('node_modules', 'randomcolor', 'randomColor.js'))
|
|
)
|
|
|
|
/*
|
|
* SESSION MANAGEMENT
|
|
*/
|
|
|
|
const sessionCookieName: string =
|
|
configFunctions.getConfigProperty('session.cookieName')
|
|
|
|
const FileStoreSession = FileStore(session)
|
|
|
|
// Initialize session
|
|
app.use(
|
|
session({
|
|
store: new FileStoreSession({
|
|
path: './data/sessions',
|
|
logFn: Debug(`lot-occupancy-system:session:${process.pid}`),
|
|
retries: 20
|
|
}),
|
|
name: sessionCookieName,
|
|
secret: configFunctions.getConfigProperty('session.secret'),
|
|
resave: true,
|
|
saveUninitialized: false,
|
|
rolling: true,
|
|
cookie: {
|
|
maxAge: configFunctions.getConfigProperty('session.maxAgeMillis'),
|
|
sameSite: 'strict'
|
|
}
|
|
})
|
|
)
|
|
|
|
// Clear cookie if no corresponding session
|
|
app.use((request, response, next) => {
|
|
if (
|
|
Object.hasOwn(request.cookies, sessionCookieName) &&
|
|
!Object.hasOwn(request.session, 'user')
|
|
) {
|
|
response.clearCookie(sessionCookieName)
|
|
}
|
|
|
|
next()
|
|
})
|
|
|
|
// Redirect logged in users
|
|
const sessionChecker = (
|
|
request: express.Request,
|
|
response: express.Response,
|
|
next: express.NextFunction
|
|
): void => {
|
|
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)}`
|
|
)
|
|
}
|
|
|
|
/*
|
|
* ROUTES
|
|
*/
|
|
|
|
// Make the user and config objects available to the templates
|
|
|
|
app.use((request, response, next) => {
|
|
response.locals.buildNumber = version
|
|
|
|
response.locals.user = request.session.user
|
|
response.locals.csrfToken = request.csrfToken()
|
|
|
|
response.locals.configFunctions = configFunctions
|
|
response.locals.printFunctions = printFunctions
|
|
response.locals.dateTimeFunctions = dateTimeFns
|
|
|
|
response.locals.urlPrefix = configFunctions.getConfigProperty(
|
|
'reverseProxy.urlPrefix'
|
|
)
|
|
|
|
next()
|
|
})
|
|
|
|
app.get(`${urlPrefix}/`, sessionChecker, (_request, response) => {
|
|
response.redirect(`${urlPrefix}/dashboard`)
|
|
})
|
|
|
|
app.use(`${urlPrefix}/dashboard`, sessionChecker, routerDashboard)
|
|
|
|
app.use(
|
|
`${urlPrefix}/api/:apiKey`,
|
|
permissionHandlers.apiGetHandler,
|
|
routerApi
|
|
)
|
|
|
|
app.use(`${urlPrefix}/print`, sessionChecker, routerPrint)
|
|
app.use(`${urlPrefix}/maps`, sessionChecker, routerMaps)
|
|
app.use(`${urlPrefix}/lots`, sessionChecker, routerLots)
|
|
app.use(`${urlPrefix}/lotOccupancies`, sessionChecker, routerLotOccupancies)
|
|
app.use(`${urlPrefix}/workOrders`, sessionChecker, routerWorkOrders)
|
|
|
|
app.use(`${urlPrefix}/reports`, sessionChecker, routerReports)
|
|
app.use(
|
|
`${urlPrefix}/admin`,
|
|
sessionChecker,
|
|
permissionHandlers.adminGetHandler,
|
|
routerAdmin
|
|
)
|
|
|
|
if (configFunctions.getConfigProperty('session.doKeepAlive')) {
|
|
app.all(`${urlPrefix}/keepAlive`, (_request, response) => {
|
|
response.json(true)
|
|
})
|
|
}
|
|
|
|
app.use(`${urlPrefix}/login`, 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`)
|
|
}
|
|
})
|
|
|
|
// Catch 404 and forward to error handler
|
|
app.use((request, _response, next) => {
|
|
debug(request.url)
|
|
next(createError(404, `File not found: ${request.url}`))
|
|
})
|
|
|
|
export default app
|