This repository has been archived by the owner on Jun 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.ts
118 lines (96 loc) · 2.89 KB
/
app.ts
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
import createError from 'http-errors'
import express, { NextFunction, Request, Response } from 'express'
import path from 'path'
import cookieParser from 'cookie-parser'
import logger from 'morgan'
import session from 'express-session'
import MongoDBSession from 'connect-mongodb-session'
import helmet from 'helmet'
import fileUpload from 'express-fileupload'
import Mongo from './modules/mongo'
import indexRouter from './routes/index'
import botsRouter from './routes/bots'
import discordRouter from './routes/discord'
import oauth from './routes/oauth2'
import user from './routes/user'
import staff from './routes/staff'
import config from './config.json'
import tag from './routes/tag'
import Api from './modules/api'
const MongoSession = MongoDBSession(session)
const storesession = new MongoSession({
uri: config.database.mongo.url,
collection: 'usersession'
})
const app = express()
const db = new Mongo(config)
const base = process.cwd()
// view engine setup
app.set('views', path.join(base, 'views'))
app.set('view engine', 'pug')
app.use(logger('dev'))
app.use(helmet({
contentSecurityPolicy: {
directives: {
...helmet.contentSecurityPolicy.getDefaultDirectives(),
'child-src': ["'self'", 'https:'],
'img-src': ["'self'", 'https:', 'http:', 'data:'],
'script-src': ["'self'", 'https://hcaptcha.com', 'https://*.hcaptcha.com'],
'style-src': ["'self'", "'unsafe-inline'", 'https://hcaptcha.com', 'https://*.hcaptcha.com'],
'frame-src': ['https://hcaptcha.com', 'https://*.hcaptcha.com'],
'connect-src': ["'self'", 'https://hcaptcha.com', 'https://*.hcaptcha.com']
}
},
hsts: {
maxAge: 15552000,
includeSubDomains: true,
preload: true
}
}))
app.use(express.json())
app.use(express.urlencoded({ extended: false }))
app.use(cookieParser())
app.use(express.static(path.join(base, 'static')))
app.use(session({
secret: config.server.session.secret,
resave: true,
saveUninitialized: false,
store: storesession,
cookie: {
maxAge: 604800000
}
}))
app.use(fileUpload())
/*
app.use(cookiesession({
maxAge: 604800000,
secret: config.server.session.secret,
name: "session",
secure: false
}));
*/
const api = new Api()
app.use('/', indexRouter(db, api))
app.use('/bots', botsRouter(config, db, api))
app.use('/discord', discordRouter(config))
app.use('/oauth2', oauth(config, db, api))
app.use('/user', user(db, api))
app.use('/tag', tag(db))
app.use('/staff', staff(config, db))
// catch 404 and forward to error handler
app.use((req, res, next) => {
next(createError(404))
})
// error handler
app.use((err: any, req: Request, res: Response, _next: NextFunction) => {
// set locals, only providing error in development
res.locals.message = err.message
res.locals.error = req.app.get('env') === 'development' ? err : {}
// render the error page
res.status(err.status ?? 500)
res.render('error')
})
export default {
app,
config
}