This repository was archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathindex.js
384 lines (346 loc) · 12.1 KB
/
index.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
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
"use strict";
module.exports = DataStore;
const _ = require("lodash");
const ono = require("@jsdevtools/ono");
const util = require("../helpers/util");
const Resource = require("./resource");
require("./buffer-polyfill");
/**
* An abstract base class for data-storage of REST resources.
*
* @constructor
*/
function DataStore () {
/**
* The Express Application or Router that's used to determine case-sensitivity and/or strict matching
* of collection paths and resource names.
*
* @type {express#Router}
* @protected
*/
this.__router = {};
}
/**
* Returns the given resource.
*
* @param {Resource|string} resource - The resource (path) or Resource object to be retrieved
* @param {function} callback
* - An error-first callback. The second parameter is the {@link Resource} object,
* or undefined if no match was found.
*/
DataStore.prototype.get = function (resource, callback) {
let self = this;
if (_.isString(resource)) {
resource = new Resource(resource);
}
openCollection(self, resource, (err, collection, resources) => {
if (err) {
doCallback(callback, err);
}
else {
// Find the resource
resource = _.find(resources, resource.filter(self.__router));
doCallback(callback, null, resource);
}
});
};
// noinspection JSClosureCompilerSyntax
/**
* Saves the given resource(s) to the data store.
* If any of the resources already exist, the new data is merged with the existing data.
*
* @param {...Resource|Resource[]} resources
* - The resource(s) or array of resources to be saved
*
* @param {function} [callback]
* - An error-first callback. The second parameter is the {@link Resource} object
* or array of {@link Resource} objects that were saved.
*/
DataStore.prototype.save = function (resources, callback) {
call(this, save, arguments);
};
/**
* Removes the given resource from the data store.
*
* @param {...Resource|Resource[]} resources
* - The resource(s) or array of resources to be removed
*
* @param {function} [callback]
* - An error-first callback. The second parameter is the {@link Resource} object
* or array of {@link Resource} objects that were removed.
*/
DataStore.prototype.delete = DataStore.prototype.remove = function (resources, callback) {
call(this, remove, arguments);
};
/**
* Returns all resources in the given collection.
*
* @param {string} collection
* - The collection path (e.g. "/", "/users", "/users/jdoe/orders/")
*
* @param {function} callback
* - An error-first callback. The second parameter is the array of {@link Resource} objects in the collection.
* If there are no resources for the given collection, then the array is empty.
*/
DataStore.prototype.getCollection = function (collection, callback) {
let self = this;
openCollection(self, collection, (err, collection, resources) => {
if (err) {
doCallback(callback, err);
}
else {
// Return the resources in the collection
resources = _.filter(resources, collection.filter(self.__router, true));
doCallback(callback, null, resources);
}
});
};
/**
* Removes all resources in the given collection.
*
* @param {string} collection
* - The collection path (e.g. "/", "/users", "/users/jdoe/orders/")
*
* @param {function} callback
* - An error-first callback. The second parameter is the array of {@link Resource} objects that were deleted.
* If nothing was deleted, then the array is empty.
*/
DataStore.prototype.deleteCollection = DataStore.prototype.removeCollection = function (collection, callback) {
let self = this;
openCollection(self, collection, (err, collection, resources) => {
if (err) {
doCallback(callback, err);
}
else {
// Remove all resources in the collection
let removed = _.remove(resources, collection.filter(self.__router, true));
if (removed.length > 0) {
// Normalize the collection name
let collectionName = collection.valueOf(self.__router, true);
// Save the changes
self.__saveDataStore(collectionName, resources, (err) => {
if (err) {
doCallback(callback, err);
}
else {
doCallback(callback, null, removed);
}
});
}
else {
doCallback(callback, null, []);
}
}
});
};
/* istanbul ignore next: abstract method */
/**
* Opens the underlying data-store and returns its data.
* Depending on the implementation, this may be the contents of a flat file, a database query, etc. instead.
*
* @param {string} collection
* - The Resource collection that is being operated upon.
* Some DataStore implementations may use this to determine which data to return.
*
* @param {function} callback
* - An error-first callback. The second parameter is an array of {@link Resource} objects
* that correspond to the given `collection` and `name`.
*
* @protected
*/
DataStore.prototype.__openDataStore = function (collection, callback) {};
/* istanbul ignore next: abstract method */
/**
* Persists changes to the underlying data-store.
* Depending on the implementation, this may write to a flat file, a database, etc. instead.
*
* @param {string} collection
* - The Resource collection that is being operated upon.
* Some DataStore implementations may use this to determine which data to persist/overwrite.
*
* @param {Resource[]} resources
* - An array of {@link Resource} objects that should be persisted to the underlying data-store.
*
* @param {function} callback
* - An error-first callback. Called when the data has been persisted, or an error occurs.
*
* @protected
*/
DataStore.prototype.__saveDataStore = function (collection, resources, callback) {};
/**
* Saves the given resources to the data store.
* If any of the resources already exist, the new data is merged with the existing data.
*
* @param {DataStore} dataStore - The DataStore to operate on
* @param {string} collectionName - The collection that all the resources belong to
* @param {Resource[]} resources - The Resources to be saved
* @param {function} callback - Callback function
*/
function save (dataStore, collectionName, resources, callback) {
// Open the data store
dataStore.__openDataStore(collectionName, (err, existingResources) => {
if (err) {
return callback(err);
}
resources.forEach((resource) => {
// Set the timestamp properties
let now = Date.now();
resource.createdOn = new Date(now);
resource.modifiedOn = new Date(now);
// Does the resource already exist?
let existing = _.find(existingResources, resource.filter(dataStore.__router));
if (existing) {
// Merge the new data into the existing resource
util.debug("%s already exists. Merging new data with existing data.", resource.toString());
existing.merge(resource);
// Update the calling code's reference to the resource
_.extend(resource, existing);
}
else {
existingResources.push(resource);
}
});
// Save the changes
dataStore.__saveDataStore(collectionName, existingResources, (err) => {
callback(err, resources);
});
});
}
/**
* Removes the given resource from the data store.
*
* @param {DataStore} dataStore - The DataStore to operate on
* @param {string} collectionName - The collection that all the resources belong to
* @param {Resource[]} resources - The Resources to be removed
* @param {function} callback - Callback function
*/
function remove (dataStore, collectionName, resources, callback) {
// Open the data store
dataStore.__openDataStore(collectionName, (err, existingResources) => {
if (err) {
return callback(err);
}
// Remove the resources from the existing resources
let removedResources = [];
resources.forEach((resource) => {
let removed = _.remove(existingResources, resource.filter(dataStore.__router));
removedResources = removedResources.concat(removed);
});
if (removedResources.length > 0) {
// Save the changes
dataStore.__saveDataStore(collectionName, existingResources, (err) => {
if (err) {
callback(err);
}
else {
callback(null, removedResources);
}
});
}
else {
callback(null, []);
}
});
}
/**
* Opens the given collection.
*
* @param {DataStore} dataStore - The DataStore to operate on
* @param {string|Resource} collection - The collection path or a Resource object
* @param {function} callback - Called with Error, collection Resource, and Resource array
*/
function openCollection (dataStore, collection, callback) {
if (_.isString(collection)) {
collection = new Resource(collection, "", "");
}
else if (!(collection instanceof Resource)) {
throw ono("Expected a string or Resource object. Got a %s instead.", typeof (collection));
}
// Normalize the collection name
let collectionName = collection.valueOf(dataStore.__router, true);
// Open the data store
dataStore.__openDataStore(collectionName, (err, resources) => {
callback(err, collection, resources);
});
}
/**
* Calls the given callback with the given arguments, if the callback is defined.
*
* @param {function|*} callback
* @param {Error|null} err
* @param {*} arg
*/
function doCallback (callback, err, arg) {
if (_.isFunction(callback)) {
callback(err, arg);
}
}
/**
* Calls the given function with normalized parameters:
* the DataStore, collection name, an array of {@link Resource} objects, and a callback function.
*
* The given function might be called multiple times. Each time it is called, the array of resources
* will all belong to the same collection.
*
* @param {DataStore} dataStore - The DataStore to operate on
* @param {function} fn - The function to be called
* @param {arguments} args - The non-normalized arguments (one resource, multiple resources, a resource array, a callback)
*/
function call (dataStore, fn, args) {
let resources, callback;
// If only a single resource was passed-in, then only a single resource will be passed-back
let singleResource = _.first(args) instanceof Resource && (args.length === 0 || _.isFunction(args[1]));
// Normalize the arguments
if (_.isFunction(_.last(args))) {
resources = _.flatten(_.initial(args), true);
callback = _.last(args);
}
else {
resources = _.flatten(args, true);
callback = _.noop;
}
// Group the resources into collections
let collections = {};
for (let i = 0; i < resources.length; i++) {
let resource = resources[i];
if (!(resource instanceof Resource)) {
throw ono("Expected a Resource object, but parameter %d is a %s.", i + 1, typeof (resource));
}
let collectionName = resource.valueOf(dataStore.__router, true);
let collection = collections[collectionName] || (collections[collectionName] = []);
collection.push(resource);
}
// Call the function for each collection of resources
let collectionNames = Object.keys(collections);
let collectionIndex = 0, processedResources = [];
processNextCollection();
function processNextCollection (err, resources) {
if (err) {
// An error occurred, so abort.
finished(err);
return;
}
if (resources) {
// Add the resources to the list of processed resources
processedResources = processedResources.concat(resources);
}
if (collectionIndex >= collectionNames.length) {
// We're done processing all collections, so return the results
finished(null, processedResources);
}
else {
// Process the next collection
let collectionName = collectionNames[collectionIndex++];
fn(dataStore, collectionName, collections[collectionName], processNextCollection);
}
}
function finished (err, resources) {
if (err) {
callback(err);
}
else {
// Call the callback with a single resource or an array of resources
callback(null, singleResource ? resources[0] : resources);
}
}
}