-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
133 lines (118 loc) · 3.47 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
const path = require('path');
const express = require('express');
const morgan = require('morgan');
const rateLimit = require('express-rate-limit');
const helmet = require('helmet');
const mongoSanitize = require('express-mongo-sanitize');
const xss = require('xss-clean');
const hpp = require('hpp');
const cookieParser = require('cookie-parser');
const compression = require('compression');
const cors = require('cors');
const AppError = require('./utils/AppError');
const globalErrorHandler = require('./controllers/error.controller');
const tourRouter = require('./routes/tours.route');
const userRouter = require('./routes/users.route');
const reviewsRouter = require('./routes/reviews.route');
const viewRouter = require('./routes/views.route');
const bookingRouter = require('./routes/bookings.route');
const bookingController = require('./controllers/bookings.controller');
const app = express();
app.enable('trust proxy');
app.set('view engine', 'pug');
app.set('views', path.join(__dirname, 'views'));
app.options('*', cors());
// MIDDLEWARES
app.use(
helmet({
contentSecurityPolicy: {
directives: {
defaultSrc: ["'self'", 'data:', 'blob:', 'https:', 'ws:'],
baseUri: ["'self'"],
fontSrc: ["'self'", 'https:', 'data:'],
scriptSrc: [
"'self'",
'https:',
'http:',
'blob:',
'https://*.mapbox.com',
'https://js.stripe.com',
'https://m.stripe.network',
'https://*.cloudflare.com',
],
frameSrc: ["'self'", 'https://js.stripe.com'],
objectSrc: ["'none'"],
styleSrc: ["'self'", 'https:', "'unsafe-inline'"],
workerSrc: [
"'self'",
'data:',
'blob:',
'https://*.tiles.mapbox.com',
'https://api.mapbox.com',
'https://events.mapbox.com',
'https://m.stripe.network',
],
childSrc: ["'self'", 'blob:'],
imgSrc: ["'self'", 'data:', 'blob:'],
formAction: ["'self'"],
connectSrc: [
"'self'",
"'unsafe-inline'",
'data:',
'blob:',
'https://*.stripe.com',
'https://*.mapbox.com',
'https://*.cloudflare.com/',
'https://bundle.js:*',
'ws://127.0.0.1:*/',
],
upgradeInsecureRequests: [],
},
},
})
);
app.use(cors());
app.use(express.static(path.join(__dirname, 'public')));
if (process.env.NODE_ENV === 'development') {
app.use(morgan('dev'));
}
const limiter = rateLimit({
max: 100,
windowMs: 60 * 60 * 1000,
message: 'To many request from this IP, please try again in an hour.',
});
app.use('/api', limiter);
app.post(
'/webhook-checkout',
express.raw({ type: 'application/json' }),
bookingController.webhookCheckout
);
app.use(express.json({ limit: '10kb' }));
app.use(express.urlencoded({ extended: true, limit: '10kb' }));
app.use(cookieParser());
app.use(mongoSanitize());
app.use(xss());
app.use(
hpp({
whitelist: [
'duration',
'ratingsQuantity',
'ratingsAverage',
'maxGroupSize',
'difficulty',
'price',
],
})
);
app.use(compression());
// ROUTES
app.use('/', viewRouter);
app.use('/api/v1/tours', tourRouter);
app.use('/api/v1/users', userRouter);
app.use('/api/v1/reviews', reviewsRouter);
app.use('/api/v1/bookings', bookingRouter);
app.all('*', (req, _, next) =>
next(new AppError(`Can't find ${req.originalUrl} on this server!`, 404))
);
app.use(globalErrorHandler);
module.exports = app;