-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathfirestore.js
302 lines (256 loc) · 8.35 KB
/
firestore.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
var util = require('util'),
_ = require('lodash'),
async = require('async'),
ConcurrencyError = require('../concurrencyError'),
gcFirestore = require('@google-cloud/firestore'),
Repository = require('../base'),
uuid = require('uuid').v4,
ViewModel = Repository.ViewModel;
var collections = [];
function Firestore(options) {
Repository.call(this);
this.options = _.merge({ timestampsInSnapshots: true }, options);
}
util.inherits(Firestore, Repository);
function implementError (callback) {
var err = new Error('Storage method add is not implemented');
if (callback) callback(err);
throw err;
}
function parseFirestoreQuery(query) {
if (_.isArray(query)) {
return query;
} else if (_.isPlainObject(query)) {
return _.map(query, function(value, key) {
return [key, '==', value];
});
}
throw new Error('Unknown query type');
};
function firestoreQueryParser(collectionRef, queryParams) {
var params = parseFirestoreQuery(queryParams);
return _.reduce(params, function(acc, q) {
return acc.where.apply(acc, q);
}, collectionRef);
};
function emptyCollection(db, collection, callback) {
var batchSize = 300;
var collectionRef = db.collection(collection);
var query = collectionRef.limit(batchSize);
return deleteQueryBatch(db, query, batchSize, callback);
}
function deleteQueryBatch(db, query, batchSize, callback) {
query.get()
.then((snapshot) => {
if (snapshot.size == 0) {
return 0;
}
var batch = db.batch();
snapshot.docs.forEach((doc) => batch.delete(doc.ref));
return batch.commit().then(() => {
return snapshot.size;
});
}).then((numDeleted) => {
if (numDeleted == 0) {
return callback();
}
process.nextTick(() => {
deleteQueryBatch(db, query, batchSize, callback);
});
}).catch(callback);
};
function getPrecondition(vm) {
var precondition = {};
if (!_.isUndefined(vm.get('_updateTime'))) {
const time = vm.get('_updateTime');
if (_.isDate(time)) {
precondition['lastUpdateTime'] = time.toISOString();
} else if (_.isString(time)) {
precondition['lastUpdateTime'] = time;
}
}
return precondition;
}
function enrichVMWithTimestamps(vm, documentSnapshot) {
_.isUndefined(documentSnapshot.readTime) ? false : vm.set('_readTime', documentSnapshot.readTime);
_.isUndefined(documentSnapshot.createTime) ? false : vm.set('_createTime', documentSnapshot.createTime);
_.isUndefined(documentSnapshot.updateTime) ? false : vm.set('_updateTime', documentSnapshot.updateTime);
return vm;
};
function applyQueryOptions(query, options) {
if (!_.isUndefined(options)) {
// Apply supported queryOptions
if (_.has(options, 'limit')) {
query = query.limit(options.limit);
}
if (_.has(options, 'skip')) {
query = query.offset(options.skip);
}
if (_.has(options, 'sort')) {
var sortKey = options.sort.keys[0];
var direction = options.sort.keys[sortKey] == 1 ? 'asc' : 'desc';
query = query.orderBy(sortKey, direction);
}
}
return query;
}
_.extend(Firestore.prototype, {
connect: function (callback) {
var self = this;
var options = this.options;
self.db = new gcFirestore(options);
self.emit('connect');
if (callback) callback(null, self);
},
disconnect: function (callback) {
var self = this;
delete self.db;
self.emit('disconnect');
if (callback) callback(null, self);
},
getNewId: function (callback) {
this.checkConnection();
var id = uuid().toString();
if (callback) callback(null, id);
},
get: function (id, callback) {
this.checkConnection();
if(_.isFunction(id)) {
callback = id;
id = null;
}
if (!id) {
id = uuid().toString();
}
var self = this;
var documentPath = this.collection + '/' + id;
var documentRef = this.db.doc(documentPath);
documentRef.get().then(function (documentSnapshot) {
var vm = new ViewModel(documentSnapshot.data() || { id }, self);
vm = enrichVMWithTimestamps(vm, documentSnapshot);
if (documentSnapshot.exists) {
vm.actionOnCommit = 'update';
} else {
vm.actionOnCommit = 'create';
}
callback(null, vm);
});
},
find: function (queryParams, queryOptions, callback) {
this.checkConnection();
var self = this;
var collectionRef = this.db.collection(this.collection);
var query = firestoreQueryParser(collectionRef, queryParams);
query = applyQueryOptions(query, queryOptions);
query.get().then(function (querySnapshot) {
var vms = _.map(querySnapshot.docs, function(documentSnapshot) {
var vm = new ViewModel(documentSnapshot.data(), self);
vm = enrichVMWithTimestamps(vm, documentSnapshot);
vm.actionOnCommit = 'update';
return vm;
});
callback(null, vms);
});
},
findOne: function (queryParams, queryOptions, callback) {
// NOTE: queryOptions is ignored
this.checkConnection();
var self = this;
var collectionRef = this.db.collection(this.collection);
var query = firestoreQueryParser(collectionRef, queryParams);
_.unset(queryOptions, 'limit');
query = applyQueryOptions(query, queryOptions);
query.limit(1).get().then(function (querySnapshot) {
if (querySnapshot.size == 0) {
callback(null, null);
}
querySnapshot.forEach(function (documentSnapshot) {
var vm = new ViewModel(documentSnapshot.data(), self);
vm = enrichVMWithTimestamps(vm, documentSnapshot);
vm.actionOnCommit = 'update';
callback(null, vm);
});
});
},
commit: function (vm, callback) {
this.checkConnection();
if (!vm.actionOnCommit) return callback(new Error('actionOnCommit is not defined!'));
var self = this;
switch(vm.actionOnCommit) {
case 'delete':
var documentPath = this.collection + '/' + vm.id;
var documentRef = this.db.doc(documentPath);
var precondition = getPrecondition(vm);
documentRef.delete(precondition).then(function () {
callback(null);
}).catch(function (err) {
return callback(new ConcurrencyError());
});
break;
case 'create':
var documentPath = this.collection + '/' + vm.id;
var documentRef = this.db.doc(documentPath);
documentRef.get().then(function (documentSnapshot) {
if (documentSnapshot.exists) {
return callback(new ConcurrencyError());
}
documentRef.set(vm.attributes).then(function () {
vm.actionOnCommit = 'update';
callback(null, vm);
});
});
break;
case 'update':
var documentPath = this.collection + '/' + vm.id;
var documentRef = this.db.doc(documentPath);
documentRef.get().then(function (documentSnapshot) {
if (!documentSnapshot.exists) {
documentRef.set(vm.attributes).then(function () {
vm.actionOnCommit = 'update';
callback(null, vm);
});
} else {
if (!_.isUndefined(documentSnapshot.updateTime) &&
_.isUndefined(vm.get('_updateTime'))) {
return callback(new ConcurrencyError());
}
var precondition = getPrecondition(vm);
documentRef.update(vm.attributes, precondition).then(function () {
self.get(vm.id, callback);
}, function (err) {
return callback(new ConcurrencyError());
});
}
});
break;
default:
return callback(new Error('Unknown actionOnCommit: ' + vm.actionOnCommit));
};
},
checkConnection: function (callback) {
if (this.collection) {
return;
}
if (collections.indexOf(this.collectionName) < 0) {
collections.push(this.collectionName)
}
this.collection = this.collectionName;
if (callback) callback(null);
},
clear: function (callback) {
this.checkConnection();
var self = this;
if (!this.collection) {
if (callback) callback(null);
return;
}
emptyCollection(this.db, this.collection, callback);
},
clearAll: function (callback) {
var self = this;
async.each(collections, function (col, callback) {
emptyCollection(self.db, col, callback);
}, callback);
},
});
module.exports = Firestore;