-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.js
119 lines (101 loc) · 3.1 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
/**
* The application entry point
*/
require('./app-bootstrap')
const _ = require('lodash')
const config = require('config')
const express = require('express')
const bodyParser = require('body-parser')
const cors = require('cors')
const HttpStatus = require('http-status-codes')
const logger = require('./src/common/logger')
const interceptor = require('express-interceptor')
const YAML = require('yamljs')
const swaggerUi = require('swagger-ui-express')
const termsSwagger = YAML.load('./docs/swagger.yaml')
// setup express app
const app = express()
// serve challenge V5 API swagger definition
app.use('/v5/terms/docs', swaggerUi.serve, swaggerUi.setup(termsSwagger))
app.use(cors())
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({ extended: true }))
app.set('port', config.PORT)
// intercept the response body from jwtAuthenticator
app.use(interceptor((req, res) => {
return {
isInterceptable: () => {
return res.statusCode === 403
},
intercept: (body, send) => {
let obj
if (body.length > 0) {
try {
obj = JSON.parse(body)
} catch (e) {
logger.error('Invalid response body.')
}
}
if (obj && _.get(obj, 'result.content.message')) {
const ret = { message: obj.result.content.message }
res.statusCode = 401
send(JSON.stringify(ret))
} else {
send(body)
}
}
}
}))
// check if api is started
// TODO: check db connection, docusign callback
function check () {
return true
}
// Check if the route is not found or HTTP method is not supported
app.use('/v5/terms/health', (req, res) => {
if (check()) {
res.status(HttpStatus.OK).json({ message: 'The service is up.' })
} else {
res.status(HttpStatus.SERVICE_UNAVAILABLE).json({ message: 'The service is unavailable.' })
}
})
// Register routes
require('./app-routes')(app)
// The error handler
// eslint-disable-next-line no-unused-vars
app.use((err, req, res, next) => {
logger.logFullError(err, req.signature || `${req.method} ${req.url}`)
const errorResponse = {}
const status = err.isJoi ? HttpStatus.BAD_REQUEST : (err.status || err.httpStatus || HttpStatus.INTERNAL_SERVER_ERROR)
if (_.isArray(err.details)) {
if (err.isJoi) {
_.map(err.details, (e) => {
if (e.message) {
if (_.isUndefined(errorResponse.message)) {
errorResponse.message = e.message
} else {
errorResponse.message += `, ${e.message}`
}
}
})
}
}
if (err.response) {
// extract error message from V3 API
errorResponse.message = _.get(err, 'response.body.result.content')
}
if (_.isUndefined(errorResponse.message)) {
if (err.message && (err.httpStatus || status !== HttpStatus.INTERNAL_SERVER_ERROR)) {
errorResponse.message = err.message
} else {
errorResponse.message = 'Internal server error'
}
}
res.status(status).json(errorResponse)
})
const server = app.listen(app.get('port'), () => {
logger.info(`Express server listening on port ${app.get('port')}`)
})
if (process.env.NODE_ENV === 'test') {
module.exports = server
}