-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
122 lines (100 loc) · 3.51 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
const pug = require('pug');
const path = require('path');
const express = require('express');
const app = express();
const AppError = require('./utils/AppError.js');
const compression = require('compression');
const cors = require('cors');
const globalErrorHandler = require('./controllers/errorController');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
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 morgan = require('morgan');
//morgan(3rd party middleware) is used to get logging info.
const viewsRouter = require('./routes/viewsRoutes');
const tourRouter = require('./routes/tourRoutes');
const userRouter = require('./routes/userRoutes');
const reviewRouter = require('./routes/reviewRoutes');
const bookingRouter = require('./routes/bookingRoutes');
const bookingController = require('./controllers/bookingController');
app.enable('trust proxy');
app.set('view engine', 'pug');
app.set('views', path.join(__dirname, 'views'));
//'views' stands for 'View Settings'
//GLOBAL MIDDLEWARE
//For handling simple CORS(Cross Origin Resource Sharing) requests.
app.use(cors());
//Access-Control-Allow-Origin *
//For handling non-simple CORS requests.
app.options('*', cors());
//Non-simple requests would be valid only for the specified route.
//app.options('/api/v1/tours/:id', cors());
//Serving static files - Importing static files of the project.
app.use(express.static(path.join(__dirname, 'public')));
//Set security HTTP headers
app.use(helmet());
//Development logging
if (process.env.NODE_ENV == 'development') {
app.use(morgan('dev'));
}
//limit requests from same API
const limiter = new rateLimit({
max: 100,
windowsMs: 60 * 60 * 1000,
message: 'Too many requests from this IP. Please try again later in an hour!',
});
app.use('/api', limiter);
// Stripe webhook, BEFORE body-parser, because stripe needs the body as stream
app.post(
'/webhook-checkout',
express.raw({ type: 'application/json' }),
bookingController.webhookCheckout
);
//Body parser, reading data from body into req.body
//Limits the incoming data to body to 10kb
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 against XSS
app.use(xss());
//Prevent Parameter Pollution
app.use(
hpp({
whitelist: [
'duration',
'ratingsAverage',
'price',
'difficulty',
'maxGroupSize',
],
})
);
app.use(compression());
//Test middleware
app.use((req, res, next) => {
req.requestTime = new Date().toISOString();
next();
});
//app.use(morgan('tiny'));
//Here we refactor our code to improve readability of our code.
//We group together the HTTP methods that have same URL.
app.use('/', viewsRouter);
app.use('/api/v1/tours', tourRouter);
app.use('/api/v1/users', userRouter);
app.use('/api/v1/reviews', reviewRouter);
app.use('/api/v1/bookings', bookingRouter);
app.all('*', (req, res, next) => {
next(new AppError(`Can't find ${req.originalUrl} on the server!`, 404));
});
//Global error handling middleware - It handles all the errors
//that are generated using next() in any of the routes above.
//Note here that this is the last statement to handle every error
//that is generated in any of the above statements.
app.use(globalErrorHandler);
module.exports = app;