Intent-based hooks for persistence

This patch introduces a new API for "intent-based" hooks. These hooks
are not tied to a particular method (e.g. "find" or "update"). Instead,
they are triggered from all methods that execute a particular "intent".

The consumer API is very simple, there is a new method
Model.observe(name, observer), where the observer is function
observer(context, callback).

Observers are inherited by child models and it is possible to register
multiple observers for the same hook.

List of hooks:

 - query
 - before save
 - after save
 - after delete
This commit is contained in:
Miroslav Bajtoš 2015-01-21 17:57:47 +01:00
parent b3d07ebbe8
commit 1fd6eff10f
5 changed files with 1610 additions and 198 deletions

View File

@ -594,6 +594,9 @@ Memory.prototype.updateAttributes = function updateAttributes(model, id, data, c
} }
} }
// Do not modify the data object passed in arguments
data = Object.create(data);
this.setIdValue(model, data, id); this.setIdValue(model, data, id);
var cachedModels = this.collection(model); var cachedModels = this.collection(model);

View File

@ -7,6 +7,7 @@ module.exports = DataAccessObject;
/*! /*!
* Module dependencies * Module dependencies
*/ */
var async = require('async');
var jutil = require('./jutil'); var jutil = require('./jutil');
var ValidationError = require('./validations').ValidationError; var ValidationError = require('./validations').ValidationError;
var Relation = require('./relations.js'); var Relation = require('./relations.js');
@ -62,6 +63,16 @@ function byIdQuery(m, id) {
return query; return query;
} }
function isWhereByGivenId(Model, where, idValue) {
var keys = Object.keys(where);
if (keys.length != 1) return false;
var pk = idName(Model);
if (keys[0] !== pk) return false;
return where[pk] === idValue;
}
DataAccessObject._forDB = function (data) { DataAccessObject._forDB = function (data) {
if (!(this.getDataSource().isRelational && this.getDataSource().isRelational())) { if (!(this.getDataSource().isRelational && this.getDataSource().isRelational())) {
return data; return data;
@ -201,6 +212,9 @@ DataAccessObject.create = function (data, callback) {
Model = this.lookupModel(data); // data-specific Model = this.lookupModel(data); // data-specific
if (Model !== obj.constructor) obj = new Model(data); if (Model !== obj.constructor) obj = new Model(data);
Model.notifyObserversOf('before save', { Model: Model, instance: obj }, function(err) {
if (err) return callback(err);
data = obj.toObject(true); data = obj.toObject(true);
// validation required // validation required
@ -211,11 +225,11 @@ DataAccessObject.create = function (data, callback) {
callback(new ValidationError(obj), obj); callback(new ValidationError(obj), obj);
} }
}, data); }, data);
});
function create() { function create() {
obj.trigger('create', function (createDone) { obj.trigger('create', function (createDone) {
obj.trigger('save', function (saveDone) { obj.trigger('save', function (saveDone) {
var _idName = idName(Model); var _idName = idName(Model);
var modelName = Model.modelName; var modelName = Model.modelName;
this._adapter().create(modelName, this.constructor._forDB(obj.toObject(true)), function (err, id, rev) { this._adapter().create(modelName, this.constructor._forDB(obj.toObject(true)), function (err, id, rev) {
@ -232,10 +246,15 @@ DataAccessObject.create = function (data, callback) {
obj.__persisted = true; obj.__persisted = true;
saveDone.call(obj, function () { saveDone.call(obj, function () {
createDone.call(obj, function () { createDone.call(obj, function () {
if (err) {
return callback(err, obj);
}
Model.notifyObserversOf('after save', { Model: Model, instance: obj }, function(err) {
callback(err, obj); callback(err, obj);
if(!err) Model.emit('changed', obj); if(!err) Model.emit('changed', obj);
}); });
}); });
});
}, obj); }, obj);
}, obj, callback); }, obj, callback);
}, obj, callback); }, obj, callback);
@ -267,20 +286,42 @@ DataAccessObject.updateOrCreate = DataAccessObject.upsert = function upsert(data
} }
var self = this; var self = this;
var Model = this; var Model = this;
if (!getIdValue(this, data)) { var id = getIdValue(this, data);
if (!id) {
return this.create(data, callback); return this.create(data, callback);
} }
if (this.getDataSource().connector.updateOrCreate) {
Model.notifyObserversOf('query', { Model: Model, query: byIdQuery(Model, id) }, doUpdateOrCreate);
function doUpdateOrCreate(err, ctx) {
if (err) return callback(err);
var isOriginalQuery = isWhereByGivenId(Model, ctx.query.where, id)
if (Model.getDataSource().connector.updateOrCreate && isOriginalQuery) {
var context = { Model: Model, where: ctx.query.where, data: data };
Model.notifyObserversOf('before save', context, function(err, ctx) {
if (err) return callback(err);
data = ctx.data;
var update = data; var update = data;
var inst = data; var inst = data;
if(!(data instanceof Model)) { if(!(data instanceof Model)) {
inst = new Model(data); inst = new Model(data);
} }
update = inst.toObject(false); update = inst.toObject(false);
this.applyProperties(update, inst);
Model.applyProperties(update, inst);
Model = Model.lookupModel(update);
// FIXME(bajtos) validate the model!
// https://github.com/strongloop/loopback-datasource-juggler/issues/262
update = inst.toObject(true);
update = removeUndefined(update); update = removeUndefined(update);
Model = this.lookupModel(update); self.getDataSource().connector
this.getDataSource().connector.updateOrCreate(Model.modelName, update, function (err, data) { .updateOrCreate(Model.modelName, update, done);
function done(err, data) {
var obj; var obj;
if (data && !(data instanceof Model)) { if (data && !(data instanceof Model)) {
inst._initProperties(data); inst._initProperties(data);
@ -288,16 +329,31 @@ DataAccessObject.updateOrCreate = DataAccessObject.upsert = function upsert(data
} else { } else {
obj = data; obj = data;
} }
if (err) {
callback(err, obj);
if(!err) {
Model.emit('changed', inst);
}
} else {
Model.notifyObserversOf('after save', { Model: Model, instance: obj }, function(err) {
callback(err, obj); callback(err, obj);
if(!err) { if(!err) {
Model.emit('changed', inst); Model.emit('changed', inst);
} }
}); });
}
}
});
} else { } else {
this.findById(getIdValue(this, data), function (err, inst) { Model.findOne({ where: ctx.query.where }, { notify: false }, function (err, inst) {
if (err) { if (err) {
return callback(err); return callback(err);
} }
if (!isOriginalQuery) {
// The custom query returned from a hook may hide the fact that
// there is already a model with `id` value `data[idName(Model)]`
delete data[idName(Model)];
}
if (inst) { if (inst) {
inst.updateAttributes(data, callback); inst.updateAttributes(data, callback);
} else { } else {
@ -307,6 +363,7 @@ DataAccessObject.updateOrCreate = DataAccessObject.upsert = function upsert(data
} }
}); });
} }
}
}; };
/** /**
@ -332,11 +389,11 @@ DataAccessObject.findOrCreate = function findOrCreate(query, data, callback) {
}; };
} }
var t = this; var Model = this;
this.findOne(query, function (err, record) { Model.findOne(query, function (err, record) {
if (err) return callback(err); if (err) return callback(err);
if (record) return callback(null, record, false); if (record) return callback(null, record, false);
t.create(data, function (err, record) { Model.create(data, function (err, record) {
callback(err, record, record != null); callback(err, record, record != null);
}); });
}); });
@ -731,13 +788,22 @@ DataAccessObject._coerce = function (where) {
* @param {Function} callback Required callback function. Call this function with two arguments: `err` (null or Error) and an array of instances. * @param {Function} callback Required callback function. Call this function with two arguments: `err` (null or Error) and an array of instances.
*/ */
DataAccessObject.find = function find(query, cb) { DataAccessObject.find = function find(query, options, cb) {
if (stillConnecting(this.getDataSource(), this, arguments)) return; if (stillConnecting(this.getDataSource(), this, arguments)) return;
if (arguments.length === 1) { if (arguments.length === 1) {
cb = query; cb = query;
query = null; query = null;
options = {};
} }
if (cb === undefined && typeof options === 'function') {
cb = options;
options = {};
}
if (!options) options = {};
var self = this; var self = this;
query = query || {}; query = query || {};
@ -763,7 +829,11 @@ DataAccessObject.find = function find(query, cb) {
// do in memory query // do in memory query
// using all documents // using all documents
// TODO [fabien] use default scope here? // TODO [fabien] use default scope here?
this.getDataSource().connector.all(this.modelName, {}, function (err, data) {
self.notifyObserversOf('query', { Model: self, query: query }, function(err, ctx) {
if (err) return cb(err);
self.getDataSource().connector.all(self.modelName, {}, function (err, data) {
var memory = new Memory(); var memory = new Memory();
var modelName = self.modelName; var modelName = self.modelName;
@ -782,18 +852,20 @@ DataAccessObject.find = function find(query, cb) {
}); });
}); });
memory.all(modelName, query, cb); // FIXME: apply "includes" and other transforms - see allCb below
memory.all(modelName, ctx.query, cb);
} else { } else {
cb(null, []); cb(null, []);
} }
}.bind(this)); });
});
// already handled // already handled
return; return;
} }
} }
this.getDataSource().connector.all(this.modelName, query, function (err, data) { var allCb = function (err, data) {
if (data && data.forEach) { if (data && data.forEach) {
data.forEach(function (d, i) { data.forEach(function (d, i) {
var Model = self.lookupModel(d); var Model = self.lookupModel(d);
@ -840,7 +912,18 @@ DataAccessObject.find = function find(query, cb) {
} }
else else
cb(err, []); cb(err, []);
}
var self = this;
if (options.notify === false) {
self.getDataSource().connector.all(self.modelName, query, allCb);
} else {
this.notifyObserversOf('query', { Model: this, query: query }, function(err, ctx) {
if (err) return cb(err);
var query = ctx.query;
self.getDataSource().connector.all(self.modelName, query, allCb);
}); });
}
}; };
/** /**
@ -850,16 +933,22 @@ DataAccessObject.find = function find(query, cb) {
* For example: `{where: {test: 'me'}}`. * For example: `{where: {test: 'me'}}`.
* @param {Function} cb Callback function called with (err, instance) * @param {Function} cb Callback function called with (err, instance)
*/ */
DataAccessObject.findOne = function findOne(query, cb) { DataAccessObject.findOne = function findOne(query, options, cb) {
if (stillConnecting(this.getDataSource(), this, arguments)) return; if (stillConnecting(this.getDataSource(), this, arguments)) return;
if (typeof query === 'function') { if (typeof query === 'function') {
cb = query; cb = query;
query = {}; query = {};
} }
if (cb === undefined && typeof options === 'function') {
cb = options;
options = {};
}
query = query || {}; query = query || {};
query.limit = 1; query.limit = 1;
this.find(query, function (err, collection) { this.find(query, options, function (err, collection) {
if (err || !collection || !collection.length > 0) return cb(err, null); if (err || !collection || !collection.length > 0) return cb(err, null);
cb(err, collection[0]); cb(err, collection[0]);
}); });
@ -878,41 +967,79 @@ DataAccessObject.findOne = function findOne(query, cb) {
* @param {Object} [where] Optional object that defines the criteria. This is a "where" object. Do NOT pass a filter object. * @param {Object} [where] Optional object that defines the criteria. This is a "where" object. Do NOT pass a filter object.
* @param {Function} [cb] Callback called with (err) * @param {Function} [cb] Callback called with (err)
*/ */
DataAccessObject.remove = DataAccessObject.deleteAll = DataAccessObject.destroyAll = function destroyAll(where, cb) { DataAccessObject.remove = DataAccessObject.deleteAll = DataAccessObject.destroyAll = function destroyAll(where, options, cb) {
if (stillConnecting(this.getDataSource(), this, arguments)) return; if (stillConnecting(this.getDataSource(), this, arguments)) return;
var Model = this; var Model = this;
if (!cb && 'function' === typeof where) { if (!cb && !options && 'function' === typeof where) {
cb = where; cb = where;
where = undefined; where = undefined;
} }
if (!cb && typeof options === 'function') {
cb = options;
}
if (!cb) cb = function(){};
if (!options) options = {};
var query = { where: where }; var query = { where: where };
this.applyScope(query); this.applyScope(query);
where = query.where; where = query.where;
if (!where || (typeof where === 'object' && Object.keys(where).length === 0)) { var context = { Model: Model, where: whereIsEmpty(where) ? {} : where };
this.getDataSource().connector.destroyAll(this.modelName, function (err, data) { if (options.notify === false) {
cb && cb(err, data); doDelete(where);
if(!err) Model.emit('deletedAll'); } else {
}.bind(this)); query = { where: whereIsEmpty(where) ? {} : where };
Model.notifyObserversOf('query',
{ Model: Model, query: query },
function(err, ctx) {
if (err) return cb(err);
doDelete(ctx.query.where);
});
}
function doDelete(where) {
if (whereIsEmpty(where)) {
Model.getDataSource().connector.destroyAll(Model.modelName, done);
} else { } else {
try { try {
// Support an optional where object // Support an optional where object
where = removeUndefined(where); where = removeUndefined(where);
where = this._coerce(where); where = Model._coerce(where);
} catch (err) { } catch (err) {
return process.nextTick(function() { return process.nextTick(function() {
cb && cb(err); cb && cb(err);
}); });
} }
this.getDataSource().connector.destroyAll(this.modelName, where, function (err, data) {
cb && cb(err, data); Model.getDataSource().connector.destroyAll(Model.modelName, where, done);
if(!err) Model.emit('deletedAll', where);
}.bind(this)); }
function done(err, data) {
if (err) return cb(er);
if (options.notify === false) {
return cb(err, data);
}
Model.notifyObserversOf('after delete', { Model: Model, where: where }, function(err) {
cb(err, data);
if (!err)
Model.emit('deletedAll', whereIsEmpty(where) ? undefined : where);
});
}
} }
}; };
function whereIsEmpty(where) {
return !where ||
(typeof where === 'object' && Object.keys(where).length === 0)
}
/** /**
* Delete the record with the specified ID. * Delete the record with the specified ID.
* Aliases are `destroyById` and `deleteById`. * Aliases are `destroyById` and `deleteById`.
@ -969,7 +1096,12 @@ DataAccessObject.count = function (where, cb) {
}); });
} }
this.getDataSource().connector.count(this.modelName, cb, where); var Model = this;
this.notifyObserversOf('query', { Model: Model, query: { where: where } }, function(err, ctx) {
if (err) return cb(err);
where = ctx.query.where;
Model.getDataSource().connector.count(Model.modelName, cb, where);
});
}; };
/** /**
@ -1012,6 +1144,10 @@ DataAccessObject.prototype.save = function (options, callback) {
inst.setAttributes(data); inst.setAttributes(data);
} }
Model.notifyObserversOf('before save', { Model: Model, instance: inst }, function(err) {
if (err) return callback(err);
data = inst.toObject(true);
// validate first // validate first
if (!options.validate) { if (!options.validate) {
return save(); return save();
@ -1040,6 +1176,8 @@ DataAccessObject.prototype.save = function (options, callback) {
return callback(err, inst); return callback(err, inst);
} }
inst._initProperties(data, { persisted: true }); inst._initProperties(data, { persisted: true });
Model.notifyObserversOf('after save', { Model: Model, instance: inst }, function(err) {
if (err) return callback(err, inst);
updateDone.call(inst, function () { updateDone.call(inst, function () {
saveDone.call(inst, function () { saveDone.call(inst, function () {
callback(err, inst); callback(err, inst);
@ -1049,9 +1187,11 @@ DataAccessObject.prototype.save = function (options, callback) {
}); });
}); });
}); });
});
}, data, callback); }, data, callback);
}, data, callback); }, data, callback);
} }
});
}; };
/** /**
@ -1100,17 +1240,49 @@ DataAccessObject.updateAll = function (where, data, cb) {
where = query.where; where = query.where;
var Model = this;
Model.notifyObserversOf('query', { Model: Model, query: { where: where } }, function(err, ctx) {
if (err) return cb && cb(err);
Model.notifyObserversOf(
'before save',
{
Model: Model,
where: ctx.query.where,
data: data
},
function(err, ctx) {
if (err) return cb && cb(err);
doUpdate(ctx.where, ctx.data);
});
});
function doUpdate(where, data) {
try { try {
where = removeUndefined(where); where = removeUndefined(where);
where = this._coerce(where); where = Model._coerce(where);
} catch (err) { } catch (err) {
return process.nextTick(function () { return process.nextTick(function () {
cb && cb(err); cb && cb(err);
}); });
} }
var connector = this.getDataSource().connector; var connector = Model.getDataSource().connector;
connector.update(this.modelName, where, data, cb); connector.update(Model.modelName, where, data, function(err, count) {
if (err) return cb && cb (err);
Model.notifyObserversOf(
'after save',
{
Model: Model,
where: where,
data: data
},
function(err, ctx) {
return cb && cb(err, count);
});
});
}
}; };
DataAccessObject.prototype.isNewRecord = function () { DataAccessObject.prototype.isNewRecord = function () {
@ -1134,21 +1306,48 @@ DataAccessObject.prototype.remove =
DataAccessObject.prototype.delete = DataAccessObject.prototype.delete =
DataAccessObject.prototype.destroy = function (cb) { DataAccessObject.prototype.destroy = function (cb) {
if (stillConnecting(this.getDataSource(), this, arguments)) return; if (stillConnecting(this.getDataSource(), this, arguments)) return;
var self = this;
var Model = this.constructor; var Model = this.constructor;
var id = getIdValue(this.constructor, this); var id = getIdValue(this.constructor, this);
this.trigger('destroy', function (destroyed) { Model.notifyObserversOf(
this._adapter().destroy(this.constructor.modelName, id, function (err) { 'query',
{ Model: Model, query: byIdQuery(Model, id) },
function(err, ctx) {
if (err) return cb(err);
doDeleteInstance(ctx.query.where);
});
function doDeleteInstance(where) {
if (!isWhereByGivenId(Model, where, id)) {
// A hook modified the query, it is no longer
// a simple 'delete model with the given id'.
// We must switch to full query-based delete.
Model.deleteAll(where, { notify: false }, function(err) {
if (err) return cb && cb(err);
Model.notifyObserversOf('after delete', { Model: Model, where: where }, function(err) {
cb && cb(err);
if (!err) Model.emit('deleted', id);
});
});
return;
}
self.trigger('destroy', function (destroyed) {
self._adapter().destroy(self.constructor.modelName, id, function (err) {
if (err) { if (err) {
return cb(err); return cb(err);
} }
destroyed(function () { destroyed(function () {
if (cb) cb(); Model.notifyObserversOf('after delete', { Model: Model, where: where }, function(err) {
Model.emit('deleted', id); cb && cb(err);
if (!err) Model.emit('deleted', id);
});
});
}); });
}.bind(this));
}, null, cb); }, null, cb);
}
}; };
/** /**
@ -1231,15 +1430,29 @@ DataAccessObject.prototype.updateAttributes = function updateAttributes(data, cb
data = {}; data = {};
} }
if (!cb) {
cb = function() {};
}
var context = {
Model: Model,
where: byIdQuery(Model, getIdValue(Model, inst)).where,
data: data
};
Model.notifyObserversOf('before save', context, function(err, ctx) {
if (err) return cb(err);
data = ctx.data;
// update instance's properties // update instance's properties
inst.setAttributes(data); inst.setAttributes(data);
inst.isValid(function (valid) { inst.isValid(function (valid) {
if (!valid) { if (!valid) {
if (cb) {
cb(new ValidationError(inst), inst); cb(new ValidationError(inst), inst);
return;
} }
} else {
inst.trigger('save', function (saveDone) { inst.trigger('save', function (saveDone) {
inst.trigger('update', function (done) { inst.trigger('update', function (done) {
var typedData = {}; var typedData = {};
@ -1260,15 +1473,18 @@ DataAccessObject.prototype.updateAttributes = function updateAttributes(data, cb
if (!err) inst.__persisted = true; if (!err) inst.__persisted = true;
done.call(inst, function () { done.call(inst, function () {
saveDone.call(inst, function () { saveDone.call(inst, function () {
if(cb) cb(err, inst); if (err) return cb(err, inst);
Model.notifyObserversOf('after save', { Model: Model, instance: inst }, function(err) {
if(!err) Model.emit('changed', inst); if(!err) Model.emit('changed', inst);
cb(err, inst);
});
}); });
}); });
}); });
}, data, cb); }, data, cb);
}, data, cb); }, data, cb);
}
}, data); }, data);
});
}; };
/** /**

View File

@ -445,7 +445,7 @@ function addHooks(name, done) {
}; };
User['after' + name] = function (next) { User['after' + name] = function (next) {
(new Boolean(called)).should.equal(true); (new Boolean(called)).should.equal(true);
this.email.should.equal(random); this.should.have.property('email', random);
done(); done();
}; };
} }

View File

@ -5,6 +5,7 @@ var fs = require('fs');
var assert = require('assert'); var assert = require('assert');
var async = require('async'); var async = require('async');
var should = require('./init.js'); var should = require('./init.js');
var Memory = require('../lib/connectors/memory').Memory;
describe('Memory connector', function () { describe('Memory connector', function () {
var file = path.join(__dirname, 'memory.json'); var file = path.join(__dirname, 'memory.json');
@ -359,6 +360,17 @@ describe('Memory connector', function () {
}); });
}); });
require('./persistence-hooks.suite')(
new DataSource({ connector: Memory }),
should);
});
describe('Unoptimized connector', function() {
var ds = new DataSource({ connector: Memory });
// disable optimized methods
ds.connector.updateOrCreate = false;
require('./persistence-hooks.suite')(ds, should);
}); });

File diff suppressed because it is too large Load Diff