2013-05-01 19:11:43 +00:00
|
|
|
/**
|
|
|
|
* Module dependencies.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var Model = require('../node_modules/model/lib/model')
|
2013-05-24 14:59:23 +00:00
|
|
|
, DataSource = require('jugglingdb').DataSource
|
2013-05-24 15:57:52 +00:00
|
|
|
, ModelBuilder = require('jugglingdb').ModelBuilder
|
2013-05-23 16:53:42 +00:00
|
|
|
, assert = require('assert')
|
2013-05-24 14:59:23 +00:00
|
|
|
, RemoteObjects = require('sl-remoting')
|
|
|
|
, i8n = require('inflection');
|
2013-05-01 19:11:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export the app prototype.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var app = exports = module.exports = {};
|
|
|
|
|
|
|
|
/**
|
2013-05-23 16:53:42 +00:00
|
|
|
* Create a set of remote objects.
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.remotes = function () {
|
|
|
|
if(this._remotes) {
|
|
|
|
return this._remotes;
|
|
|
|
} else {
|
|
|
|
return (this._remotes = RemoteObjects.create());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a route by reference.
|
2013-05-01 19:11:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
app.disuse = function (route) {
|
|
|
|
if(this.stack) {
|
|
|
|
for (var i = 0; i < this.stack.length; i++) {
|
|
|
|
if(this.stack[i].route === route) {
|
|
|
|
this.stack.splice(i, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* App models.
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.models = {};
|
|
|
|
|
2013-05-24 14:59:23 +00:00
|
|
|
/**
|
2013-05-24 15:57:52 +00:00
|
|
|
* Get ModelBuilder.
|
2013-05-24 14:59:23 +00:00
|
|
|
*/
|
|
|
|
|
2013-05-24 15:57:52 +00:00
|
|
|
app.modelBuilder = function () {
|
|
|
|
return this.modelBuilder || (this._modelBuilder = new ModelBuilder())
|
2013-05-24 14:59:23 +00:00
|
|
|
}
|
|
|
|
|
2013-05-01 19:11:43 +00:00
|
|
|
/**
|
|
|
|
* Define a model.
|
|
|
|
*
|
|
|
|
* @param name {String}
|
|
|
|
* @param options {Object}
|
|
|
|
* @returns {Model}
|
|
|
|
*/
|
2013-05-24 14:59:23 +00:00
|
|
|
|
|
|
|
app.model =
|
2013-05-23 03:41:56 +00:00
|
|
|
app.defineModel =
|
2013-05-24 14:59:23 +00:00
|
|
|
app.define = function (name, properties, options) {
|
2013-05-24 15:57:52 +00:00
|
|
|
var modelBuilder = this.modelBuilder();
|
2013-05-24 14:59:23 +00:00
|
|
|
|
2013-05-24 15:57:52 +00:00
|
|
|
var ModelCtor = modelBuilder.define(name, properties, options);
|
2013-05-01 19:11:43 +00:00
|
|
|
|
2013-05-24 14:59:23 +00:00
|
|
|
ModelCtor.dataSource = function (name) {
|
|
|
|
var dataSource = app.dataSources[name];
|
|
|
|
|
|
|
|
dataSource.attach(this);
|
|
|
|
};
|
2013-05-23 16:53:42 +00:00
|
|
|
|
2013-05-24 14:59:23 +00:00
|
|
|
ModelCtor.sharedCtor = function (id, fn) {
|
|
|
|
this.find(id, fn);
|
|
|
|
};
|
|
|
|
ModelCtor.accepts = {arg: 'id', type: 'any'};
|
2013-05-23 16:53:42 +00:00
|
|
|
|
2013-05-24 14:59:23 +00:00
|
|
|
return (app._models[ModelCtor.pluralModelName] = ModelCtor);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all models.
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.models = function () {
|
|
|
|
var models = this._models;
|
|
|
|
var dataSources = this.dataSources;
|
2013-05-23 16:53:42 +00:00
|
|
|
|
2013-05-24 14:59:23 +00:00
|
|
|
// add in any model from a data source
|
|
|
|
Object.keys(this.dataSources).forEach(function (name) {
|
|
|
|
var dataSource = dataSources[name];
|
|
|
|
|
|
|
|
Object.keys(dataSource.models).forEach(function (className) {
|
|
|
|
var model = dataSource.models[className];
|
|
|
|
models[i8n.pluralize(model.modelName)] = model;
|
|
|
|
});
|
|
|
|
});
|
2013-05-23 16:53:42 +00:00
|
|
|
|
2013-05-24 14:59:23 +00:00
|
|
|
return models;
|
2013-05-01 19:11:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-05-24 14:59:23 +00:00
|
|
|
* App data sources and models.
|
2013-05-01 19:11:43 +00:00
|
|
|
*/
|
|
|
|
|
2013-05-24 14:59:23 +00:00
|
|
|
app._models = {};
|
2013-05-01 19:11:43 +00:00
|
|
|
app.dataSources = {};
|
|
|
|
|
2013-05-24 14:59:23 +00:00
|
|
|
/**
|
|
|
|
* Get the apps set of remote objects.
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.remotes = function () {
|
|
|
|
return this._remotes || (this._remotes = RemoteObjects.create());
|
|
|
|
}
|
|
|
|
|
2013-05-01 19:11:43 +00:00
|
|
|
/**
|
|
|
|
* Attach a remote data source.
|
|
|
|
*
|
|
|
|
* @param name {String}
|
|
|
|
* @param options {Object}
|
|
|
|
* @returns {DataSource}
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.dataSource = function (name, options) {
|
2013-05-24 14:59:23 +00:00
|
|
|
var dataSources = this.dataSources || (this.dataSources = {});
|
|
|
|
return (dataSources[name] = new DataSource(options.adapter, options));
|
2013-05-01 19:11:43 +00:00
|
|
|
}
|