reportePost.js
1.99 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
const createError = require('http-errors')
const su = require('superagent')
const {
isEmpty, isNil, path, head, merge,
} = require('ramda')
const dbhost = process.env.COUCHDB_URL
const dbname = process.env.DB_REPORTES
const headers = {
'Accept': 'application/json',
'Content-Type': 'application/json',
}
const CONFIDENCIAL = 'CONFIDENCIAL'
const postReporte = (payload) =>
su.post(`${dbhost}/${dbname}/`)
.set(headers)
.send(JSON.stringify(payload))
const findReporte = (payload) =>
su.post(`${dbhost}/${dbname}/_find`)
.set(headers)
.send(JSON.stringify(payload))
.then(path(['body', 'docs']))
.then(head)
const updateReporte = (payload) =>{
const { _id, _rev } = payload
return su.put(`${dbhost}/${dbname}/${_id}?rev=${_rev}`)
.set(headers)
.send(JSON.stringify(payload))
}
module.exports = (req, res, next) => {
if (isEmpty(req.body)) return next(createError(400))
if (isNil(req.body.reporte)) return next(createError(400))
if (isEmpty(req.body.reporte)) return next(createError(400))
if (req.body.reporte !== CONFIDENCIAL) return next(createError(400))
const { id } = req.params
const { usuario } = req.body
const params = {
selector: {
id: `${id}`,
usuario: { mail: usuario.mail }
}
}
findReporte(params)
.then((result) => {
if (isNil(result)){
return merge({ id }, req.body)
}
if (result.reporte === req.body.reporte){
return merge(result, { reporte: null })
}
if (isNil(result.reporte) || result.reporte !== req.body.reporte){
return merge(result, req.body)
}
})
.then(nuevoValor => {
const valor = nuevoValor.reporte
let promise
if (nuevoValor._id){
promise = updateReporte(nuevoValor)
} else {
promise = postReporte(nuevoValor)
}
return promise.then(() => valor)
})
.then((reporte) => res.json({ reporte, success: true, error: false }))
.catch(error => next(createError(500, error, { expose: true })))
}