-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
101 lines (86 loc) · 3.26 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
const express = require('express');
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 tourRouter = require('./routes/tourRoutes');
const path = require('path');
const userRouter = require('./routes/userRoutes');
const reviewRouter = require('./routes/reviewRoutes');
const bookingRouter = require('./routes/bookingRoutes');
const bookingController = require('./controllers/bookingController');
const viewRouter = require('./routes/viewRoutes');
const globalErrorHandler = require('./controllers/errorController');
const AppError = require('./utils/appError');
const compression = require('compression');
const cors = require('cors');
const app = express();
app.enable('trust proxy');
// setting the view engie as pug
app.set('view engine', 'pug');
// setting the views directory // pug templates are called views in express
app.set('views', path.join(__dirname, 'views'));
//Global Middlewares
// implement cors
app.use(cors())
// Content Security Policy
app.use((req, res, next) => {
// res.setHeader("Content-Security-Policy", "default-src *; script-src *; style-src *; img-src *");
next()
})
app.options('*', cors())
// Serving the static files
app.use(express.static(path.join(__dirname, 'public')));
// set Security HTTP headers
app.use(helmet({
contentSecurityPolicy: false,
}));
// rate limiter function to limit the no. of requests per hour from an IP
const limiter = rateLimit({
max: 100,
windowMs: 60 * 60 * 1000, // after maxing out all the requests next request will be allowed after this time period
message: 'Too many requests from this IP. Please try again in an hour.'
});
// Using limiter func on all routes '/api'
app.use('/api', limiter);
app.post('/webhook-checkout', express.raw({
type: 'application/json'
}), bookingController.webhookCheckout)
// Body parser, reads data from the body into req.body
// here { limit : '10kb'} means if the req data is more than 10kb then it won't be accepted
app.use(express.json({ limit: '10kb' }));
app.use(express.urlencoded({ extended: true, limit: '10kb' }));
app.use(cookieParser());
// Data Sanitization against NoSql query injection
app.use(mongoSanitize());
// Data Sanitization xss
app.use(xss());
// Prevents parameter pollution
app.use(hpp({
whitelist: [
'duration',
'ratingsAverage',
'ratingsQuantity',
'maxGroupSize',
'price',
'difficulty'
]
}));
app.use(compression());
// Users Route
app.use('/', viewRouter);
app.use('/api/v1/tours', tourRouter);
app.use('/api/v1/users', userRouter);
app.use('/api/v1/reviews', reviewRouter);
app.use('/api/v1/bookings', bookingRouter);
// Handling Unhandled Routes
app.all('*', (req, res, next) => {
// If a argument is passed to next() function then all the upcoming middlewares in the
// middleware stack are skipped and middleware with global error handler is executed
next(new AppError(`Cannot get anything for ${req.originalUrl} from the server!`, 404));
});
// Handler function with four parameters are automatically deemed to be Global Error Handler by express
app.use(globalErrorHandler);
module.exports = app;