2013-08-13 16:37:09 +00:00
|
|
|
/*!
|
2013-05-17 17:54:14 +00:00
|
|
|
* Module dependencies
|
|
|
|
*/
|
2013-05-24 15:02:58 +00:00
|
|
|
|
2013-10-02 05:14:21 +00:00
|
|
|
var inflection = require('inflection');
|
2013-05-17 17:54:14 +00:00
|
|
|
var EventEmitter = require('events').EventEmitter;
|
|
|
|
var util = require('util');
|
2013-11-08 01:11:17 +00:00
|
|
|
var assert = require('assert');
|
2015-02-27 16:03:39 +00:00
|
|
|
var deprecated = require('depd')('loopback-datasource-juggler');
|
2013-10-02 05:14:21 +00:00
|
|
|
var DefaultModelBaseClass = require('./model.js');
|
|
|
|
var List = require('./list.js');
|
|
|
|
var ModelDefinition = require('./model-definition.js');
|
2013-12-06 23:52:39 +00:00
|
|
|
var mergeSettings = require('./utils').mergeSettings;
|
2014-08-08 08:20:57 +00:00
|
|
|
var MixinProvider = require('./mixins');
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2013-08-07 21:51:32 +00:00
|
|
|
// Set up types
|
|
|
|
require('./types')(ModelBuilder);
|
|
|
|
|
|
|
|
var introspect = require('./introspection')(ModelBuilder);
|
|
|
|
|
2014-03-12 23:28:46 +00:00
|
|
|
/*!
|
2013-05-17 17:54:14 +00:00
|
|
|
* Export public API
|
|
|
|
*/
|
2013-08-13 16:37:09 +00:00
|
|
|
exports.ModelBuilder = exports.Schema = ModelBuilder;
|
2013-05-20 23:05:59 +00:00
|
|
|
|
2013-08-13 16:37:09 +00:00
|
|
|
/*!
|
2013-05-17 17:54:14 +00:00
|
|
|
* Helpers
|
|
|
|
*/
|
|
|
|
var slice = Array.prototype.slice;
|
|
|
|
|
|
|
|
/**
|
2014-03-12 23:28:46 +00:00
|
|
|
* ModelBuilder - A builder to define data models.
|
2015-01-19 12:39:31 +00:00
|
|
|
*
|
2014-06-17 20:18:18 +00:00
|
|
|
* @property {Object} definitions Definitions of the models.
|
|
|
|
* @property {Object} models Model constructors
|
2014-03-12 23:28:46 +00:00
|
|
|
* @class
|
2013-05-17 17:54:14 +00:00
|
|
|
*/
|
2013-05-24 05:20:20 +00:00
|
|
|
function ModelBuilder() {
|
2014-01-24 17:09:53 +00:00
|
|
|
// create blank models pool
|
|
|
|
this.models = {};
|
|
|
|
this.definitions = {};
|
2014-08-08 08:20:57 +00:00
|
|
|
this.mixins = new MixinProvider(this);
|
2014-07-08 21:04:20 +00:00
|
|
|
this.defaultModelBaseClass = DefaultModelBaseClass;
|
2013-08-09 22:16:32 +00:00
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2013-10-02 05:14:21 +00:00
|
|
|
// Inherit from EventEmitter
|
2013-05-24 05:20:20 +00:00
|
|
|
util.inherits(ModelBuilder, EventEmitter);
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2013-10-02 05:14:21 +00:00
|
|
|
// Create a default instance
|
|
|
|
ModelBuilder.defaultInstance = new ModelBuilder();
|
|
|
|
|
2013-11-08 01:11:17 +00:00
|
|
|
function isModelClass(cls) {
|
2014-01-24 17:09:53 +00:00
|
|
|
if (!cls) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return cls.prototype instanceof DefaultModelBaseClass;
|
2013-11-08 01:11:17 +00:00
|
|
|
}
|
|
|
|
|
2013-12-19 00:13:41 +00:00
|
|
|
/**
|
2014-03-12 23:28:46 +00:00
|
|
|
* Get a model by name.
|
2015-01-19 12:39:31 +00:00
|
|
|
*
|
2013-12-19 00:13:41 +00:00
|
|
|
* @param {String} name The model name
|
2014-03-12 23:28:46 +00:00
|
|
|
* @param {Boolean} forceCreate Whether the create a stub for the given name if a model doesn't exist.
|
2014-06-17 20:21:21 +00:00
|
|
|
* @returns {*} The model class
|
2013-12-19 00:13:41 +00:00
|
|
|
*/
|
2014-01-24 17:09:53 +00:00
|
|
|
ModelBuilder.prototype.getModel = function (name, forceCreate) {
|
2013-12-19 00:13:41 +00:00
|
|
|
var model = this.models[name];
|
2014-01-24 17:09:53 +00:00
|
|
|
if (!model && forceCreate) {
|
|
|
|
model = this.define(name, {}, {unresolved: true});
|
2013-12-19 00:13:41 +00:00
|
|
|
}
|
|
|
|
return model;
|
2013-11-09 01:13:00 +00:00
|
|
|
};
|
|
|
|
|
2014-01-28 22:23:48 +00:00
|
|
|
/**
|
|
|
|
* Get the model definition by name
|
|
|
|
* @param {String} name The model name
|
|
|
|
* @returns {ModelDefinition} The model definition
|
|
|
|
*/
|
2014-01-24 17:09:53 +00:00
|
|
|
ModelBuilder.prototype.getModelDefinition = function (name) {
|
2013-11-09 01:13:00 +00:00
|
|
|
return this.definitions[name];
|
|
|
|
};
|
|
|
|
|
2013-05-17 17:54:14 +00:00
|
|
|
/**
|
2014-03-12 23:28:46 +00:00
|
|
|
* Define a model class.
|
|
|
|
* Simple example:
|
2013-05-17 17:54:14 +00:00
|
|
|
* ```
|
2013-11-15 19:12:33 +00:00
|
|
|
* var User = modelBuilder.define('User', {
|
2013-05-17 17:54:14 +00:00
|
|
|
* email: String,
|
|
|
|
* password: String,
|
|
|
|
* birthDate: Date,
|
|
|
|
* activated: Boolean
|
|
|
|
* });
|
|
|
|
* ```
|
2014-03-12 23:28:46 +00:00
|
|
|
* More advanced example:
|
2013-05-17 17:54:14 +00:00
|
|
|
* ```
|
2013-11-15 19:12:33 +00:00
|
|
|
* var User = modelBuilder.define('User', {
|
2013-05-17 17:54:14 +00:00
|
|
|
* email: { type: String, limit: 150, index: true },
|
|
|
|
* password: { type: String, limit: 50 },
|
|
|
|
* birthDate: Date,
|
|
|
|
* registrationDate: {type: Date, default: function () { return new Date }},
|
|
|
|
* activated: { type: Boolean, default: false }
|
|
|
|
* });
|
|
|
|
* ```
|
2014-03-12 23:28:46 +00:00
|
|
|
*
|
2015-01-19 12:39:31 +00:00
|
|
|
* @param {String} className Name of class
|
2014-03-12 23:28:46 +00:00
|
|
|
* @param {Object} properties Hash of class properties in format `{property: Type, property2: Type2, ...}` or `{property: {type: Type}, property2: {type: Type2}, ...}`
|
|
|
|
* @param {Object} settings Other configuration of class
|
2015-02-07 19:15:28 +00:00
|
|
|
* @param {Function} parent Parent model
|
2014-03-12 23:28:46 +00:00
|
|
|
* @return newly created class
|
|
|
|
*
|
2013-05-17 17:54:14 +00:00
|
|
|
*/
|
2013-07-01 23:49:43 +00:00
|
|
|
ModelBuilder.prototype.define = function defineClass(className, properties, settings, parent) {
|
2014-01-24 17:09:53 +00:00
|
|
|
var modelBuilder = this;
|
|
|
|
var args = slice.call(arguments);
|
|
|
|
var pluralName = (settings && settings.plural) ||
|
|
|
|
inflection.pluralize(className);
|
2015-01-19 12:39:31 +00:00
|
|
|
|
2014-08-04 17:45:47 +00:00
|
|
|
var httpOptions = (settings && settings.http) || {};
|
|
|
|
var pathName = httpOptions.path || pluralName;
|
2015-01-19 12:39:31 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
if (!className) {
|
|
|
|
throw new Error('Class name required');
|
|
|
|
}
|
|
|
|
if (args.length === 1) {
|
|
|
|
properties = {};
|
|
|
|
args.push(properties);
|
|
|
|
}
|
|
|
|
if (args.length === 2) {
|
|
|
|
settings = {};
|
|
|
|
args.push(settings);
|
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
properties = properties || {};
|
|
|
|
settings = settings || {};
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Set the strict mode to be false by default
|
|
|
|
if (settings.strict === undefined || settings.strict === null) {
|
|
|
|
settings.strict = false;
|
|
|
|
}
|
2013-08-26 20:38:24 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Set up the base model class
|
2014-07-08 21:04:20 +00:00
|
|
|
var ModelBaseClass = parent || this.defaultModelBaseClass;
|
2014-01-24 17:09:53 +00:00
|
|
|
var baseClass = settings.base || settings['super'];
|
|
|
|
if (baseClass) {
|
2014-10-10 11:42:59 +00:00
|
|
|
// Normalize base model property
|
|
|
|
settings.base = baseClass;
|
|
|
|
delete settings['super'];
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
if (isModelClass(baseClass)) {
|
|
|
|
ModelBaseClass = baseClass;
|
|
|
|
} else {
|
|
|
|
ModelBaseClass = this.models[baseClass];
|
|
|
|
assert(ModelBaseClass, 'Base model is not found: ' + baseClass);
|
2013-11-08 01:11:17 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
2013-11-08 01:11:17 +00:00
|
|
|
|
2015-02-07 19:15:28 +00:00
|
|
|
// Make sure base properties are inherited
|
|
|
|
// See https://github.com/strongloop/loopback-datasource-juggler/issues/293
|
|
|
|
if ((parent && !settings.base) || (!parent && settings.base)) {
|
|
|
|
return ModelBaseClass.extend(className, properties, settings);
|
|
|
|
}
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Check if there is a unresolved model with the same name
|
|
|
|
var ModelClass = this.models[className];
|
|
|
|
|
|
|
|
// Create the ModelClass if it doesn't exist or it's resolved (override)
|
|
|
|
// TODO: [rfeng] We need to decide what names to use for built-in models such as User.
|
|
|
|
if (!ModelClass || !ModelClass.settings.unresolved) {
|
|
|
|
// every class can receive hash of data as optional param
|
2014-02-11 06:38:59 +00:00
|
|
|
ModelClass = function ModelConstructor(data, options) {
|
2014-01-24 17:09:53 +00:00
|
|
|
if (!(this instanceof ModelConstructor)) {
|
2014-02-11 06:38:59 +00:00
|
|
|
return new ModelConstructor(data, options);
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
|
|
|
if (ModelClass.settings.unresolved) {
|
|
|
|
throw new Error('Model ' + ModelClass.modelName + ' is not defined.');
|
|
|
|
}
|
|
|
|
ModelBaseClass.apply(this, arguments);
|
|
|
|
};
|
|
|
|
// mix in EventEmitter (don't inherit from)
|
|
|
|
var events = new EventEmitter();
|
2014-07-28 20:02:00 +00:00
|
|
|
// The model can have more than 10 listeners for lazy relationship setup
|
|
|
|
// See https://github.com/strongloop/loopback/issues/404
|
|
|
|
events.setMaxListeners(32);
|
2014-01-24 17:09:53 +00:00
|
|
|
for (var f in EventEmitter.prototype) {
|
|
|
|
if (typeof EventEmitter.prototype[f] === 'function') {
|
2015-02-27 16:03:39 +00:00
|
|
|
if (f !== 'on') {
|
|
|
|
ModelClass[f] = EventEmitter.prototype[f].bind(events);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// report deprecation warnings at the time Model.on() is called
|
|
|
|
ModelClass.on = function(event) {
|
|
|
|
if (['changed', 'deleted', 'deletedAll'].indexOf(event) !== -1) {
|
|
|
|
deprecated(this.modelName + '\'s event "' + event + '" ' +
|
|
|
|
'is deprecated, use Operation hooks instead. ' +
|
|
|
|
'http://docs.strongloop.com/display/LB/Operation+hooks');
|
|
|
|
}
|
|
|
|
EventEmitter.prototype.on.apply(events, arguments);
|
|
|
|
};
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
2013-11-05 06:53:02 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
hiddenProperty(ModelClass, 'modelName', className);
|
|
|
|
}
|
2013-10-02 22:18:50 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
util.inherits(ModelClass, ModelBaseClass);
|
2013-12-11 22:45:27 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// store class in model pool
|
|
|
|
this.models[className] = ModelClass;
|
2013-11-05 06:53:02 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Return the unresolved model
|
|
|
|
if (settings.unresolved) {
|
|
|
|
ModelClass.settings = {unresolved: true};
|
|
|
|
return ModelClass;
|
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Add metadata to the ModelClass
|
|
|
|
hiddenProperty(ModelClass, 'modelBuilder', modelBuilder);
|
2014-08-08 08:20:57 +00:00
|
|
|
hiddenProperty(ModelClass, 'dataSource', null); // Keep for back-compatibility
|
2014-01-24 17:09:53 +00:00
|
|
|
hiddenProperty(ModelClass, 'pluralModelName', pluralName);
|
|
|
|
hiddenProperty(ModelClass, 'relations', {});
|
2015-04-24 15:23:13 +00:00
|
|
|
if (pathName[0] !== '/') {
|
|
|
|
// Support both flavors path: 'x' and path: '/x'
|
|
|
|
pathName = '/' + pathName;
|
|
|
|
}
|
|
|
|
hiddenProperty(ModelClass, 'http', { path: pathName });
|
2014-07-21 17:21:30 +00:00
|
|
|
hiddenProperty(ModelClass, 'base', ModelBaseClass);
|
2015-01-19 12:39:31 +00:00
|
|
|
hiddenProperty(ModelClass, '_observers', {});
|
2014-01-24 17:09:53 +00:00
|
|
|
|
|
|
|
// inherit ModelBaseClass static methods
|
|
|
|
for (var i in ModelBaseClass) {
|
|
|
|
// We need to skip properties that are already in the subclass, for example, the event emitter methods
|
|
|
|
if (i !== '_mixins' && !(i in ModelClass)) {
|
|
|
|
ModelClass[i] = ModelBaseClass[i];
|
2013-05-17 17:54:14 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
2013-12-19 00:13:41 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Load and inject the model classes
|
|
|
|
if (settings.models) {
|
|
|
|
Object.keys(settings.models).forEach(function (m) {
|
|
|
|
var model = settings.models[m];
|
|
|
|
ModelClass[m] = typeof model === 'string' ? modelBuilder.getModel(model, true) : model;
|
|
|
|
});
|
|
|
|
}
|
2013-10-02 22:18:50 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
ModelClass.getter = {};
|
|
|
|
ModelClass.setter = {};
|
2013-10-02 22:18:50 +00:00
|
|
|
|
2015-03-03 18:27:22 +00:00
|
|
|
for (var p in properties) {
|
2015-04-02 07:49:04 +00:00
|
|
|
// Remove properties that reverted by the subclass
|
2015-03-03 18:27:22 +00:00
|
|
|
if (properties[p] === null || properties[p] === false) {
|
|
|
|
// Hide the base property
|
|
|
|
delete properties[p];
|
|
|
|
}
|
2015-04-02 07:49:04 +00:00
|
|
|
|
|
|
|
// Warn about properties with unsupported names
|
|
|
|
if (/\./.test(p)) {
|
|
|
|
deprecated('Property names containing a dot are not supported. ' +
|
|
|
|
'Model: ' + className + ', property: ' + p);
|
|
|
|
}
|
2015-03-03 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
var modelDefinition = new ModelDefinition(this, className, properties, settings);
|
2013-10-02 22:18:50 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
this.definitions[className] = modelDefinition;
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// expose properties on the ModelClass
|
|
|
|
ModelClass.definition = modelDefinition;
|
|
|
|
// keep a pointer to settings as models can use it for configuration
|
|
|
|
ModelClass.settings = modelDefinition.settings;
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
var idInjection = settings.idInjection;
|
|
|
|
if (idInjection !== false) {
|
|
|
|
// Default to true if undefined
|
|
|
|
idInjection = true;
|
|
|
|
}
|
2013-10-02 22:18:50 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
var idNames = modelDefinition.idNames();
|
|
|
|
if (idNames.length > 0) {
|
|
|
|
// id already exists
|
|
|
|
idInjection = false;
|
|
|
|
}
|
2013-10-02 22:18:50 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Add the id property
|
|
|
|
if (idInjection) {
|
|
|
|
// Set up the id property
|
|
|
|
ModelClass.definition.defineProperty('id', { type: Number, id: 1, generated: true });
|
|
|
|
}
|
2013-10-07 04:13:52 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
idNames = modelDefinition.idNames(); // Reload it after rebuild
|
|
|
|
// Create a virtual property 'id'
|
|
|
|
if (idNames.length === 1) {
|
|
|
|
var idProp = idNames[0];
|
|
|
|
if (idProp !== 'id') {
|
|
|
|
Object.defineProperty(ModelClass.prototype, 'id', {
|
|
|
|
get: function () {
|
2015-01-12 16:43:55 +00:00
|
|
|
var idProp = ModelClass.definition.idNames()[0];
|
2014-01-24 17:09:53 +00:00
|
|
|
return this.__data[idProp];
|
|
|
|
},
|
|
|
|
configurable: true,
|
|
|
|
enumerable: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Now the id property is an object that consists of multiple keys
|
|
|
|
Object.defineProperty(ModelClass.prototype, 'id', {
|
|
|
|
get: function () {
|
|
|
|
var compositeId = {};
|
|
|
|
var idNames = ModelClass.definition.idNames();
|
2015-01-22 02:39:47 +00:00
|
|
|
for (var i = 0, p; i < idNames.length; i++) {
|
|
|
|
p = idNames[i];
|
2014-01-24 17:09:53 +00:00
|
|
|
compositeId[p] = this.__data[p];
|
2013-10-07 04:13:52 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
return compositeId;
|
|
|
|
},
|
|
|
|
configurable: true,
|
|
|
|
enumerable: false
|
|
|
|
});
|
|
|
|
}
|
2013-10-07 04:13:52 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// A function to loop through the properties
|
|
|
|
ModelClass.forEachProperty = function (cb) {
|
2014-06-13 06:35:20 +00:00
|
|
|
var props = ModelClass.definition.properties;
|
|
|
|
var keys = Object.keys(props);
|
|
|
|
for (var i = 0, n = keys.length; i < n; i++) {
|
|
|
|
cb(keys[i], props[keys[i]]);
|
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// A function to attach the model class to a data source
|
|
|
|
ModelClass.attachTo = function (dataSource) {
|
|
|
|
dataSource.attach(this);
|
|
|
|
};
|
|
|
|
|
2014-06-17 20:18:18 +00:00
|
|
|
/** Extend the model with the specified model, properties, and other settings.
|
|
|
|
* For example, to extend an existing model, for example, a built-in model:
|
|
|
|
*
|
|
|
|
* ```js
|
|
|
|
* var Customer = User.extend('customer', {
|
|
|
|
* accountId: String,
|
|
|
|
* vip: Boolean
|
|
|
|
* });
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* To extend the base model, essentially creating a new model:
|
|
|
|
* ```js
|
|
|
|
* var user = loopback.Model.extend('user', properties, options);
|
|
|
|
* ```
|
2015-01-19 12:39:31 +00:00
|
|
|
*
|
2014-06-17 20:18:18 +00:00
|
|
|
* @param {String} className Name of the new model being defined.
|
|
|
|
* @options {Object} properties Properties to define for the model, added to properties of model being extended.
|
|
|
|
* @options {Object} settings Model settings, such as relations and acls.
|
|
|
|
*
|
2015-01-19 12:39:31 +00:00
|
|
|
*/
|
2014-01-24 17:09:53 +00:00
|
|
|
ModelClass.extend = function (className, subclassProperties, subclassSettings) {
|
|
|
|
var properties = ModelClass.definition.properties;
|
|
|
|
var settings = ModelClass.definition.settings;
|
|
|
|
|
|
|
|
subclassProperties = subclassProperties || {};
|
|
|
|
subclassSettings = subclassSettings || {};
|
|
|
|
|
|
|
|
// Check if subclass redefines the ids
|
|
|
|
var idFound = false;
|
|
|
|
for (var k in subclassProperties) {
|
2015-03-03 18:27:22 +00:00
|
|
|
if (subclassProperties[k] && subclassProperties[k].id) {
|
2014-01-24 17:09:53 +00:00
|
|
|
idFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-10-02 22:18:50 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Merging the properties
|
2014-06-13 06:35:20 +00:00
|
|
|
var keys = Object.keys(properties);
|
|
|
|
for (var i = 0, n = keys.length; i < n; i++) {
|
|
|
|
var key = keys[i];
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
if (idFound && properties[key].id) {
|
|
|
|
// don't inherit id properties
|
2014-06-13 06:35:20 +00:00
|
|
|
continue;
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
|
|
|
if (subclassProperties[key] === undefined) {
|
|
|
|
subclassProperties[key] = properties[key];
|
|
|
|
}
|
2014-06-13 06:35:20 +00:00
|
|
|
}
|
2013-12-06 23:52:39 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Merge the settings
|
2014-10-10 11:42:59 +00:00
|
|
|
var originalSubclassSettings = subclassSettings;
|
2014-01-24 17:09:53 +00:00
|
|
|
subclassSettings = mergeSettings(settings, subclassSettings);
|
2013-10-02 22:18:50 +00:00
|
|
|
|
2014-10-10 11:42:59 +00:00
|
|
|
// Ensure 'base' is not inherited. Note we don't have to delete 'super'
|
|
|
|
// as that is removed from settings by modelBuilder.define and thus
|
|
|
|
// it is never inherited
|
2015-02-07 19:15:28 +00:00
|
|
|
if (!originalSubclassSettings.base) {
|
|
|
|
subclassSettings.base = ModelClass;
|
|
|
|
}
|
2014-10-10 11:42:59 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Define the subclass
|
|
|
|
var subClass = modelBuilder.define(className, subclassProperties, subclassSettings, ModelClass);
|
2013-06-12 22:45:31 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Calling the setup function
|
|
|
|
if (typeof subClass.setup === 'function') {
|
|
|
|
subClass.setup.call(subClass);
|
|
|
|
}
|
|
|
|
|
|
|
|
return subClass;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a property for the model class
|
2014-03-12 23:28:46 +00:00
|
|
|
* @param {String} propertyName Name of the property.
|
2014-01-24 17:09:53 +00:00
|
|
|
*/
|
|
|
|
ModelClass.registerProperty = function (propertyName) {
|
|
|
|
var properties = modelDefinition.build();
|
|
|
|
var prop = properties[propertyName];
|
|
|
|
var DataType = prop.type;
|
|
|
|
if (!DataType) {
|
|
|
|
throw new Error('Invalid type for property ' + propertyName);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prop.required) {
|
|
|
|
var requiredOptions = typeof prop.required === 'object' ? prop.required : undefined;
|
|
|
|
ModelClass.validatesPresenceOf(propertyName, requiredOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.defineProperty(ModelClass.prototype, propertyName, {
|
|
|
|
get: function () {
|
|
|
|
if (ModelClass.getter[propertyName]) {
|
|
|
|
return ModelClass.getter[propertyName].call(this); // Try getter first
|
|
|
|
} else {
|
|
|
|
return this.__data && this.__data[propertyName]; // Try __data
|
2013-05-17 17:54:14 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
},
|
|
|
|
set: function (value) {
|
2014-02-11 06:38:59 +00:00
|
|
|
var DataType = ModelClass.definition.properties[propertyName].type;
|
|
|
|
if (Array.isArray(DataType) || DataType === Array) {
|
|
|
|
DataType = List;
|
2014-06-13 06:35:20 +00:00
|
|
|
} else if (DataType === Date) {
|
|
|
|
DataType = DateType;
|
2015-02-08 18:54:42 +00:00
|
|
|
} else if (DataType === Boolean) {
|
|
|
|
DataType = BooleanType;
|
2014-02-11 06:38:59 +00:00
|
|
|
} else if (typeof DataType === 'string') {
|
|
|
|
DataType = modelBuilder.resolveType(DataType);
|
|
|
|
}
|
2015-03-27 09:45:14 +00:00
|
|
|
|
|
|
|
var persistUndefinedAsNull = ModelClass.definition.settings.persistUndefinedAsNull;
|
|
|
|
if (value === undefined && persistUndefinedAsNull) {
|
|
|
|
value = null;
|
|
|
|
}
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
if (ModelClass.setter[propertyName]) {
|
|
|
|
ModelClass.setter[propertyName].call(this, value); // Try setter first
|
|
|
|
} else {
|
2014-06-13 06:35:20 +00:00
|
|
|
this.__data = this.__data || {};
|
2014-01-24 17:09:53 +00:00
|
|
|
if (value === null || value === undefined) {
|
|
|
|
this.__data[propertyName] = value;
|
|
|
|
} else {
|
|
|
|
if (DataType === List) {
|
|
|
|
this.__data[propertyName] = DataType(value, properties[propertyName].type, this.__data);
|
|
|
|
} else {
|
|
|
|
// Assume the type constructor handles Constructor() call
|
|
|
|
// If not, we should call new DataType(value).valueOf();
|
2014-02-26 20:10:15 +00:00
|
|
|
this.__data[propertyName] = (value instanceof DataType) ? value : DataType(value);
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-28 20:17:12 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
},
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true
|
|
|
|
});
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// FIXME: [rfeng] Do we need to keep the raw data?
|
|
|
|
// Use $ as the prefix to avoid conflicts with properties such as _id
|
|
|
|
Object.defineProperty(ModelClass.prototype, '$' + propertyName, {
|
|
|
|
get: function () {
|
|
|
|
return this.__data && this.__data[propertyName];
|
|
|
|
},
|
|
|
|
set: function (value) {
|
|
|
|
if (!this.__data) {
|
|
|
|
this.__data = {};
|
|
|
|
}
|
|
|
|
this.__data[propertyName] = value;
|
|
|
|
},
|
|
|
|
configurable: true,
|
|
|
|
enumerable: false
|
|
|
|
});
|
|
|
|
};
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-06-13 06:35:20 +00:00
|
|
|
var props = ModelClass.definition.properties;
|
|
|
|
var keys = Object.keys(props);
|
|
|
|
var size = keys.length;
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
var propertyName = keys[i];
|
|
|
|
ModelClass.registerProperty(propertyName);
|
|
|
|
}
|
2013-11-05 06:53:02 +00:00
|
|
|
|
2014-08-06 11:26:47 +00:00
|
|
|
var mixinSettings = settings.mixins || {};
|
2014-08-08 08:20:57 +00:00
|
|
|
keys = Object.keys(mixinSettings);
|
|
|
|
size = keys.length;
|
2014-08-05 14:16:10 +00:00
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
var name = keys[i];
|
2014-08-06 11:26:47 +00:00
|
|
|
var mixin = mixinSettings[name];
|
2014-08-08 08:20:57 +00:00
|
|
|
if (mixin === true) {
|
|
|
|
mixin = {};
|
|
|
|
}
|
2014-08-17 10:29:04 +00:00
|
|
|
if (Array.isArray(mixin)) {
|
|
|
|
mixin.forEach(function(m) {
|
|
|
|
if (m === true) m = {};
|
|
|
|
if (typeof m === 'object') {
|
|
|
|
modelBuilder.mixins.applyMixin(ModelClass, name, m);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else if (typeof mixin === 'object') {
|
2014-08-08 08:20:57 +00:00
|
|
|
modelBuilder.mixins.applyMixin(ModelClass, name, mixin);
|
2014-08-05 14:16:10 +00:00
|
|
|
}
|
|
|
|
}
|
2015-01-19 12:39:31 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
ModelClass.emit('defined', ModelClass);
|
|
|
|
|
|
|
|
return ModelClass;
|
2013-05-17 17:54:14 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-06-13 06:35:20 +00:00
|
|
|
// DataType for Date
|
|
|
|
function DateType(arg) {
|
2015-02-08 18:54:42 +00:00
|
|
|
var d = new Date(arg);
|
|
|
|
if (isNaN(d.getTime())) {
|
|
|
|
throw new Error('Invalid date: ' + arg);
|
|
|
|
}
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Relax the Boolean coercision
|
|
|
|
function BooleanType(arg) {
|
|
|
|
if (typeof arg === 'string') {
|
|
|
|
switch (arg) {
|
|
|
|
case 'true':
|
|
|
|
case '1':
|
|
|
|
return true;
|
|
|
|
case 'false':
|
|
|
|
case '0':
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (arg == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return Boolean(arg);
|
2014-06-13 06:35:20 +00:00
|
|
|
}
|
|
|
|
|
2013-05-17 17:54:14 +00:00
|
|
|
/**
|
2013-10-02 05:14:21 +00:00
|
|
|
* Define single property named `propertyName` on `model`
|
2013-05-17 17:54:14 +00:00
|
|
|
*
|
2014-03-12 23:28:46 +00:00
|
|
|
* @param {String} model Name of model
|
|
|
|
* @param {String} propertyName Name of property
|
|
|
|
* @param {Object} propertyDefinition Property settings
|
2013-05-17 17:54:14 +00:00
|
|
|
*/
|
2013-10-02 05:14:21 +00:00
|
|
|
ModelBuilder.prototype.defineProperty = function (model, propertyName, propertyDefinition) {
|
2014-01-24 17:09:53 +00:00
|
|
|
this.definitions[model].defineProperty(propertyName, propertyDefinition);
|
|
|
|
this.models[model].registerProperty(propertyName);
|
2013-05-17 17:54:14 +00:00
|
|
|
};
|
|
|
|
|
2014-05-23 11:18:06 +00:00
|
|
|
/**
|
|
|
|
* Define a new value type that can be used in model schemas as a property type.
|
|
|
|
* @param {function()} type Type constructor.
|
|
|
|
* @param {string[]=} aliases Optional list of alternative names for this type.
|
|
|
|
*/
|
|
|
|
ModelBuilder.prototype.defineValueType = function(type, aliases) {
|
|
|
|
ModelBuilder.registerType(type, aliases);
|
|
|
|
};
|
|
|
|
|
2013-05-17 17:54:14 +00:00
|
|
|
/**
|
2014-06-17 20:18:18 +00:00
|
|
|
* Extend existing model with specified properties
|
2013-05-17 17:54:14 +00:00
|
|
|
*
|
|
|
|
* Example:
|
2014-06-17 20:18:18 +00:00
|
|
|
* Instead of extending a model with attributes like this (for example):
|
2015-01-19 12:39:31 +00:00
|
|
|
*
|
2014-03-12 23:28:46 +00:00
|
|
|
* ```js
|
2014-06-17 20:18:18 +00:00
|
|
|
* db.defineProperty('Content', 'competitionType',
|
|
|
|
* { type: String });
|
|
|
|
* db.defineProperty('Content', 'expiryDate',
|
|
|
|
* { type: Date, index: true });
|
|
|
|
* db.defineProperty('Content', 'isExpired',
|
|
|
|
* { type: Boolean, index: true });
|
2014-03-12 23:28:46 +00:00
|
|
|
*```
|
2014-06-17 20:18:18 +00:00
|
|
|
* This method enables you to extend a model as follows (for example):
|
2014-03-12 23:28:46 +00:00
|
|
|
* ```js
|
2013-05-17 17:54:14 +00:00
|
|
|
* db.extendModel('Content', {
|
|
|
|
* competitionType: String,
|
|
|
|
* expiryDate: { type: Date, index: true },
|
|
|
|
* isExpired: { type: Boolean, index: true }
|
|
|
|
* });
|
2014-03-12 23:28:46 +00:00
|
|
|
*```
|
|
|
|
*
|
|
|
|
* @param {String} model Name of model
|
2015-01-19 12:39:31 +00:00
|
|
|
* @options {Object} properties JSON object specifying properties. Each property is a key whos value is
|
2014-08-11 18:42:21 +00:00
|
|
|
* either the [type](http://docs.strongloop.com/display/LB/LoopBack+types) or `propertyName: {options}`
|
2014-06-17 20:18:18 +00:00
|
|
|
* where the options are described below.
|
2014-08-11 18:42:21 +00:00
|
|
|
* @property {String} type Datatype of property: Must be an [LDL type](http://docs.strongloop.com/display/LB/LoopBack+types).
|
2014-06-17 20:18:18 +00:00
|
|
|
* @property {Boolean} index True if the property is an index; false otherwise.
|
2013-05-17 17:54:14 +00:00
|
|
|
*/
|
2013-05-24 05:20:20 +00:00
|
|
|
ModelBuilder.prototype.extendModel = function (model, props) {
|
2014-01-24 17:09:53 +00:00
|
|
|
var t = this;
|
2014-06-13 06:35:20 +00:00
|
|
|
var keys = Object.keys(props);
|
|
|
|
for (var i = 0; i < keys.length; i++) {
|
|
|
|
var definition = props[keys[i]];
|
|
|
|
t.defineProperty(model, keys[i], definition);
|
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
};
|
|
|
|
|
2013-05-24 05:20:20 +00:00
|
|
|
ModelBuilder.prototype.copyModel = function copyModel(Master) {
|
2014-01-24 17:09:53 +00:00
|
|
|
var modelBuilder = this;
|
|
|
|
var className = Master.modelName;
|
|
|
|
var md = Master.modelBuilder.definitions[className];
|
|
|
|
var Slave = function SlaveModel() {
|
|
|
|
Master.apply(this, [].slice.call(arguments));
|
|
|
|
};
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
util.inherits(Slave, Master);
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
Slave.__proto__ = Master;
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
hiddenProperty(Slave, 'modelBuilder', modelBuilder);
|
|
|
|
hiddenProperty(Slave, 'modelName', className);
|
|
|
|
hiddenProperty(Slave, 'relations', Master.relations);
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
if (!(className in modelBuilder.models)) {
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// store class in model pool
|
|
|
|
modelBuilder.models[className] = Slave;
|
|
|
|
modelBuilder.definitions[className] = {
|
|
|
|
properties: md.properties,
|
|
|
|
settings: md.settings
|
|
|
|
};
|
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
return Slave;
|
2013-05-17 17:54:14 +00:00
|
|
|
};
|
|
|
|
|
2013-08-13 16:37:09 +00:00
|
|
|
/*!
|
2013-05-17 17:54:14 +00:00
|
|
|
* Define hidden property
|
|
|
|
*/
|
|
|
|
function hiddenProperty(where, property, value) {
|
2014-01-24 17:09:53 +00:00
|
|
|
Object.defineProperty(where, property, {
|
|
|
|
writable: true,
|
|
|
|
enumerable: false,
|
|
|
|
configurable: true,
|
|
|
|
value: value
|
|
|
|
});
|
2013-05-17 17:54:14 +00:00
|
|
|
}
|
|
|
|
|
2013-05-24 05:20:20 +00:00
|
|
|
/**
|
2013-10-02 22:18:50 +00:00
|
|
|
* Get the schema name
|
2013-05-24 05:20:20 +00:00
|
|
|
*/
|
2013-10-02 22:18:50 +00:00
|
|
|
ModelBuilder.prototype.getSchemaName = function (name) {
|
2014-01-24 17:09:53 +00:00
|
|
|
if (name) {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
if (typeof this._nameCount !== 'number') {
|
|
|
|
this._nameCount = 0;
|
|
|
|
} else {
|
|
|
|
this._nameCount++;
|
|
|
|
}
|
|
|
|
return 'AnonymousModel_' + this._nameCount;
|
2013-08-09 22:16:32 +00:00
|
|
|
};
|
2013-05-24 05:20:20 +00:00
|
|
|
|
2013-10-17 21:23:29 +00:00
|
|
|
/**
|
2014-03-12 23:28:46 +00:00
|
|
|
* Resolve the type string to be a function, for example, 'String' to String.
|
|
|
|
* Returns {Function} if the type is resolved
|
2013-10-17 21:23:29 +00:00
|
|
|
* @param {String} type The type string, such as 'number', 'Number', 'boolean', or 'String'. It's case insensitive
|
|
|
|
*/
|
2014-01-24 17:09:53 +00:00
|
|
|
ModelBuilder.prototype.resolveType = function (type) {
|
|
|
|
if (!type) {
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
if (Array.isArray(type) && type.length > 0) {
|
|
|
|
// For array types, the first item should be the type string
|
|
|
|
var itemType = this.resolveType(type[0]);
|
|
|
|
if (typeof itemType === 'function') {
|
|
|
|
return [itemType];
|
2013-10-17 21:23:29 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
else {
|
|
|
|
return itemType; // Not resolved, return the type string
|
2013-10-17 21:23:29 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
|
|
|
if (typeof type === 'string') {
|
|
|
|
var schemaType = ModelBuilder.schemaTypes[type.toLowerCase()] || this.models[type];
|
|
|
|
if (schemaType) {
|
|
|
|
return schemaType;
|
|
|
|
} else {
|
|
|
|
// The type cannot be resolved, let's create a place holder
|
|
|
|
type = this.define(type, {}, {unresolved: true});
|
|
|
|
return type;
|
2013-10-17 21:23:29 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
} else if (type.constructor.name === 'Object') {
|
|
|
|
// We also support the syntax {type: 'string', ...}
|
|
|
|
if (type.type) {
|
|
|
|
return this.resolveType(type.type);
|
|
|
|
} else {
|
|
|
|
return this.define(this.getSchemaName(null),
|
|
|
|
type, {anonymous: true, idInjection: false});
|
|
|
|
}
|
|
|
|
} else if ('function' === typeof type) {
|
2013-10-17 21:23:29 +00:00
|
|
|
return type;
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
|
|
|
return type;
|
2013-10-17 21:23:29 +00:00
|
|
|
};
|
|
|
|
|
2013-05-24 05:20:20 +00:00
|
|
|
/**
|
2013-11-15 19:12:33 +00:00
|
|
|
* Build models from schema definitions
|
2013-08-13 16:37:09 +00:00
|
|
|
*
|
|
|
|
* `schemas` can be one of the following:
|
|
|
|
*
|
2013-11-15 19:12:33 +00:00
|
|
|
* 1. An array of named schema definition JSON objects
|
|
|
|
* 2. A schema definition JSON object
|
2013-05-24 05:20:20 +00:00
|
|
|
* 3. A list of property definitions (anonymous)
|
2013-08-13 16:37:09 +00:00
|
|
|
*
|
|
|
|
* @param {*} schemas The schemas
|
2013-05-24 05:20:20 +00:00
|
|
|
* @returns {Object} A map of model constructors keyed by model name
|
|
|
|
*/
|
2014-09-12 21:25:35 +00:00
|
|
|
ModelBuilder.prototype.buildModels = function (schemas, createModel) {
|
2014-01-24 17:09:53 +00:00
|
|
|
var models = {};
|
2013-05-24 05:20:20 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Normalize the schemas to be an array of the schema objects {name: <name>, properties: {}, options: {}}
|
|
|
|
if (!Array.isArray(schemas)) {
|
|
|
|
if (schemas.properties && schemas.name) {
|
|
|
|
// Only one item
|
|
|
|
schemas = [schemas];
|
|
|
|
} else {
|
|
|
|
// Anonymous schema
|
|
|
|
schemas = [
|
|
|
|
{
|
|
|
|
name: this.getSchemaName(),
|
|
|
|
properties: schemas,
|
|
|
|
options: {anonymous: true}
|
2013-10-02 22:18:50 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
];
|
2013-05-24 05:20:20 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
2013-05-24 05:20:20 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
var relations = [];
|
2015-03-18 15:21:32 +00:00
|
|
|
for (var s = 0, n = schemas.length; s < n; s++) {
|
2014-01-24 17:09:53 +00:00
|
|
|
var name = this.getSchemaName(schemas[s].name);
|
|
|
|
schemas[s].name = name;
|
2014-09-12 21:25:35 +00:00
|
|
|
var model;
|
|
|
|
if(typeof createModel === 'function') {
|
|
|
|
model = createModel(schemas[s].name, schemas[s].properties, schemas[s].options);
|
|
|
|
} else {
|
|
|
|
model = this.define(schemas[s].name, schemas[s].properties, schemas[s].options);
|
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
models[name] = model;
|
|
|
|
relations = relations.concat(model.definition.relations);
|
|
|
|
}
|
2013-05-24 05:20:20 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Connect the models based on the relations
|
|
|
|
for (var i = 0; i < relations.length; i++) {
|
|
|
|
var relation = relations[i];
|
|
|
|
var sourceModel = models[relation.source];
|
|
|
|
var targetModel = models[relation.target];
|
|
|
|
if (sourceModel && targetModel) {
|
|
|
|
if (typeof sourceModel[relation.type] === 'function') {
|
|
|
|
sourceModel[relation.type](targetModel, {as: relation.as});
|
|
|
|
}
|
2013-05-24 05:20:20 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
|
|
|
return models;
|
2013-08-09 22:16:32 +00:00
|
|
|
};
|
2013-05-24 05:20:20 +00:00
|
|
|
|
2013-08-07 21:51:32 +00:00
|
|
|
/**
|
2014-03-12 23:28:46 +00:00
|
|
|
* Introspect the JSON document to build a corresponding model.
|
2013-08-13 16:37:09 +00:00
|
|
|
* @param {String} name The model name
|
2014-03-12 23:28:46 +00:00
|
|
|
* @param {Object} json The JSON object
|
|
|
|
* @param {Object} options The options
|
2013-08-07 21:51:32 +00:00
|
|
|
* @returns {}
|
|
|
|
*/
|
2014-01-24 17:09:53 +00:00
|
|
|
ModelBuilder.prototype.buildModelFromInstance = function (name, json, options) {
|
2013-08-07 21:51:32 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Introspect the JSON document to generate a schema
|
|
|
|
var schema = introspect(json);
|
2013-08-07 21:51:32 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
// Create a model for the generated schema
|
|
|
|
return this.define(name, schema, options);
|
2013-08-13 16:37:09 +00:00
|
|
|
};
|
2013-08-07 21:51:32 +00:00
|
|
|
|
2013-05-31 17:25:11 +00:00
|
|
|
|
2013-05-24 05:20:20 +00:00
|
|
|
|