-
Notifications
You must be signed in to change notification settings - Fork 76
/
pouch.js
497 lines (433 loc) · 15 KB
/
pouch.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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
import Ember from 'ember';
import DS from 'ember-data';
import { pluralize } from 'ember-inflector';
//import BelongsToRelationship from 'ember-data/-private/system/relationships/state/belongs-to';
import {
extractDeleteRecord,
shouldSaveRelationship,
configFlagDisabled
} from '../utils';
const {
getOwner,
run: {
bind
},
on,
String: {
camelize,
classify
}
} = Ember;
//BelongsToRelationship.reopen({
// findRecord() {
// return this._super().catch(() => {
// //not found: deleted
// this.clear();
// });
// }
//});
export default DS.RESTAdapter.extend({
fixDeleteBug: true,
coalesceFindRequests: false,
// The change listener ensures that individual records are kept up to date
// when the data in the database changes. This makes ember-data 2.0's record
// reloading redundant.
shouldReloadRecord: function () { return false; },
shouldBackgroundReloadRecord: function () { return false; },
_onInit : on('init', function() {
this._startChangesToStoreListener();
}),
_startChangesToStoreListener: function() {
var db = this.get('db');
if (db && !this.changes) { // only run this once
var onChangeListener = bind(this, 'onChange');
this.set('onChangeListener', onChangeListener);
this.changes = db.changes({
since: 'now',
live: true,
returnDocs: false
});
this.changes.on('change', onChangeListener);
}
},
_stopChangesListener: function() {
if (this.changes) {
var onChangeListener = this.get('onChangeListener');
this.changes.removeListener('change', onChangeListener);
this.changes.cancel();
this.changes = undefined;
}
},
changeDb: function(db) {
this._stopChangesListener();
var store = this.store;
var schema = this._schema || [];
for (var i = 0, len = schema.length; i < len; i++) {
store.unloadAll(schema[i].singular);
}
this._schema = null;
this.set('db', db);
this._startChangesToStoreListener();
},
onChange: function (change) {
// If relational_pouch isn't initialized yet, there can't be any records
// in the store to update.
if (!this.get('db').rel) { return; }
var obj = this.get('db').rel.parseDocID(change.id);
// skip changes for non-relational_pouch docs. E.g., design docs.
if (!obj.type || !obj.id || obj.type === '') { return; }
var store = this.store;
if (this.waitingForConsistency[change.id]) {
let promise = this.waitingForConsistency[change.id];
delete this.waitingForConsistency[change.id];
if (change.deleted) {
promise.reject("deleted");
} else {
promise.resolve(this._findRecord(obj.type, obj.id));
}
return;
}
try {
store.modelFor(obj.type);
} catch (e) {
// The record refers to a model which this version of the application
// does not have.
return;
}
var recordInStore = store.peekRecord(obj.type, obj.id);
if (!recordInStore) {
// The record hasn't been loaded into the store; no need to reload its data.
if (this.createdRecords[obj.id]) {
delete this.createdRecords[obj.id];
} else {
this.unloadedDocumentChanged(obj);
}
return;
}
if (!recordInStore.get('isLoaded') || recordInStore.get('rev') === change.changes[0].rev || recordInStore.get('hasDirtyAttributes')) {
// The record either hasn't loaded yet or has unpersisted local changes.
// In either case, we don't want to refresh it in the store
// (and for some substates, attempting to do so will result in an error).
// We also ignore the change if we already have the latest revision
return;
}
if (change.deleted) {
if (this.fixDeleteBug) {
recordInStore._internalModel.transitionTo('deleted.saved');//work around ember-data bug
} else {
store.unloadRecord(recordInStore);
}
} else {
recordInStore.reload();
}
},
unloadedDocumentChanged: function(/* obj */) {
/*
* For performance purposes, we don't load records into the store that haven't previously been loaded.
* If you want to change this, subclass this method, and push the data into the store. e.g.
*
* let store = this.get('store');
* let recordTypeName = this.getRecordTypeName(store.modelFor(obj.type));
* this.get('db').rel.find(recordTypeName, obj.id).then(function(doc){
* store.pushPayload(recordTypeName, doc);
* });
*/
},
willDestroy: function() {
this._stopChangesListener();
},
_indexPromises: [],
_init: function (store, type) {
var self = this,
recordTypeName = this.getRecordTypeName(type);
if (!this.get('db') || typeof this.get('db') !== 'object') {
throw new Error('Please set the `db` property on the adapter.');
}
if (!Ember.get(type, 'attributes').has('rev')) {
var modelName = classify(recordTypeName);
throw new Error('Please add a `rev` attribute of type `string`' +
' on the ' + modelName + ' model.');
}
this._schema = this._schema || [];
var singular = recordTypeName;
var plural = pluralize(recordTypeName);
// check that we haven't already registered this model
for (var i = 0, len = this._schema.length; i < len; i++) {
var currentSchemaDef = this._schema[i];
if (currentSchemaDef.singular === singular) {
return;
}
}
var schemaDef = {
singular: singular,
plural: plural
};
if (type.documentType) {
schemaDef['documentType'] = type.documentType;
}
let config = getOwner(this).resolveRegistration('config:environment');
// else it's new, so update
this._schema.push(schemaDef);
// check all the subtypes
// We check the type of `rel.type`because with ember-data beta 19
// `rel.type` switched from DS.Model to string
type.eachRelationship(function (_, rel) {
if (rel.kind !== 'belongsTo' && rel.kind !== 'hasMany') {
// TODO: support inverse as well
return; // skip
}
var relDef = {},
relModel = (typeof rel.type === 'string' ? store.modelFor(rel.type) : rel.type);
if (relModel) {
let includeRel = true;
if (!('options' in rel)) rel.options = {};
if (typeof(rel.options.async) === "undefined") {
rel.options.async = config.emberPouch && !Ember.isEmpty(config.emberPouch.async) ? config.emberPouch.async : true;//default true from https://github.com/emberjs/data/pull/3366
}
let options = Object.create(rel.options);
if (rel.kind === 'hasMany' && !shouldSaveRelationship(self, rel)) {
let inverse = type.inverseFor(rel.key, store);
if (inverse) {
if (inverse.kind === 'belongsTo') {
self._indexPromises.push(self.get('db').createIndex({index: { fields: ['data.' + inverse.name, '_id'] }}));
if (options.async) {
includeRel = false;
} else {
options.queryInverse = inverse.name;
}
}
}
}
if (includeRel) {
relDef[rel.kind] = {
type: self.getRecordTypeName(relModel),
options: options
};
if (!schemaDef.relations) {
schemaDef.relations = {};
}
schemaDef.relations[rel.key] = relDef;
}
self._init(store, relModel);
}
});
this.get('db').setSchema(this._schema);
},
_recordToData: function (store, type, record) {
var data = {};
// Though it would work to use the default recordTypeName for modelName &
// serializerKey here, these uses are conceptually distinct and may vary
// independently.
var modelName = type.modelName || type.typeKey;
var serializerKey = camelize(modelName);
var serializer = store.serializerFor(modelName);
serializer.serializeIntoHash(
data,
type,
record,
{includeId: true}
);
data = data[serializerKey];
// ember sets it to null automatically. don't need it.
if (data.rev === null) {
delete data.rev;
}
return data;
},
/**
* Return key that conform to data adapter
* ex: 'name' become 'data.name'
*/
_dataKey: function(key) {
var dataKey ='data.' + key;
return ""+ dataKey + "";
},
/**
* Returns the modified selector key to comform data key
* Ex: selector: {name: 'Mario'} wil become selector: {'data.name': 'Mario'}
*/
_buildSelector: function(selector) {
var dataSelector = {};
var selectorKeys = [];
for (var key in selector) {
if(selector.hasOwnProperty(key)){
selectorKeys.push(key);
}
}
selectorKeys.forEach(function(key) {
var dataKey = this._dataKey(key);
dataSelector[dataKey] = selector[key];
}.bind(this));
return dataSelector;
},
/**
* Returns the modified sort key
* Ex: sort: ['series'] will become ['data.series']
* Ex: sort: [{series: 'desc'}] will became [{'data.series': 'desc'}]
*/
_buildSort: function(sort) {
return sort.map(function (value) {
var sortKey = {};
if (typeof value === 'object' && value !== null) {
for (var key in value) {
if(value.hasOwnProperty(key)){
sortKey[this._dataKey(key)] = value[key];
}
}
} else {
return this._dataKey(value);
}
return sortKey;
}.bind(this));
},
/**
* Returns the string to use for the model name part of the PouchDB document
* ID for records of the given ember-data type.
*
* This method uses the camelized version of the model name in order to
* preserve data compatibility with older versions of ember-pouch. See
* pouchdb-community/ember-pouch#63 for a discussion.
*
* You can override this to change the behavior. If you do, be aware that you
* need to execute a data migration to ensure that any existing records are
* moved to the new IDs.
*/
getRecordTypeName(type) {
return camelize(type.modelName);
},
findAll: function(store, type /*, sinceToken */) {
// TODO: use sinceToken
this._init(store, type);
return this.get('db').rel.find(this.getRecordTypeName(type));
},
findMany: function(store, type, ids) {
this._init(store, type);
return this.get('db').rel.find(this.getRecordTypeName(type), ids);
},
findHasMany: function(store, record, link, rel) {
let inverse = record.type.inverseFor(rel.key, store);
if (inverse && inverse.kind === 'belongsTo') {
return this.get('db').rel.findHasMany(camelize(rel.type), inverse.name, record.id);
} else {
let result = {};
result[pluralize(rel.type)] = [];
return result; //data;
}
},
query: function(store, type, query) {
this._init(store, type);
var recordTypeName = this.getRecordTypeName(type);
var db = this.get('db');
var queryParams = {
selector: this._buildSelector(query.filter)
};
if (!Ember.isEmpty(query.sort)) {
queryParams.sort = this._buildSort(query.sort);
}
if (!Ember.isEmpty(query.limit)) {
queryParams.limit = query.limit;
}
if (!Ember.isEmpty(query.skip)) {
queryParams.skip = query.skip;
}
return db.find(queryParams).then(pouchRes => db.rel.parseRelDocs(recordTypeName, pouchRes.docs));
},
queryRecord: function(store, type, query) {
return this.query(store, type, query).then(results => {
let recordType = this.getRecordTypeName(type);
let recordTypePlural = pluralize(recordType);
if(results[recordTypePlural].length > 0){
results[recordType] = results[recordTypePlural][0];
} else {
results[recordType] = null;
}
delete results[recordTypePlural];
return results;
});
},
/**
* `find` has been deprecated in ED 1.13 and is replaced by 'new store
* methods', see: https://github.com/emberjs/data/pull/3306
* We keep the method for backward compatibility and forward calls to
* `findRecord`. This can be removed when the library drops support
* for deprecated methods.
*/
find: function (store, type, id) {
return this.findRecord(store, type, id);
},
findRecord: function (store, type, id) {
this._init(store, type);
var recordTypeName = this.getRecordTypeName(type);
return this._findRecord(recordTypeName, id);
},
_findRecord(recordTypeName, id) {
return this.get('db').rel.find(recordTypeName, id).then(payload => {
// Ember Data chokes on empty payload, this function throws
// an error when the requested data is not found
if (typeof payload === 'object' && payload !== null) {
var singular = recordTypeName;
var plural = pluralize(recordTypeName);
var results = payload[singular] || payload[plural];
if (results && results.length > 0) {
return payload;
}
}
if (configFlagDisabled(this, 'eventuallyConsistent'))
throw new Error("Document of type '" + recordTypeName + "' with id '" + id + "' not found.");
else
return this._eventuallyConsistent(recordTypeName, id);
});
},
//TODO: cleanup promises on destroy or db change?
waitingForConsistency: {},
_eventuallyConsistent: function(type, id) {
let pouchID = this.get('db').rel.makeDocID({type, id});
let defer = Ember.RSVP.defer();
this.waitingForConsistency[pouchID] = defer;
return this.get('db').rel.isDeleted(type, id).then(deleted => {
//TODO: should we test the status of the promise here? Could it be handled in onChange already?
if (deleted) {
delete this.waitingForConsistency[pouchID];
throw new Error("Document of type '" + type + "' with id '" + id + "' is deleted.");
} else if (deleted === null) {
return defer.promise;
} else {
Ember.assert('Status should be existing', deleted === false);
//TODO: should we reject or resolve the promise? or does JS GC still clean it?
if (this.waitingForConsistency[pouchID]) {
delete this.waitingForConsistency[pouchID];
return this._findRecord(type, id);
} else {
//findRecord is already handled by onChange
return defer.promise;
}
}
});
},
createdRecords: {},
createRecord: function(store, type, record) {
this._init(store, type);
var data = this._recordToData(store, type, record);
let rel = this.get('db').rel;
let id = data.id;
if (!id) {
id = data.id = rel.uuid();
}
this.createdRecords[id] = true;
return rel.save(this.getRecordTypeName(type), data).catch((e) => {
delete this.createdRecords[id];
throw e;
});
},
updateRecord: function (store, type, record) {
this._init(store, type);
var data = this._recordToData(store, type, record);
return this.get('db').rel.save(this.getRecordTypeName(type), data);
},
deleteRecord: function (store, type, record) {
this._init(store, type);
var data = this._recordToData(store, type, record);
return this.get('db').rel.del(this.getRecordTypeName(type), data)
.then(extractDeleteRecord);
}
});