-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
79 lines (65 loc) · 1.92 KB
/
server.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
const express = require('express')
const app = express()
const cookieParser = require('cookie-parser');
const cors = require('cors')
const compression = require('compression')
const hpp = require('hpp');
const morgan = require('morgan')
const mongoSanitize = require('express-mongo-sanitize')
const xss = require('xss-clean')
require('dotenv').config()
app.use(cors())
app.options('*',cors())
app.use(compression())
app.use(express.json({ limit: '20kb' }))
app.use(express.urlencoded({ extended: true }));
app.use(cookieParser());
// apply http parameter poulltion against attacks
app.use(hpp({
whitelist: [
'price',
'sold',
'quantity',
'ratingsAverage',
'ratingsQuantity',
],
}))
// apply data sanitize against noSQL injection and html attacks
app.use(mongoSanitize())
app.use(xss())
if(process.env.NODE_ENV === 'development') {
app.use(morgan('dev'));
}
const dbConnection = require('./DB/dbConnection')
const globalError = require('./src/middlewares/errorMiddleware')
const mountRoute = require('./src/modules/routes/mountRoute')
const {webhookCheckout} = require('./src/modules/controllers/orderController')
mountRoute(app)
app.post(
'/webhook-checkout',
express.raw({ type: 'application/json' }),
webhookCheckout
);
app.get('/',(req,res)=>{
res.status(200).json('welcome to test endPoint')
})
app.get('/api/v1/',(req,res)=>{
res.json("welcome to OVI store home Page 📱")
})
app.all('*',(req,res)=>{
res.status(404).json({status:'fail',msg:'page not found'})
})
app.use(globalError)
const PORT = process.env.PORT || 8000
app.listen(PORT,()=>{
console.log(`server start listning at port ${PORT}`)
dbConnection()
})
process.on('unhandledRejection', (err) => {
console.error(`UnhandledRejection Errors: ${err.name} | ${err.message}`);
server.close(() => {
console.error(`Shutting down....`);
process.exit(1);
});
});
module.exports = app