-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
115 lines (97 loc) · 3.35 KB
/
app.js
File metadata and controls
115 lines (97 loc) · 3.35 KB
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
import path from 'path';
import express from 'express';
import morgan from 'morgan';
import rateLimit from 'express-rate-limit';
import helmet from 'helmet';
import mongoSanitize from 'express-mongo-sanitize';
import xss from 'xss-clean';
import hpp from 'hpp';
import cookieParser from 'cookie-parser';
import cors from 'cors';
import AppError from './utils/appError.js';
// import globalErrorHandler from './controllers/errorController';
// import shipmentRouter from './routes/shipmentRoutes';
import userRouter from './routes/userRoutes.js';
import fileRouter from './routes/fileRoutes.js';
import materialRouter from './routes/materialRoutes.js';
import machineRouter from './routes/machineRoutes.js';
import cutOptionsRouter from './routes/cutOptionsRoutes.js';
import priceRouter from './routes/priceRoutes.js';
import jobRouter from './routes/jobRoutes.js';
// import viewRouter from './routes/viewRoutes';
// import customerRouter from './routes/customerRoutes';
// Start express app
const app = express();
// GLOBAL MIDDLEWARES
// Set security HTTP headers
app.use(helmet.contentSecurityPolicy({
directives: {
defaultSrc: ['\'self\''],
scriptSrc: ['\'self\'', "'unsafe-inline'", "'unsafe-eval'", 'cdnjs.cloudflare.com', 'code.jquery.com', 'cdn.datatables.net'],
},
}));
// Development logging
if (process.env.NODE_ENV === 'development') {
app.use(morgan('dev'));
}
// Limit requests from same IP
const limiter = rateLimit({
max: 1000000, //ToDO set to 100
windowMs: 60 * 60 * 1000,
message: 'Too many requests from this IP, please try again in an hour!',
});
app.use('/api', limiter);
// Body parser, reading data from body into req.body
app.use(express.json({ limit: '10kb' }));
app.use(cookieParser());
// Data sanitization against NoSQL query injection
// ToDo finalize options
app.use(mongoSanitize({
whitelist: [
'customer', 'amount',
],
}));
// Data sanitization against XSS
app.use(xss());
// Prevent parameter pollution
app.use(hpp());
// Serving static files
const __dirname = path.dirname(new URL(import.meta.url).pathname);
app.use(express.static(path.join(__dirname, 'public')));
// Test middleware
app.use((req, res, next) => {
req.requestTime = new Date().toISOString();
// console.log(req.cookies);
next();
});
// ROUTES
app.use(cors({
origin: 'http://localhost:8080',
credentials: true,
methods: "GET,HEAD,PUT,PATCH,POST,DELETE",
allowedHeaders: ['Content-Type', 'Authorization']
}));
// app.use((req, res, next) => {
// res.setHeader('Access-Control-Allow-Origin', 'http://localhost:8080');
// res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, PATCH, DELETE');
// res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
// res.setHeader('Access-Control-Allow-Credentials', 'true');
// next();
// });
// app.use('/', viewRouter);
// app.use('/api/v1/shipments', shipmentRouter);
app.use('/api/v1/files', fileRouter);
app.use('/api/v1/users', userRouter);
app.use('/api/v1/machines', machineRouter);
app.use('/api/v1/materials', materialRouter);
app.use('/api/v1/cutoptions', cutOptionsRouter);
app.use('/api/v1/jobs', jobRouter);
app.use('/api/v1/calculate-price', priceRouter);
// app.use('/api/v1/customers', customerRouter);
app.all('*', (req, res, next) => {
next(new AppError(`Can't find ${req.originalUrl} on this server!`, 404));
});
/*
app.use(globalErrorHandler);
*/
export default app;