loopback/lib/models/model.js

187 lines
4.2 KiB
JavaScript
Raw Normal View History

/**
* Module Dependencies.
*/
var loopback = require('../loopback');
var ModelBuilder = require('loopback-datasource-juggler').ModelBuilder;
var modeler = new ModelBuilder();
/**
2013-07-16 17:49:25 +00:00
* Define the built in loopback.Model.
*/
2013-11-11 21:35:54 +00:00
var Model = module.exports = modeler.define('Model');
Model.shared = true;
2013-07-15 21:07:17 +00:00
/*!
2013-07-15 21:07:17 +00:00
* Called when a model is extended.
*/
Model.setup = function () {
var ModelCtor = this;
2013-07-16 03:14:04 +00:00
ModelCtor.sharedCtor = function (data, id, fn) {
if(typeof data === 'function') {
fn = data;
data = null;
id = null;
} else if (typeof id === 'function') {
fn = id;
if(typeof data !== 'object') {
id = data;
data = null;
} else {
id = null;
}
}
if(id && data) {
2013-07-16 19:51:59 +00:00
var model = new ModelCtor(data);
model.id = id;
fn(null, model);
} else if(data) {
2013-07-16 19:51:59 +00:00
fn(null, new ModelCtor(data));
} else if(id) {
ModelCtor.findById(id, function (err, model) {
if(err) {
fn(err);
} else if(model) {
fn(null, model);
} else {
err = new Error('could not find a model with id ' + id);
err.statusCode = 404;
fn(err);
}
});
} else {
fn(new Error('must specify an id or data'));
}
}
// before remote hook
ModelCtor.beforeRemote = function (name, fn) {
var self = this;
if(this.app) {
var remotes = this.app.remotes();
remotes.before(self.pluralModelName + '.' + name, function (ctx, next) {
fn(ctx, ctx.result, next);
});
} else {
var args = arguments;
this.once('attached', function () {
self.beforeRemote.apply(self, args);
});
}
2013-11-20 21:31:30 +00:00
};
2013-07-16 17:25:02 +00:00
// after remote hook
ModelCtor.afterRemote = function (name, fn) {
var self = this;
if(this.app) {
var remotes = this.app.remotes();
remotes.after(self.pluralModelName + '.' + name, function (ctx, next) {
fn(ctx, ctx.result, next);
});
} else {
var args = arguments;
this.once('attached', function () {
self.afterRemote.apply(self, args);
});
}
2013-11-20 21:31:30 +00:00
};
2013-08-16 23:39:13 +00:00
// Map the prototype method to /:id with data in the body
ModelCtor.sharedCtor.accepts = [
2013-08-16 23:39:13 +00:00
{arg: 'id', type: 'any', http: {source: 'path'}}
// {arg: 'instance', type: 'object', http: {source: 'body'}}
];
ModelCtor.sharedCtor.http = [
{path: '/:id'}
];
2013-07-25 00:21:15 +00:00
ModelCtor.sharedCtor.returns = {root: true};
return ModelCtor;
2013-11-20 21:31:30 +00:00
};
/*!
* Get the reference to ACL in a lazy fashion to avoid race condition in require
*/
var ACL = null;
function getACL() {
return ACL || (ACL = require('./acl').ACL);
}
2013-11-20 21:31:30 +00:00
/**
* Check if the given access token can invoke the method
*
* @param {AccessToken} token The access token
* @param {*} modelId The model id
* @param {String} method The method name
* @param callback The callback function
*
* @callback callback
* @param {String|Error} err The error object
* @param {Boolean} allowed is the request allowed
*/
Model.checkAccess = function(token, modelId, method, callback) {
var ACL = getACL();
var methodName = 'string' === typeof method? method: method && method.name;
ACL.checkAccessForToken(token, this.modelName, modelId, methodName, callback);
};
2013-12-07 01:04:47 +00:00
/**
* Determine the access type for the given `RemoteMethod`.
*
* @api private
* @param {RemoteMethod} method
*/
Model._getAccessTypeForMethod = function(method) {
if(typeof method === 'string') {
method = {name: method};
}
assert(
typeof method === 'object',
'method is a required argument and must be a RemoteMethod object'
);
var ACL = getACL();
switch(method.name) {
case'create':
return ACL.WRITE;
case 'updateOrCreate':
return ACL.WRITE;
case 'upsert':
return ACL.WRITE;
case 'exists':
return ACL.READ;
case 'findById':
return ACL.READ;
case 'find':
return ACL.READ;
case 'findOne':
return ACL.READ;
case 'destroyById':
return ACL.WRITE;
case 'deleteById':
return ACL.WRITE;
case 'removeById':
return ACL.WRITE;
case 'count':
return ACL.READ;
break;
default:
return ACL.EXECUTE;
break;
}
}
// setup the initial model
2013-11-11 21:35:54 +00:00
Model.setup();
2013-11-20 21:31:30 +00:00