-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
175 lines (152 loc) · 5.22 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
const path = require('path');
const express = require('express');
const compression = require('compression');
const morgan = require('morgan');
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 cors = require('cors');
const AppError = require('./utils/appError');
const globalErrorhandler = require('./controllers/errorControllers');
const tourRouter = require('./routes/tourRoutes');
const userRouter = require('./routes/userRoutes');
const reviewRouter = require('./routes/reviewRoutes');
const bookingRouter = require('./routes/bookingRoutes');
const viewRouter = require('./routes/viewRoutes');
const app = express();
app.enable('trust proxy');
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'pug');
// 1) GLOBAL MIDDLEWARES
// Implement CORS
app.use(cors());
// Access-Controller-Allow-Origin
// Only allow specific origin to consume API
// app.use(cors({
// origin: 'https://www.natours.com'
// }))
// When a non-simple request is used (delete, patch...),the browser will then automatically send
// the preflight phase (options request) in order to figure out if the actual request is safe to
// send. So when we get one of these options requests on our server, we then need to send back
// the same Access-Control-Allow-Origin header.
app.options('*', cors());
// app.use('api/v1/tours/:id', cors())
// Serving static files
app.use(express.static(path.join(__dirname, 'public')));
// Set security HTTP headers
// Further HELMET configuration for Security Policy (CSP)
const scriptSrcUrls = [
'https://api.tiles.mapbox.com/',
'https://api.mapbox.com/',
'https://*.cloudflare.com',
'https://js.braintreegateway.com/',
'https://code.jquery.com/',
// 'https://js.stripe.com/v3/',
// 'https://checkout.stripe.com',
];
const styleSrcUrls = [
'https://api.mapbox.com/',
'https://api.tiles.mapbox.com/',
'https://fonts.googleapis.com/',
'https://www.myfonts.com/fonts/radomir-tinkov/gilroy/*',
'https://assets.braintreegateway.com/',
// ' checkout.stripe.com',
];
const connectSrcUrls = [
'https://*.mapbox.com/',
'https://*.cloudflare.com',
'https://payments.sandbox.braintree-api.com/',
'https://api.sandbox.braintreegateway.com/',
'https://origin-analytics-sand.sandbox.braintree-api.com/',
// 'http://127.0.0.1:8000',
// 'http://127.0.0.1:52191',
// '*.stripe.com',
];
const fontSrcUrls = ['fonts.googleapis.com', 'fonts.gstatic.com'];
app.use(
helmet.contentSecurityPolicy({
directives: {
defaultSrc: ["'self'"],
connectSrc: ["'self'", ...connectSrcUrls],
scriptSrc: ["'self'", "'unsafe-inline'", ...scriptSrcUrls],
workerSrc: ["'self'", 'blob:'],
styleSrc: ["'self'", "'unsafe-inline'", ...styleSrcUrls],
// objectSrc: [],
imgSrc: ["'self'", 'blob:', 'data:'],
fontSrc: ["'self'", ...fontSrcUrls],
frameSrc: ['https://assets.braintreegateway.com/'],
},
})
);
// development logging
if (process.env.NODE_ENV === 'development') {
app.use(morgan('dev'));
}
// Limit requests from same API
const limiter = rateLimit({
// 100 request per hour
max: 100,
windowMs: 60 * 60 * 1000,
message: 'Too many requests from this IP, please try again hour!',
});
app.use('/api', limiter);
// Body parser, reading data from body into req.body
// limit: restrict body size
app.use(express.json({ limit: '10kb' }));
app.use(express.urlencoded({ extended: true, limit: '10kb' }));
app.use(cookieParser());
// Data sanitization against NoSQL query injection
// Look at the request body, the request query string,
// and also at Request.Params, and then it will basically filter out
// all of the dollar signs and dots,
app.use(mongoSanitize());
// Data sanitization against XSS
// prevent that basically by converting all these HTML symbols.
app.use(xss());
// Prevent parameter pollution
// white list is simply an array of properties
// for which we actually allow duplicates in the query string.
app.use(
hpp({
whitelist: [
'duration',
'ratingQuanity',
'ratingsAverage',
'maxGroupSize',
'difficulty',
'price',
],
})
);
app.use(compression());
// Test middleware
app.use((req, res, next) => {
req.requestTime = new Date().toISOString();
// console.log(req.cookies)
next();
});
// 3) Mounting ROUTES
// mounting the router
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 other routes
app.all('*', (req, res, next) => {
// if the next function receives an argument, no matter what it is,
// Express will automatically know that there was an error
// then skip all the other middlewares in the middleware
// stack and sent the error that we passed in
// to our global error handling middleware,
next(new AppError(`Can't find ${req.originalUrl} on this server!`, 404));
});
// when there is an error happened in express, it
// will automatically go to the error-handling middleware
// with that error
// error handling middleware
app.use(globalErrorhandler);
module.exports = app;