2013-05-17 17:54:14 +00:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2013-05-24 15:02:58 +00:00
|
|
|
|
|
|
|
var i8n = require('inflection');
|
2013-05-17 17:54:14 +00:00
|
|
|
var ModelBaseClass = require('./model.js');
|
|
|
|
var List = require('./list.js');
|
|
|
|
var EventEmitter = require('events').EventEmitter;
|
|
|
|
var util = require('util');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export public API
|
|
|
|
*/
|
2013-05-24 05:20:20 +00:00
|
|
|
exports.Schema = exports.ModelBuilder = ModelBuilder;
|
2013-05-20 23:05:59 +00:00
|
|
|
|
2013-05-17 17:54:14 +00:00
|
|
|
// exports.ModelBaseClass = ModelBaseClass;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helpers
|
|
|
|
*/
|
|
|
|
var slice = Array.prototype.slice;
|
|
|
|
|
|
|
|
/**
|
2013-05-24 05:20:20 +00:00
|
|
|
* ModelBuilder - Data Model Definition
|
2013-05-17 17:54:14 +00:00
|
|
|
*/
|
2013-05-24 05:20:20 +00:00
|
|
|
function ModelBuilder() {
|
2013-05-17 17:54:14 +00:00
|
|
|
// create blank models pool
|
|
|
|
this.models = {};
|
|
|
|
this.definitions = {};
|
|
|
|
};
|
|
|
|
|
2013-05-24 05:20:20 +00:00
|
|
|
util.inherits(ModelBuilder, EventEmitter);
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2013-07-25 14:48:31 +00:00
|
|
|
// Set up types
|
|
|
|
require('./types')(ModelBuilder);
|
2013-05-17 17:54:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Define class
|
|
|
|
*
|
|
|
|
* @param {String} className
|
|
|
|
* @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
|
|
|
|
* @return newly created class
|
|
|
|
*
|
|
|
|
* @example simple case
|
|
|
|
* ```
|
2013-07-23 18:16:43 +00:00
|
|
|
* var User = dataSource.define('User', {
|
2013-05-17 17:54:14 +00:00
|
|
|
* email: String,
|
|
|
|
* password: String,
|
|
|
|
* birthDate: Date,
|
|
|
|
* activated: Boolean
|
|
|
|
* });
|
|
|
|
* ```
|
|
|
|
* @example more advanced case
|
|
|
|
* ```
|
2013-07-23 18:16:43 +00:00
|
|
|
* var User = dataSource.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 }
|
|
|
|
* });
|
|
|
|
* ```
|
|
|
|
*/
|
2013-07-01 23:49:43 +00:00
|
|
|
ModelBuilder.prototype.define = function defineClass(className, properties, settings, parent) {
|
2013-07-23 18:16:43 +00:00
|
|
|
var dataSource = this;
|
2013-05-17 17:54:14 +00:00
|
|
|
var args = slice.call(arguments);
|
2013-05-31 17:27:52 +00:00
|
|
|
var pluralName = settings && settings.plural;
|
2013-07-01 23:49:43 +00:00
|
|
|
var ModelBaseClass = parent || require('./model.js');
|
2013-05-17 17:54:14 +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);
|
|
|
|
|
|
|
|
properties = properties || {};
|
|
|
|
settings = settings || {};
|
|
|
|
|
2013-07-11 21:24:47 +00:00
|
|
|
this.buildSchema(className, properties);
|
2013-06-21 21:04:24 +00:00
|
|
|
|
2013-05-17 17:54:14 +00:00
|
|
|
// every class can receive hash of data as optional param
|
2013-07-23 18:16:43 +00:00
|
|
|
var ModelClass = function ModelConstructor(data, dataSource) {
|
2013-07-11 21:24:47 +00:00
|
|
|
if(!(this instanceof ModelConstructor)) {
|
2013-07-23 18:16:43 +00:00
|
|
|
return new ModelConstructor(data, dataSource);
|
2013-07-11 21:24:47 +00:00
|
|
|
}
|
2013-07-01 23:49:43 +00:00
|
|
|
ModelBaseClass.apply(this, arguments);
|
2013-07-23 18:16:43 +00:00
|
|
|
if(!this.dataSource) {
|
|
|
|
hiddenProperty(this, 'dataSource', dataSource || this.constructor.dataSource);
|
2013-07-03 03:28:00 +00:00
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
};
|
2013-07-02 21:59:24 +00:00
|
|
|
|
2013-07-16 01:22:49 +00:00
|
|
|
// mix in EventEmitter (dont inherit from)
|
2013-07-02 21:59:24 +00:00
|
|
|
var events = new EventEmitter();
|
|
|
|
ModelClass.on = events.on.bind(events);
|
|
|
|
ModelClass.once = events.once.bind(events);
|
|
|
|
ModelClass.emit = events.emit.bind(events);
|
2013-07-16 01:22:49 +00:00
|
|
|
ModelClass.setMaxListeners = events.setMaxListeners.bind(events);
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2013-07-23 18:16:43 +00:00
|
|
|
hiddenProperty(ModelClass, 'dataSource', dataSource);
|
2013-07-23 19:16:12 +00:00
|
|
|
hiddenProperty(ModelClass, 'schema', dataSource); // For backward compatibility
|
2013-05-17 17:54:14 +00:00
|
|
|
hiddenProperty(ModelClass, 'modelName', className);
|
2013-05-31 17:27:52 +00:00
|
|
|
hiddenProperty(ModelClass, 'pluralModelName', pluralName || i8n.pluralize(className));
|
2013-05-17 17:54:14 +00:00
|
|
|
hiddenProperty(ModelClass, 'relations', {});
|
2013-07-16 01:22:49 +00:00
|
|
|
|
|
|
|
util.inherits(ModelClass, ModelBaseClass);
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2013-07-16 01:22:49 +00:00
|
|
|
// inherit ModelBaseClass static methods
|
2013-05-17 17:54:14 +00:00
|
|
|
for (var i in ModelBaseClass) {
|
|
|
|
ModelClass[i] = ModelBaseClass[i];
|
|
|
|
}
|
2013-07-15 17:44:34 +00:00
|
|
|
|
2013-05-17 17:54:14 +00:00
|
|
|
ModelClass.getter = {};
|
|
|
|
ModelClass.setter = {};
|
|
|
|
standartize(properties, settings);
|
|
|
|
|
|
|
|
// store class in model pool
|
|
|
|
this.models[className] = ModelClass;
|
|
|
|
this.definitions[className] = {
|
|
|
|
properties: properties,
|
|
|
|
settings: settings
|
|
|
|
};
|
2013-06-28 01:25:42 +00:00
|
|
|
|
|
|
|
// expose properties on the ModelClass
|
|
|
|
ModelClass.properties = properties;
|
|
|
|
ModelClass.settings = settings;
|
2013-05-17 17:54:14 +00:00
|
|
|
|
2013-05-22 17:41:08 +00:00
|
|
|
var idInjection = settings.idInjection;
|
2013-05-23 17:46:01 +00:00
|
|
|
if(idInjection !== false) {
|
|
|
|
idInjection = true;
|
|
|
|
}
|
2013-05-22 17:41:08 +00:00
|
|
|
for(var p in properties) {
|
|
|
|
if(properties[p].id) {
|
|
|
|
idInjection = false;
|
|
|
|
ModelClass.prototype.__defineGetter__('id', function () {
|
|
|
|
return this.__data[p];
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Add the id property
|
2013-05-23 17:46:01 +00:00
|
|
|
if (idInjection) {
|
2013-05-22 17:41:08 +00:00
|
|
|
ModelClass.prototype.__defineGetter__('id', function () {
|
|
|
|
return this.__data.id;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Set up the id property
|
2013-05-23 17:46:01 +00:00
|
|
|
properties.id = properties.id || { type: Number, id: 1 };
|
2013-05-22 17:41:08 +00:00
|
|
|
if (!properties.id.id) {
|
2013-05-23 17:46:01 +00:00
|
|
|
properties.id.id = 1;
|
2013-05-22 17:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
|
|
|
|
ModelClass.forEachProperty = function (cb) {
|
|
|
|
Object.keys(properties).forEach(cb);
|
|
|
|
};
|
|
|
|
|
2013-06-12 22:45:31 +00:00
|
|
|
ModelClass.attachTo = function (dataSource) {
|
2013-06-21 21:15:24 +00:00
|
|
|
dataSource.attach(this);
|
2013-06-12 22:45:31 +00:00
|
|
|
}
|
2013-07-01 23:49:43 +00:00
|
|
|
|
|
|
|
ModelClass.extend = function (className, p, s) {
|
|
|
|
p = p || {};
|
|
|
|
s = s || {};
|
|
|
|
|
|
|
|
|
|
|
|
Object.keys(properties).forEach(function (key) {
|
|
|
|
// dont inherit the id property
|
|
|
|
if(key !== 'id' && typeof p[key] === 'undefined') {
|
|
|
|
p[key] = properties[key];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.keys(settings).forEach(function (key) {
|
|
|
|
if(typeof s[key] === 'undefined') {
|
|
|
|
s[key] = settings[key];
|
|
|
|
}
|
|
|
|
});
|
2013-07-03 03:28:00 +00:00
|
|
|
|
2013-07-23 18:16:43 +00:00
|
|
|
var c = dataSource.define(className, p, s, ModelClass);
|
2013-07-03 03:28:00 +00:00
|
|
|
|
|
|
|
if(typeof c.setup === 'function') {
|
|
|
|
c.setup.call(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
return c;
|
2013-07-01 23:49:43 +00:00
|
|
|
}
|
2013-06-12 22:45:31 +00:00
|
|
|
|
2013-05-17 17:54:14 +00:00
|
|
|
ModelClass.registerProperty = function (attr) {
|
|
|
|
var DataType = properties[attr].type;
|
|
|
|
if(!DataType) {
|
2013-06-21 21:15:24 +00:00
|
|
|
throw new Error('Invalid type for property ' + attr);
|
2013-05-17 17:54:14 +00:00
|
|
|
}
|
2013-07-25 14:48:31 +00:00
|
|
|
if (Array.isArray(DataType)) {
|
2013-05-17 17:54:14 +00:00
|
|
|
DataType = List;
|
|
|
|
} else if (DataType.name === 'Date') {
|
|
|
|
var OrigDate = Date;
|
|
|
|
DataType = function Date(arg) {
|
|
|
|
return new OrigDate(arg);
|
|
|
|
};
|
|
|
|
} else if (DataType.name === 'JSON' || DataType === JSON) {
|
|
|
|
DataType = function JSON(s) {
|
|
|
|
return s;
|
|
|
|
};
|
2013-05-24 05:20:20 +00:00
|
|
|
} else if (DataType.name === 'Text' || DataType === ModelBuilder.Text) {
|
2013-05-17 17:54:14 +00:00
|
|
|
DataType = function Text(s) {
|
|
|
|
return s;
|
|
|
|
};
|
2013-06-17 23:42:13 +00:00
|
|
|
} else if(typeof DataType === 'string') {
|
2013-07-23 18:16:43 +00:00
|
|
|
DataType = dataSource.getSchemaType(DataType);
|
2013-05-17 17:54:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Object.defineProperty(ModelClass.prototype, attr, {
|
|
|
|
get: function () {
|
|
|
|
if (ModelClass.getter[attr]) {
|
|
|
|
return ModelClass.getter[attr].call(this);
|
|
|
|
} else {
|
2013-05-28 20:50:59 +00:00
|
|
|
return this.__data && this.__data[attr];
|
2013-05-17 17:54:14 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
set: function (value) {
|
|
|
|
if (ModelClass.setter[attr]) {
|
|
|
|
ModelClass.setter[attr].call(this, value);
|
|
|
|
} else {
|
2013-05-28 20:50:59 +00:00
|
|
|
if (!this.__data) {
|
|
|
|
this.__data = {};
|
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
if (value === null || value === undefined) {
|
|
|
|
this.__data[attr] = value;
|
|
|
|
} else {
|
2013-07-12 19:36:14 +00:00
|
|
|
if(DataType === List) {
|
|
|
|
this.__data[attr] = DataType(value, properties[attr].type, this.__data);
|
|
|
|
} else {
|
2013-07-25 14:48:31 +00:00
|
|
|
// Assume the type constructor handles Constructor() call
|
|
|
|
// If not, we should call new DataType(value).valueOf();
|
2013-07-12 19:36:14 +00:00
|
|
|
this.__data[attr] = DataType(value);
|
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true
|
|
|
|
});
|
|
|
|
|
|
|
|
ModelClass.prototype.__defineGetter__(attr + '_was', function () {
|
2013-05-28 20:50:59 +00:00
|
|
|
return this.__dataWas && this.__dataWas[attr];
|
2013-05-17 17:54:14 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(ModelClass.prototype, '_' + attr, {
|
|
|
|
get: function () {
|
2013-05-28 20:50:59 +00:00
|
|
|
return this.__data && this.__data[attr];
|
2013-05-17 17:54:14 +00:00
|
|
|
},
|
|
|
|
set: function (value) {
|
2013-05-28 20:50:59 +00:00
|
|
|
if (!this.__data) {
|
|
|
|
this.__data = {};
|
|
|
|
}
|
2013-05-17 17:54:14 +00:00
|
|
|
this.__data[attr] = value;
|
|
|
|
},
|
|
|
|
configurable: true,
|
|
|
|
enumerable: false
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
ModelClass.forEachProperty(ModelClass.registerProperty);
|
|
|
|
|
|
|
|
return ModelClass;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
function standartize(properties, settings) {
|
|
|
|
Object.keys(properties).forEach(function (key) {
|
|
|
|
var v = properties[key];
|
|
|
|
if (
|
|
|
|
typeof v === 'function' ||
|
|
|
|
typeof v === 'object' && v && v.constructor.name === 'Array'
|
|
|
|
) {
|
|
|
|
properties[key] = { type: v };
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// TODO: add timestamps fields
|
|
|
|
// when present in settings: {timestamps: true}
|
|
|
|
// or {timestamps: {created: 'created_at', updated: false}}
|
|
|
|
// by default property names: createdAt, updatedAt
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define single property named `prop` on `model`
|
|
|
|
*
|
|
|
|
* @param {String} model - name of model
|
|
|
|
* @param {String} prop - name of propery
|
|
|
|
* @param {Object} params - property settings
|
|
|
|
*/
|
2013-05-24 05:20:20 +00:00
|
|
|
ModelBuilder.prototype.defineProperty = function (model, prop, params) {
|
2013-05-17 17:54:14 +00:00
|
|
|
this.definitions[model].properties[prop] = params;
|
|
|
|
this.models[model].registerProperty(prop);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extend existing model with bunch of properties
|
|
|
|
*
|
|
|
|
* @param {String} model - name of model
|
|
|
|
* @param {Object} props - hash of properties
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* // Instead of doing this:
|
|
|
|
*
|
|
|
|
* // amend the content model with competition attributes
|
|
|
|
* db.defineProperty('Content', 'competitionType', { type: String });
|
|
|
|
* db.defineProperty('Content', 'expiryDate', { type: Date, index: true });
|
|
|
|
* db.defineProperty('Content', 'isExpired', { type: Boolean, index: true });
|
|
|
|
*
|
2013-07-23 18:16:43 +00:00
|
|
|
* // dataSource.extend allows to
|
2013-05-17 17:54:14 +00:00
|
|
|
* // extend the content model with competition attributes
|
|
|
|
* db.extendModel('Content', {
|
|
|
|
* competitionType: String,
|
|
|
|
* expiryDate: { type: Date, index: true },
|
|
|
|
* isExpired: { type: Boolean, index: true }
|
|
|
|
* });
|
|
|
|
*/
|
2013-05-24 05:20:20 +00:00
|
|
|
ModelBuilder.prototype.extendModel = function (model, props) {
|
2013-05-17 17:54:14 +00:00
|
|
|
var t = this;
|
|
|
|
standartize(props, {});
|
|
|
|
Object.keys(props).forEach(function (propName) {
|
|
|
|
var definition = props[propName];
|
|
|
|
t.defineProperty(model, propName, definition);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-05-24 05:20:20 +00:00
|
|
|
ModelBuilder.prototype.copyModel = function copyModel(Master) {
|
2013-07-23 18:16:43 +00:00
|
|
|
var dataSource = this;
|
2013-05-17 17:54:14 +00:00
|
|
|
var className = Master.modelName;
|
2013-07-23 18:16:43 +00:00
|
|
|
var md = Master.dataSource.definitions[className];
|
2013-05-17 17:54:14 +00:00
|
|
|
var Slave = function SlaveModel() {
|
|
|
|
Master.apply(this, [].slice.call(arguments));
|
2013-07-23 18:16:43 +00:00
|
|
|
this.dataSource = dataSource;
|
2013-05-17 17:54:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
util.inherits(Slave, Master);
|
|
|
|
|
|
|
|
Slave.__proto__ = Master;
|
|
|
|
|
2013-07-23 18:16:43 +00:00
|
|
|
hiddenProperty(Slave, 'dataSource', dataSource);
|
2013-05-17 17:54:14 +00:00
|
|
|
hiddenProperty(Slave, 'modelName', className);
|
|
|
|
hiddenProperty(Slave, 'relations', Master.relations);
|
|
|
|
|
2013-07-23 18:16:43 +00:00
|
|
|
if (!(className in dataSource.models)) {
|
2013-05-17 17:54:14 +00:00
|
|
|
|
|
|
|
// store class in model pool
|
2013-07-23 18:16:43 +00:00
|
|
|
dataSource.models[className] = Slave;
|
|
|
|
dataSource.definitions[className] = {
|
2013-05-17 17:54:14 +00:00
|
|
|
properties: md.properties,
|
|
|
|
settings: md.settings
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return Slave;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define hidden property
|
|
|
|
*/
|
|
|
|
function hiddenProperty(where, property, value) {
|
|
|
|
Object.defineProperty(where, property, {
|
2013-07-02 21:59:24 +00:00
|
|
|
writable: true,
|
2013-05-17 17:54:14 +00:00
|
|
|
enumerable: false,
|
2013-05-24 00:29:03 +00:00
|
|
|
configurable: true,
|
2013-05-17 17:54:14 +00:00
|
|
|
value: value
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define readonly property on object
|
|
|
|
*
|
|
|
|
* @param {Object} obj
|
|
|
|
* @param {String} key
|
|
|
|
* @param {Mixed} value
|
|
|
|
*/
|
|
|
|
function defineReadonlyProp(obj, key, value) {
|
|
|
|
Object.defineProperty(obj, key, {
|
|
|
|
writable: false,
|
|
|
|
enumerable: true,
|
|
|
|
configurable: true,
|
|
|
|
value: value
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-05-24 05:20:20 +00:00
|
|
|
/**
|
|
|
|
* Resolve the type string to be a function, for example, 'String' to String
|
|
|
|
* @param type The type string, such as 'number', 'Number', 'boolean', or 'String'. It's case insensitive
|
|
|
|
* @returns {Function} if the type is resolved
|
|
|
|
*/
|
2013-07-11 21:24:47 +00:00
|
|
|
ModelBuilder.prototype.getSchemaType = function(type) {
|
2013-05-24 05:20:20 +00:00
|
|
|
if (!type) {
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
if (Array.isArray(type) && type.length > 0) {
|
|
|
|
// For array types, the first item should be the type string
|
2013-07-11 21:24:47 +00:00
|
|
|
var itemType = this.getSchemaType(type[0]);
|
2013-05-24 05:20:20 +00:00
|
|
|
if (typeof itemType === 'function') {
|
|
|
|
return [itemType];
|
|
|
|
}
|
|
|
|
else return itemType; // Not resolved, return the type string
|
|
|
|
}
|
|
|
|
if (typeof type === 'string') {
|
|
|
|
var schemaType = ModelBuilder.schemaTypes[type.toLowerCase()];
|
|
|
|
if (schemaType) {
|
|
|
|
return schemaType;
|
|
|
|
} else {
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
} else if (type.constructor.name == 'Object') {
|
|
|
|
// We also support the syntax {type: 'string', ...}
|
|
|
|
if (type.type) {
|
2013-07-11 21:24:47 +00:00
|
|
|
return this.getSchemaType(type.type);
|
2013-05-24 05:20:20 +00:00
|
|
|
} else {
|
2013-07-11 21:24:47 +00:00
|
|
|
if(!this.anonymousTypesCount) {
|
|
|
|
this.anonymousTypesCount = 1;
|
|
|
|
}
|
|
|
|
return this.define('AnonymousType' + this.anonymousTypesCount, type, {idInjection: false});
|
|
|
|
/*
|
2013-06-02 06:03:25 +00:00
|
|
|
console.error(type);
|
2013-05-24 05:20:20 +00:00
|
|
|
throw new Error('Missing type property');
|
2013-07-11 21:24:47 +00:00
|
|
|
*/
|
2013-05-24 05:20:20 +00:00
|
|
|
}
|
2013-06-21 21:15:24 +00:00
|
|
|
} else if('function' === typeof type ) {
|
|
|
|
return type;
|
2013-05-24 05:20:20 +00:00
|
|
|
}
|
2013-06-21 21:15:24 +00:00
|
|
|
return type;
|
2013-05-24 05:20:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-07-23 18:16:43 +00:00
|
|
|
* Build a dataSource
|
|
|
|
* @param name The name of the dataSource
|
|
|
|
* @param properties The properties of the dataSource
|
2013-05-24 05:20:20 +00:00
|
|
|
* @param associations An array of associations between models
|
|
|
|
* @returns {*}
|
|
|
|
*/
|
2013-07-11 21:24:47 +00:00
|
|
|
ModelBuilder.prototype.buildSchema = function(name, properties, associations) {
|
2013-05-24 05:20:20 +00:00
|
|
|
for (var p in properties) {
|
|
|
|
// console.log(name + "." + p + ": " + properties[p]);
|
2013-07-11 21:24:47 +00:00
|
|
|
var type = this.getSchemaType(properties[p]);
|
2013-05-24 05:20:20 +00:00
|
|
|
if (typeof type === 'string') {
|
|
|
|
// console.log('Association: ' + type);
|
2013-06-21 21:04:24 +00:00
|
|
|
if (Array.isArray(associations)) {
|
|
|
|
associations.push({
|
|
|
|
source: name,
|
|
|
|
target: type,
|
|
|
|
relation: Array.isArray(properties[p]) ? 'hasMany' : 'belongsTo',
|
|
|
|
as: p
|
|
|
|
});
|
|
|
|
delete properties[p];
|
|
|
|
}
|
2013-05-24 05:20:20 +00:00
|
|
|
} else {
|
2013-05-28 22:40:16 +00:00
|
|
|
var typeDef = {
|
|
|
|
type: type
|
|
|
|
};
|
|
|
|
delete properties[p].type;
|
2013-06-21 21:04:24 +00:00
|
|
|
for (var a in properties[p]) {
|
2013-05-28 22:40:16 +00:00
|
|
|
typeDef[a] = properties[p][a];
|
|
|
|
}
|
|
|
|
properties[p] = typeDef;
|
2013-05-24 05:20:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return properties;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2013-07-23 18:16:43 +00:00
|
|
|
* Build models from dataSource definitions
|
2013-05-24 05:20:20 +00:00
|
|
|
* @param schemas The schemas can be one of the following three formats:
|
2013-07-23 18:16:43 +00:00
|
|
|
* 1. An array of named dataSource definition JSON objects
|
|
|
|
* 2. A dataSource definition JSON object
|
2013-05-24 05:20:20 +00:00
|
|
|
* 3. A list of property definitions (anonymous)
|
|
|
|
* @returns {Object} A map of model constructors keyed by model name
|
|
|
|
*/
|
2013-05-31 17:25:11 +00:00
|
|
|
ModelBuilder.prototype.buildModels = function (schemas) {
|
2013-05-24 05:20:20 +00:00
|
|
|
var models = {};
|
|
|
|
|
|
|
|
if (Array.isArray(schemas)) {
|
|
|
|
// An array already
|
|
|
|
} else if (schemas.properties && schemas.name) {
|
|
|
|
// Only one item
|
|
|
|
schemas = [schemas];
|
|
|
|
} else {
|
2013-07-23 18:16:43 +00:00
|
|
|
// Anonymous dataSource
|
2013-05-24 05:20:20 +00:00
|
|
|
schemas = [
|
|
|
|
{
|
|
|
|
name: 'Anonymous',
|
|
|
|
properties: schemas
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
var associations = [];
|
|
|
|
for (var s in schemas) {
|
|
|
|
var name = schemas[s].name;
|
2013-07-23 18:16:43 +00:00
|
|
|
var dataSource = this.buildSchema(name, schemas[s].properties, associations);
|
|
|
|
var model = this.define(name, dataSource, schemas[s].options);
|
2013-05-31 17:25:11 +00:00
|
|
|
models[name] = model;
|
2013-05-24 05:20:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Connect the models based on the associations
|
|
|
|
for (var i = 0; i < associations.length; i++) {
|
|
|
|
var association = associations[i];
|
2013-05-31 17:25:11 +00:00
|
|
|
var sourceModel = models[association.source];
|
|
|
|
var targetModel = models[association.target];
|
2013-05-24 05:20:20 +00:00
|
|
|
if (sourceModel && targetModel) {
|
|
|
|
if(typeof sourceModel[association.relation] === 'function') {
|
|
|
|
sourceModel[association.relation](targetModel, {as: association.as});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return models;
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:25:11 +00:00
|
|
|
|
2013-05-24 05:20:20 +00:00
|
|
|
|