-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
189 lines (164 loc) · 5.12 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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
const fs = require('fs');
const path = require('path');
const express = require('express');
const morgan = require('morgan');
const appError = require('./utils/appError');
const tourRouter = require('./routes/tourRouter');
const userRouter = require('./routes/userRouter');
const reviewRouter = require('./routes/reviewRouter');
const globalErrorHandler = require('./Controllers/errorController');
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 viewRouter = require('./routes/viewRouter');
const cookieParser = require('cookie-parser');
const cors = require('cors');
const app = express();
app.set('view engine', 'pug');
app.set('views', path.join(__dirname, 'views'));
//1) Global Middleware
//serving static files
app.use(express.static(`${__dirname}/public`));
//set security HTTP headers
const scriptSrcUrls = [
'https://unpkg.com/',
'https://tile.openstreetmap.org',
'https://cdnjs.cloudflare.com/ajax/libs/axios/1.7.2/axios.min.js', // Add this line
];
const styleSrcUrls = [
'https://unpkg.com/',
'https://tile.openstreetmap.org',
'https://fonts.googleapis.com/',
];
const connectSrcUrls = [
'https://unpkg.com',
'https://tile.openstreetmap.org',
'ws://localhost:1234/',
'ws://localhost:3000/',
'ws://localhost:55708/',
'https://127.0.0.1:3000/',
'http://127.0.0.1:3000/', // Add this line for HTTP requests
];
app.use(cors());
const fontSrcUrls = ['fonts.googleapis.com', 'fonts.gstatic.com'];
app.use(
helmet.contentSecurityPolicy({
directives: {
defaultSrc: [],
connectSrc: ["'self'", ...connectSrcUrls],
scriptSrc: ["'self'", ...scriptSrcUrls],
styleSrc: ["'self'", "'unsafe-inline'", ...styleSrcUrls],
workerSrc: ["'self'", 'blob:'],
objectSrc: [],
imgSrc: ["'self'", 'blob:', 'data:', 'https:'],
fontSrc: ["'self'", ...fontSrcUrls],
},
})
);
//app.use(helmet.ContentSecurityPolicy());
// app.use(
// helmet.contentSecurityPolicy({
// directives: {
// defaultSrc: ["'self'"],
// baseUri: ["'self'"],
// fontSrc: ["'self'", 'https:', 'data:'],
// scriptSrc: ["'self'", 'https://cdnjs.cloudflare.com/ajax/libs/axios/0.20.0/axios.min.js'],
// objectSrc: ["'none'"],
// styleSrc: ["'self'", 'https:', 'unsafe-inline'],
// upgradeInsecureRequests: [],
// },
// })
// );
// const CSP = 'Content-Security-Policy';
// const POLICY =
// "default-src 'self' https://*.mapbox.com ;" +
// "base-uri 'self';block-all-mixed-content;" +
// "font-src 'self' https: data:;" +
// "frame-ancestors 'self';" +
// "img-src http://localhost:8000 'self' blob: data:;" +
// "object-src 'none';" +
// "script-src https: cdn.jsdelivr.net cdnjs.cloudflare.com api.mapbox.com 'self' blob: ;" +
// "script-src-attr 'none';" +
// "style-src 'self' https: 'unsafe-inline';" +
// 'upgrade-insecure-requests;';
// const router = express.Router();
// router.use((req, res, next) => {
// res.setHeader(CSP, POLICY);
// next();
// });
// development logging
if (process.env.NODE_ENV === 'development') {
app.use(morgan('dev'));
}
//limit request from same ip address
const limiter = rateLimit({
windowMs: 60 * 60 * 1000, // 1 hour
max: 100, // limit each IP to 100 requests per windowMs
message: 'Too many requests from this IP, please try again in an hour!',
});
app.use('/api', limiter);
// body parser, reading body data into req.body
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',
'ratingsQuantity',
'maxGroupSize',
'difficulty',
'price',
],
})
);
// test middlewares
app.use((req, res, next) => {
req.requestTime = new Date().toISOString();
// console.log(req.cookies);
next();
});
// app.get('/', (req, res) => {
// res
// .status(200)
// .json({ message: "Hello from the server side", app: 'suryansh' });
// });
// app.post('/', (req, res) => {
// res.send("you can send this to endpoint......");
// })
//app.get('/api/v1/tours',getAllTours);
// app.get('/api/v1/tours/:id', getTourbyId);
// app.patch('/api/v1/tours/:id', updateTour);
// app.delete('/api/v1/tours/:id', deleteTour);
//app.post('/api/v1/tours',createTour);
// 2) routes
//allow map box
app.use('/', viewRouter);
app.use('/api/v1/tours', tourRouter);
app.use('/api/v1/users', userRouter);
app.use('/api/v1/reviews', reviewRouter);
app.all('*', (req, res, next) => {
// res.status(404).json({
// status:'fail',
// message:`Can't find ${req.originalUrl} on this server!`
// });
// next();
// const err=new Error(`Can't find ${req.originalUrl} on this server!`);
// err.statusCode=404;
// err.status='fail';
// next(err);
next(new appError(`Can't find ${req.originalUrl} on this server!`, 404));
});
app.use(globalErrorHandler);
module.exports = app;