loopback/lib/application.js

117 lines
1.9 KiB
JavaScript
Raw Normal View History

2013-05-01 19:11:43 +00:00
/**
* Module dependencies.
*/
var 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-06-13 04:30:20 +00:00
, RemoteObjects = require('sl-remoting');
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.
*/
2013-05-23 16:53:42 +00:00
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);
}
}
}
}
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 () {
2013-05-28 15:53:40 +00:00
return this._modelBuilder || (this._modelBuilder = new ModelBuilder())
2013-05-24 14:59:23 +00:00
}
2013-05-01 19:11:43 +00:00
/**
* App models.
*/
2013-06-06 00:11:21 +00:00
app._models = [];
2013-05-01 19:11:43 +00:00
2013-05-24 14:59:23 +00:00
/**
2013-06-06 00:11:21 +00:00
* Expose a model.
2013-05-01 19:11:43 +00:00
*
2013-06-06 00:11:21 +00:00
* @param Model {Model}
2013-05-01 19:11:43 +00:00
*/
2013-05-24 14:59:23 +00:00
2013-06-06 00:11:21 +00:00
app.model = function (Model) {
var remotes = this.remotes();
2013-06-06 00:11:21 +00:00
this._models.push(Model);
2013-06-20 17:17:55 +00:00
Model.shared = true;
2013-06-12 22:44:38 +00:00
Model.app = this;
2013-06-13 04:30:20 +00:00
if(Model._remoteHooks) {
Model._remoteHooks.emit('attached', app);
}
// add to the remote exports
remotes.exports[Model.pluralModelName] = Model;
// clear the handlers cache
this._handlers = {};
2013-05-24 14:59:23 +00:00
}
/**
2013-06-06 00:11:21 +00:00
* Get all exposed models.
2013-05-24 14:59:23 +00:00
*/
app.models = function () {
2013-06-06 00:11:21 +00:00
return this._models;
2013-05-01 19:11:43 +00:00
}
2013-05-24 22:08:23 +00:00
/**
* Get the apps set of remote objects.
*/
app.remotes = function () {
return this._remotes || (this._remotes = RemoteObjects.create());
}
/**
* Get a remotes handler.
2013-05-24 22:08:23 +00:00
*/
app.handler = function (type) {
var handler = this._handlers[type];
2013-05-24 22:08:23 +00:00
if(!handler) {
// get the sl remoting object
var remotes = this.remotes();
// create and save the handler
handler = this._handlers[type] = remotes.handler(type);
}
return handler;
2013-05-24 22:08:23 +00:00
}
/*!
* Handlers
2013-05-24 14:59:23 +00:00
*/
app._handlers = {};