-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
71 lines (57 loc) · 1.86 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
const express = require('express');
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 path = require('path');
const globalErrorHandler = require('./controllers/errorController');
const AppError = require('./utils/AppError');
// Get all routes
const paletteRouter = require('./routes/paletteRoutes');
const userRouter = require('./routes/userRoutes');
const app = express();
// Morgan for logging
if (process.env.NODE_ENV === 'development') {
app.use(morgan('dev'));
}
// Rate limiting
const limiter = rateLimit({
max: 100, // maximum requests
windowMs: 60 * 60 * 1000, // in how many hours?
message: 'Too many requests from this IP. Please try again in an hour'
});
// Only limiting our api
// app.use('/api', limiter);
// Set secure http headers on api
app.use(helmet());
// body parser with data limit
app.use(
express.json({
limit: '10kb'
})
);
// Data sanitization against NoSql query injection
// will look at request body, params and query string and filter out all of the dollar signs and dots
app.use(mongoSanitize());
// Data sanitization against cross site scripting attacks
app.use(xss());
// parameter pollution prevent
app.use(hpp());
app.use('/api/v1/palettes', paletteRouter);
app.use('/api/v1/users', userRouter);
// Add front end static handler
if (process.env.NODE_ENV === 'production') {
// Set static folder
app.use(express.static('client/build'));
app.get('/', (req, res) => {
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'));
});
}
// Handle unhandled routes
app.use('*', (req, res, next) => {
next(new AppError(`Can't find ${req.originalUrl} on this server!`, 404));
});
app.use(globalErrorHandler);
module.exports = app;