2020-02-17 12:35:50 -05:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
handle-callback-err,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-02-17 12:35:39 -05:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-02-17 12:35:59 -05:00
|
|
|
let MockDocUpdaterApi
|
|
|
|
const express = require('express')
|
|
|
|
const app = express()
|
2015-09-02 17:47:34 -04:00
|
|
|
|
2020-02-17 12:35:59 -05:00
|
|
|
module.exports = MockDocUpdaterApi = {
|
|
|
|
docs: {},
|
2015-09-02 17:47:34 -04:00
|
|
|
|
2020-02-17 12:35:59 -05:00
|
|
|
getAllDoc(project_id, callback) {
|
|
|
|
if (callback == null) {
|
2020-06-04 04:24:21 -04:00
|
|
|
callback = function (error) {}
|
2020-02-17 12:35:59 -05:00
|
|
|
}
|
|
|
|
return callback(null, this.docs)
|
|
|
|
},
|
2015-09-02 17:47:34 -04:00
|
|
|
|
2020-02-17 12:35:59 -05:00
|
|
|
run() {
|
|
|
|
app.get('/project/:project_id/doc', (req, res, next) => {
|
|
|
|
return this.getAllDoc(req.params.project_id, (error, docs) => {
|
|
|
|
if (error != null) {
|
2020-03-23 06:17:32 -04:00
|
|
|
res.sendStatus(500)
|
2020-02-17 12:35:59 -05:00
|
|
|
}
|
|
|
|
if (docs == null) {
|
2020-03-23 06:17:32 -04:00
|
|
|
return res.sendStatus(404)
|
2020-02-17 12:35:59 -05:00
|
|
|
} else {
|
|
|
|
return res.send(JSON.stringify(docs))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
2015-09-02 17:47:34 -04:00
|
|
|
|
2020-02-17 12:35:59 -05:00
|
|
|
return app
|
2021-07-13 07:04:43 -04:00
|
|
|
.listen(3016, error => {
|
2020-02-17 12:35:59 -05:00
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
})
|
2021-07-13 07:04:43 -04:00
|
|
|
.on('error', error => {
|
2020-02-17 12:35:59 -05:00
|
|
|
console.error('error starting MockDocStoreApi:', error.message)
|
|
|
|
return process.exit(1)
|
|
|
|
})
|
2021-07-13 07:04:43 -04:00
|
|
|
},
|
2020-02-17 12:35:59 -05:00
|
|
|
}
|
2015-09-02 17:47:34 -04:00
|
|
|
|
2020-02-17 12:35:59 -05:00
|
|
|
MockDocUpdaterApi.run()
|