-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
103 lines (62 loc) · 2.45 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
// Importing
const express = require('express');
const path = require('path');
const morgan = require('morgan');
const rateLimit = require('express-rate-limit');
const mongoSanitize = require('express-mongo-sanitize');
const xss = require('xss-clean');
const hpp = require('hpp');
const compression = require('compression')
const cookieParser = require('cookie-parser');
const cors = require('cors');
// Importing AppError class
const AppError = require (path.join(__dirname ,'/utils/appError.js'));
const globalErrorHandler = require(path.join(__dirname ,'/Controllers/errorController.js'))
const tourRouter = require(path.join(__dirname , '/routes/tourRoutes'));
const userRouter = require(path.join(__dirname , '/routes/userRoutes'));
const viewRouter = require(path.join(__dirname , '/routes/viewRoutes'));
const bookingRouter = require(path.join(__dirname , '/routes/bookingRoutes'));
const app = express();
app.set ('view engine' , 'pug');
app.set ('views' , path.join(__dirname , 'views'));
// ################ Middlewares ################
// -------- Global Middlewares --------
// Implement CORS
app.use(cors());
app.options('*', cors());
app.use(compression());
// Serving static files
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: 'Too many requests from this IP, please try again in an hour.'
});
app.use('/api' , limiter);
// ------------- Body Parser ----------
app.use(express.json({ limit : '10kb'}));
app.use (express.urlencoded({ extended: true , limit: '10kb'}));
app.use(cookieParser());
// Against NOSql query injection
app.use(mongoSanitize());
// this will clean any user input from malicious HTML code
app.use(xss());
// ----> Preventing Parameter Pollution
// Allowing duplicates in query string
app.use(hpp( {
whitelist: ['duration' , 'ratingsQuantity' , 'ratingsAverage' , 'maxGroupSize' , 'difficulty' , 'price']
}))
app.use('/' , viewRouter);
app.use('/api/v1/tours' , tourRouter);
app.use('/api/v1/users', userRouter);
app.use('/api/v1/bookings', bookingRouter);
// All the URL that gonna not handled before , will be handled here.
app.all('*' , (req , res , next) => {
next(new AppError (`Can't find ${req.originalUrl} on this server` , 404));
})
// ----> Global Error Handling Middleware
app.use(globalErrorHandler);
module.exports = app;