-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
160 lines (129 loc) · 4.02 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
const express = require('express');
const morgan = require('morgan');
const path = require('path');
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 userRouter = require('./routes/userRoutes');
const reviewRouter = require('./routes/reviewRoutes');
const viewRouter = require('./routes/viewRoutes');
const bookingRouter = require('./routes/tourBookingRoutes');
const AppError = require('./utils/appError');
const errorHandler = require('./controllers/errorController');
const app = express();
// set template engine
app.set('view engine', 'pug');
app.set('views', path.join(__dirname, 'views'));
// display node env
console.log(process.env.NODE_ENV);
/* GLOBAL MIDDLEWAIRES */
// set security HTTP headers
app.use(helmet());
/* helmet.contentSecurityPolicy({
directives: {
defaultSrc: ["'self'", 'https:', 'http:', 'data:', 'ws:'],
baseUri: ["'self'"],
fontSrc: ["'self'", 'https:', 'http:', 'data:'],
scriptSrc: ["'self'", 'https:', 'http:', 'blob:'],
styleSrc: ["'self'", "'unsafe-inline'", 'https:', 'http:'],
},
})
); */
// development logging
if (process.env.NODE_ENV === 'development') {
app.use(morgan('dev'));
}
// rate limiter middleware: 1000 requests per hr
const limiter = rateLimit({
max: 1000,
windowMs: 60 * 60 * 1000,
message: 'Too many request from this IP, please try again in an hour!',
});
// set limiter in api route
app.use('/api', limiter);
// express body parser to read req.body from req obj
app.use(express.json({ limit: '10kb' }));
app.use(express.urlencoded({ extended: true, limit: '10kb' }));
app.use(cookieParser());
// data sanitization aginst NoSQL query injection
app.use(mongoSanitize());
// data sanitization against XSS attack
app.use(xss());
// prevent parameter pollution
app.use(
hpp({
whitelist: [
'duration',
'ratingsAverage',
'ratingsQuantity',
'maxGroupSize',
'difficulty',
'price',
],
})
);
// serve static files for the specified path
app.use(express.static(path.join(__dirname, 'public')));
/* // create global middleware function
app.use((req, res, next) => {
console.log('Global middleware in execution.');
next();
}); */
// custom middleware to log request time of request object
app.use((req, res, next) => {
req.requestTime = new Date().toISOString();
console.log(req.headers);
console.log(req.cookies);
next();
});
/* app.get('/', (req, res) => {
res.status(200).json({
message: 'Hello from the server side!',
app: 'Natours',
});
});
app.post('/', (req, res) => {
res.send('You can post to this endpoint...');
}); */
// 2) route handlers
/* // end point to get all tours
app.get('/api/v1/tours', getAllTours);
// end point to get a single tours by providing id
app.get('/api/v1/tours/:id', getTour);
// end point to post new tour
app.post('/api/v1/tours', createTour);
// end point to update a tour
app.patch('/api/v1/tours/:id', updateTour);
// end point to delete a tour
app.delete('/api/v1/tours/:id', deleteTour); */
// 3) routes
// connect app to express router middleware
// mount middlewares to the routes
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);
// handle undefined route
app.all('*', (req, res, next) => {
/* res.status(404).json({
status: 'fail',
message: `The route ${req.originalUrl} is not found.`,
}); */
/* const err = new Error(`The route ${req.originalUrl} is not found.`);
err.status = 'fail';
err.statusCode = 404; */
// pass arg into next to let express know error
const opError = new AppError(
`The route ${req.originalUrl} is not found.`,
404
);
next(opError);
});
// global error handling middleware
app.use(errorHandler);
module.exports = app;