-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
122 lines (101 loc) · 3.2 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
const express = require('express');
const toursRouter = require('./routes/tourRoutes');
const usersRouter = require('./routes/userRoutes');
const reviewRouter = require('./routes/reviewRoutes');
const bookingRouter = require('./routes/bookingRoutes');
const bookingController = require('./controllers/bookingController');
const viewRouter = require('./routes/viewRoutes');
const gobalErrorHandler = require('./controllers/errorController');
const AppError = require('./utils/appError');
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 path = require('path');
const morgan = require('morgan');
const cookieParser = require('cookie-parser');
const compression = require('compression');
const cors = require('cors');
const app = express();
//settup view engine
app.set('view engine', 'pug');
app.set('views', path.join(__dirname, 'views'));
//global middleware to serve static files.
app.use(express.static(path.join(__dirname, 'public')));
//http headers with helmet
app.use(helmet());
app.use(
helmet.contentSecurityPolicy({
directives: {
defaultSrc: ["'self'", 'https:', 'http:','data:', 'ws:'],
baseUri: ["'self'"],
fontSrc: ["'self'", 'https:','http:', 'data:'],
scriptSrc: [
"'self'",
'https:',
'http:',
'blob:'],
styleSrc: ["'self'", 'https:', 'http:','unsafe-inline']
}
})
);
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, Try again later"
})
//global middleware
//rate limiter
app.use('/api',limiter);
//implementing CORS for all routes
app.use(cors());
// CORS for special requests.
app.options('*',cors());
app.post('/webhook-checkout',express.raw({type: 'application/json'}), bookingController.webhookCheckout)
// req data limit
app.use(express.json({limit: '10kb'}));
app.use(express.urlencoded({
limit:'10kb',
extended: true
}));
app.use(cookieParser());
// prduction middleware for optimization.
app.use(compression());
//test middleware
app.use((req,res,next)=>{
req.time = new Date().toISOString();
next();
});
//mongo data sanitization.. removes $ and dot. to prevent NOSQL injection.
app.use(mongoSanitize());
// xss prevention with xss-clean prevents html injection.
app.use(xss());
// parameter pollution prevention with hpp.. except the ones in the whitelist the requests wont admit duplicated fields.
app.use(hpp({
whitelist:[
'duration',
'ratingsQuantity',
'ratingsAverage',
'maxGroupSize',
'difficulty',
'price'
]
}));
app.enable('trust proxy');
// rendering basee template in root route.
app.use('/', viewRouter);
//specific middleware
app.use('/api/v1/tours/', toursRouter);
app.use('/api/v1/users/', usersRouter);
app.use('/api/v1/bookings/', bookingRouter);
app.use('/api/v1/reviews/', reviewRouter);
app.all('*',(req,res,next)=>{
next(new AppError(`Can't find ${req.originalUrl} in this server`, 404))
})
///global Error handler middleware
app.use(gobalErrorHandler);
module.exports = app;