loopback/lib/loopback.js

188 lines
4.4 KiB
JavaScript
Raw Normal View History

/*!
2013-07-16 18:05:38 +00:00
* Module dependencies.
*/
var express = require('express')
, proto = require('./application')
2013-07-16 18:05:38 +00:00
, fs = require('fs')
, ejs = require('ejs')
, path = require('path')
2014-02-19 22:11:16 +00:00
, merge = require('util')._extend
, assert = require('assert');
2013-07-16 18:05:38 +00:00
/**
2014-04-02 22:46:39 +00:00
* Main entry for LoopBack core module. It provides static properties and
* methods to create models and data sources. The module itself is a function
* that creates loopback `app`. For example,
*
* ```js
* var loopback = require('loopback');
* var app = loopback();
* ```
2014-04-02 22:46:39 +00:00
*
* @class loopback
* @header loopback
2013-07-16 18:05:38 +00:00
*/
var loopback = exports = module.exports = createApplication;
/**
* Expose mime.
*/
loopback.mime = express.mime;
/*!
* Compatibility layer, intentionally left undocumented.
*/
loopback.compat = require('./compat');
2014-03-11 01:05:44 +00:00
/*!
2013-07-16 18:05:38 +00:00
* Create an loopback application.
*
* @return {Function}
* @api public
*/
function createApplication() {
var app = express();
2014-02-12 00:01:51 +00:00
merge(app, proto);
2013-07-16 18:05:38 +00:00
// Create a new instance of models registry per each app instance
app.models = function() {
return proto.models.apply(this, arguments);
};
2013-07-16 18:05:38 +00:00
// Create a new instance of datasources registry per each app instance
app.datasources = app.dataSources = {};
// Create a new instance of connector registry per each app instance
app.connectors = {};
// Register built-in connectors. It's important to keep this code
// hand-written, so that all require() calls are static
// and thus browserify can process them (include connectors in the bundle)
app.connector('memory', loopback.Memory);
app.connector('remote', loopback.Remote);
2013-07-16 18:05:38 +00:00
return app;
}
function mixin(source) {
for (var key in source) {
var desc = Object.getOwnPropertyDescriptor(source, key);
Object.defineProperty(loopback, key, desc);
}
}
mixin(require('./runtime'));
mixin(require('./registry'));
/*!
* Expose static express methods like `express.errorHandler`.
2013-07-16 18:05:38 +00:00
*/
mixin(express);
2013-07-16 18:05:38 +00:00
/*!
* Expose additional middleware like session as loopback.*
* This will keep the loopback API compatible with express 3.x
*
* ***only in node***
*/
if (loopback.isServer) {
var middlewares = require('./express-middleware');
mixin(middlewares);
2014-05-03 18:20:45 +00:00
}
/*!
2013-07-16 18:05:38 +00:00
* Expose additional loopback middleware
* for example `loopback.configure` etc.
2014-02-12 00:01:51 +00:00
*
* ***only in node***
2013-07-16 18:05:38 +00:00
*/
2014-02-12 00:01:51 +00:00
if (loopback.isServer) {
fs
.readdirSync(path.join(__dirname, 'middleware'))
.filter(function (file) {
return file.match(/\.js$/);
})
.forEach(function (m) {
loopback[m.replace(/\.js$/, '')] = require('./middleware/' + m);
});
}
2013-07-16 18:05:38 +00:00
/*!
2013-07-16 18:05:38 +00:00
* Error handler title
*/
loopback.errorHandler.title = 'Loopback';
/**
* Add a remote method to a model.
* @param {Function} fn
* @param {Object} options (optional)
*/
loopback.remoteMethod = function (fn, options) {
fn.shared = true;
if(typeof options === 'object') {
Object.keys(options).forEach(function (key) {
fn[key] = options[key];
});
}
fn.http = fn.http || {verb: 'get'};
};
2013-07-16 18:05:38 +00:00
/**
* Create a template helper.
*
* var render = loopback.template('foo.ejs');
* var html = render({foo: 'bar'});
*
* @param {String} path Path to the template file.
* @returns {Function}
*/
loopback.template = function (file) {
var templates = this._templates || (this._templates = {});
var str = templates[file] || (templates[file] = fs.readFileSync(file, 'utf8'));
return ejs.compile(str);
};
2013-07-16 18:05:38 +00:00
2014-03-11 01:05:44 +00:00
/*!
2013-07-16 18:05:38 +00:00
* Built in models / services
*/
loopback.Email = require('./models/email');
loopback.User = require('./models/user');
loopback.Application = require('./models/application');
2013-11-13 19:49:08 +00:00
loopback.AccessToken = require('./models/access-token');
2013-11-19 19:02:43 +00:00
loopback.Role = require('./models/role').Role;
loopback.RoleMapping = require('./models/role').RoleMapping;
loopback.ACL = require('./models/acl').ACL;
loopback.Scope = require('./models/acl').Scope;
2014-01-26 21:20:19 +00:00
loopback.Change = require('./models/change');
/*!
* Automatically attach these models to dataSources
*/
var dataSourceTypes = {
DB: 'db',
MAIL: 'mail'
};
loopback.Email.autoAttach = dataSourceTypes.MAIL;
2014-06-05 07:45:09 +00:00
loopback.PersistedModel.autoAttach = dataSourceTypes.DB;
loopback.User.autoAttach = dataSourceTypes.DB;
loopback.AccessToken.autoAttach = dataSourceTypes.DB;
loopback.Role.autoAttach = dataSourceTypes.DB;
2013-11-19 19:02:43 +00:00
loopback.RoleMapping.autoAttach = dataSourceTypes.DB;
loopback.ACL.autoAttach = dataSourceTypes.DB;
loopback.Scope.autoAttach = dataSourceTypes.DB;
loopback.Application.autoAttach = dataSourceTypes.DB;