-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrouter.js
146 lines (125 loc) · 3.76 KB
/
router.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
const bee = require("beeline");
const _ = require("lodash");
function omitId(objs) {
if (Array.isArray(objs)) {
return objs.map(omitId);
} else if (_.isPlainObject(objs)) {
return _.mapValues(_.omit(objs, "_whoid"), omitId);
} else {
return objs;
}
}
function genericResponder(res) {
return (err, data) => {
if (err) {
if (err.isUserError) {
return res.status(400).json({ error: err.toString() });
}
return res.status(500).json({ error: err.toString() });
}
if (data == null) {
return res.status(404).json({ error: "not-found" });
}
if (data != null && _.isEmpty(data)) {
return res.status(404).json(data);
}
return res.json(omitId(data));
};
}
module.exports = function (db) {
return bee.route({
"/health": (req, res) => {
res.json({ ok: true });
},
"/alias /all /list": {
GET: (req, res) => {
db.all(genericResponder(res));
},
},
"/alias/`key` /list/`key`": {
GET: (req, res) => {
let key = req.params["key"];
db.has(key, genericResponder(res));
},
},
"/alias/`key`/`value`": {
GET: (req, res) => {
let key = req.params["key"];
let value = req.params["value"];
db.one(key, value, genericResponder(res));
},
"POST PUT": (req, res) => {
let author = req.headers["x-wiw-author"];
if (!author) {
return res.status(400).json({ error: "no X-WIW-Author header" });
}
let key = req.params["key"];
let value = req.params["value"];
db.put(author, key, value, req.body, genericResponder(res));
},
},
"/list/`key`/`value`": {
GET: (req, res) => {
let key = req.params["key"];
let value = req.params["value"];
db.by(key, value, genericResponder(res));
},
},
"/alias/`key`/`value`/data/`path...`": {
GET: (req, res) => {
let key = req.params["key"];
let value = req.params["value"];
db.one(key, value, (err, data) => {
if (err) {
return res.status(500).json({ error: err.toString() });
}
if (!data) {
return res.status(404).json({ error: "not-found" });
}
let path = req.params["path"].split("/");
data = _.get(omitId(data), path);
if (data == null) {
return res.status(404).json({ error: "not-found" });
}
return res.json(data);
});
},
"POST PUT": (req, res) => {
let author = req.headers["x-wiw-author"];
if (!author) {
return res.status(400).json({ error: "no X-WIW-Author header" });
}
let key = req.params["key"];
let value = req.params["value"];
let path = req.params["path"].split("/");
let data = _.set({}, path, req.body);
db.put(author, key, value, data, genericResponder(res));
},
},
"/list/`key`/`value`/data/`path...`": {
GET: (req, res) => {
let key = req.params["key"];
let value = req.params["value"];
db.by(key, value, (err, data) => {
if (err) {
return res.status(500).json({ error: err.toString() });
}
if (_.isEmpty(data)) {
return res.status(404).json(data);
}
data = omitId(data);
let path = req.params["path"].replace("/", ".");
return res.json(_.flatten(_.map(data, path)));
});
},
},
"/alias/`key`/`value`/history/`path...`": {
GET: (req, res) => {
let key = req.params["key"];
let value = req.params["value"];
let path = req.params["path"].replace("/", ".");
db.history(key, value, path, genericResponder(res));
},
},
});
};