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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*jshint node:true*/
"use strict";
/*!
* Root handlers
*/
var nativeGet = nativePropertyGet;
var nativePost = nativePropertyPost;
/*!
* Property handlers
*/
function nativePropertyHook(req, next) {
var path = req.params["*"].split("/");
var obj = req.nativeRoot;
var parent;
var property;
while (path.length) {
property = path.shift();
if (!(property in obj)) {
delete req.nativeTarget;
return next();
}
parent = obj;
obj = obj[property];
}
req.nativeParent = parent;
req.nativeProperty = property;
req.nativeTarget = obj;
next();
}
function nativeArrayCount(req, cb) {
if (!("nativeTarget" in req)) {
return cb.notFound();
}
cb(null, req.nativeTarget.length);
}
function nativeArrayList(req, offset, limit, cb) {
if (!("nativeTarget" in req)) {
return cb.notFound();
}
var target = req.nativeTarget;
var arr;
if (limit > 0) {
arr = target.slice(offset, offset + limit);
} else {
arr = target.slice(offset);
}
cb(null, arr);
}
function nativeObjectCount(req, cb) {
cb(null, Object.keys(req.nativeTarget).length);
}
function nativeObjectList(req, offset, limit, cb) {
var keys = Object.keys(req.nativeTarget);
if (limit > 0) {
keys = keys.slice(offset, offset + limit);
} else {
keys = keys.slice(offset);
}
cb(null, keys);
}
function nativePropertyGet(req, cb) {
if (!("nativeTarget" in req)) {
return cb.notFound;
}
var target = req.nativeTarget;
if (Array.isArray(target)) {
if (req.options.rawArrays) {
cb(null, target);
} else {
cb.list(nativeArrayCount, nativeArrayList);
}
} else if (typeof target === "object") {
if (req.options.objectCollections) {
cb.list(nativeObjectCount, nativeObjectList);
} else {
cb(null, target);
}
} else {
cb(null, target);
}
}
function nativePropertyPut(req, isPatch, cb) {
var parent = req.nativeParent;
var property = req.nativeProperty;
var target = req.nativeTarget;
var value = req.body;
if ("_value" in value) {
value = value._value;
}
if (isPatch) {
if (typeof target !== "object") {
return cb.methodNotAllowed();
}
Object.keys(req.body).forEach(function(key) {
target[key] = value[key];
});
} else {
parent[property] = value;
}
cb();
}
function nativePropertyPost(req, cb) {
if (!("nativeTarget" in req)) {
return cb.notFound();
}
var target = req.nativeTarget;
var created;
if (Array.isArray(target)) {
var value = req.body;
if ("_value" in value) {
value = value._value;
}
created = value;
target.push(value);
} else if (typeof target === "object") {
if (!("_key" in req.body) || !("_value" in req.body) || typeof req.body._key !== "string") {
return cb.badRequest();
}
created = target[req.body._key] = req.body._value;
} else {
cb.methodNotAllowed();
}
if (req.options.postResponse) {
cb(null, created);
} else {
cb.created();
}
}
function nativePropertyDelete(req, cb) {
if (!("nativeTarget" in req)) {
return cb.notFound();
}
var parent = req.nativeParent;
var property = req.nativeProperty;
if (Array.isArray(parent) && !req.options.sparseArrays) {
parent.splice(property, 1);
} else {
delete parent[property];
}
cb();
}
/*!
* Native resource definition helper
*/
module.exports = function(name, obj) {
var resource = this.sub(name);
resource
.hook(function nativeHook(req, next) {
req.nativeRoot = req.nativeTarget = obj;
next();
})
.get(nativeGet)
.post(nativePost);
resource.sub("*")
.hook(nativePropertyHook)
.get(nativePropertyGet)
.put(nativePropertyPut)
.post(nativePropertyPost)
.del(nativePropertyDelete);
return resource;
};