-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
64 lines (49 loc) · 1.58 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
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 AppError = require('./utils/appError');
const tourRouter = require('./routes/tourRoutes');
const userRouter = require('./routes/userRoutes');
const globalErrorHandler = require('./controllers/errorController');
const app = express();
// GLOBAL MIDDLEWARES
// Security headers
app.use(helmet());
if (process.env.NODE_ENV === 'development') app.use(morgan('dev'));
// Limit http calls
const limiter = rateLimit({
max: 100,
windowMs: 60 * 60 * 1000,
message: 'Too many requests from this IP'
});
app.use('/api', limiter);
// Body parser
app.use(express.json({ limit: '10kb' }));
// Data sanitization against NoSQL injection
app.use(mongoSanitize());
// Data sanitization for XSS
app.use(xss());
// Prevent parameter pollution
// Have to whitelist params that can be passed multiple times
app.use(hpp({
whitelist: ['duration', 'ratingsQuantity', 'ratingsAverage', 'maxGroupSize', 'difficulty', 'price']
}));
// Serving static files
app.use(express.static(`${__dirname}/public`));
// Test middleware
app.use((req, _, next) => {
req.requestTime = new Date().toISOString();
next();
})
// ROUTES
app.use('/api/v1/tours', tourRouter);
app.use('/api/v1/users', userRouter);
app.all('*', (req, res, next) => {
next(new AppError(`Unable to find ${req.originalUrl}`));
});
app.use(globalErrorHandler);
module.exports = app;