-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
58 lines (54 loc) · 1.72 KB
/
utils.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
const Sliced = require('sliced');
const Logger = require('n-commons/logger');
const Protocols = require('./protocols');
function okWithRes()
{
var res = null, callback = null, onSuccess = null;
if (arguments.length == 3) {
res = arguments[0];
callback = arguments[1];
onSuccess = arguments[2];
} else {
if (typeof(arguments[0]) == 'function') {
callback = arguments[0];
} else {
res = arguments[0];
}
if (arguments.length > 1) {
onSuccess = arguments[1];
}
}
return function(err) {
if (err) {
if (res) return sendError(err, res);
if (callback) return callback(err);
} else {
if (onSuccess) return onSuccess.apply(onSuccess, Sliced(arguments, 1));
if (res) return res.json(Protocols.OK).end();
}
};
}
function sendError(err, res, protocol)
{
if (protocol) {
res.status(Protocols.STATUS_ERR).json(protocol).end();
} else if (err && err.protocol) {
res.status(Protocols.STATUS_ERR).json(err.protocol).end();
} else if (err && err.errCode) {
res.status(Protocols.STATUS_ERR).json(err).end();
} else if (err && err.empty) {
res.status(Protocols.STATUS_ERR).json(Protocols.DATA_NOT_FOUND).end();
} else if (err && err.duplicate) {
res.status(Protocols.STATUS_ERR).json(Protocols.DATA_DUPLICATE_KEY).end();
} else if (err) {
Logger.error(err);
var json = (err.message) ? Protocols.customMessage(Protocols.INTERNAL_SERVER_ERROR, err.message) : Protocols.INTERNAL_SERVER_ERROR;
res.status(Protocols.STATUS_ERR_UNKNOWN).json(json).end();
} else {
res.status(Protocols.STATUS_ERR_UNKNOWN).json(Protocols.INTERNAL_SERVER_ERROR).end();
}
}
module.exports = {
okWithRes : okWithRes,
sendError : sendError
}