-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
78 lines (63 loc) · 1.93 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
import express from 'express';
import morgan from 'morgan';
import path from 'path';
import rateLimit from 'express-rate-limit';
import helmet from 'helmet';
import mongoSanitze from 'express-mongo-sanitize';
import xss from 'xss-clean';
import hpp from 'hpp';
import cors from 'cors';
import cookieParser from 'cookie-parser';
import AppError from './utils/appError.js';
import globalErrorHandler from './controllers/errorController.js';
import userRouter from './routes/userRoutes.js';
import urlRouter from './routes/urlRoutes.js';
import viewRouter from './routes/viewRoutes.js';
const app = express();
app.set('trust proxy', 2);
// 1) MIDDLEWARES
app.use(cors());
app.options('*', cors());
const __dirname = path.resolve();
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, 'views'));
app.use(express.static(path.join(__dirname, 'public')));
app.use(cookieParser());
app.use(express.urlencoded({ extended: true, limit: '10kb' }));
// Set security HTTP headers
app.use(helmet({ contentSecurityPolicy: false }));
if (process.env.NODE_ENV === 'development') {
app.use(morgan('dev'));
}
//limit request from user
const limiter = rateLimit({
max: 100,
windowMs: 60 * 60 * 1000,
message: 'Too many requests from this IP, please try again in an hour!',
});
app.use('/api', limiter);
//data sanitization against NoSQL query injection
app.use(mongoSanitze());
//data sanitization against XSS
app.use(xss());
// //prevent parameter pollution
// app.use(
// hpp({
// whitelist: [
// ],
// })
// );
//read data from body into req.body
app.use(express.json({ limit: '10kb' }));
app.use((req, res, next) => {
req.requestTime = new Date().toISOString();
next();
});
app.use('/', viewRouter);
app.use('/api/v1/users', userRouter);
app.use('/api/v1/urls', urlRouter);
app.all('*', (req, res, next) => {
next(new AppError(`Can't find ${req.originalUrl} on this server!`, 404));
});
app.use(globalErrorHandler);
export default app;