loopback/lib/loopback.js

191 lines
4.2 KiB
JavaScript
Raw Normal View History

/*!
2013-07-16 18:05:38 +00:00
* Module dependencies.
*/
var express = require('express');
var proto = require('./application');
var fs = require('fs');
var ejs = require('ejs');
var path = require('path');
var merge = require('util')._extend;
var assert = require('assert');
2013-07-16 18:05:38 +00:00
/**
* 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
*
* @property {String} version Version of LoopBack framework. Static read-only property.
* @property {String} mime
* @property {Boolean} isBrowser True if running in a browser environment; false otherwise. Static read-only property.
* @property {Boolean} isServer True if running in a server environment; false otherwise. Static read-only property.
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;
/*!
* Framework version.
*/
loopback.version = require('../package.json').version;
/*!
2013-07-16 18:05:38 +00:00
* Expose mime.
*/
loopback.mime = express.mime;
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
app.loopback = loopback;
// 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);
// Fix for legacy (pre-ES5) browsers like PhantomJS
if (!desc) continue;
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) {
2014-02-12 00:01:51 +00:00
return file.match(/\.js$/);
})
.forEach(function(m) {
2014-02-12 00:01:51 +00:00
loopback[m.replace(/\.js$/, '')] = require('./middleware/' + m);
});
}
2013-07-16 18:05:38 +00:00
/*
* Expose path to the default favicon file
*
* ***only in node***
*/
if (loopback.isServer) {
/**
* Path to a default favicon shipped with LoopBack.
*
* **Example**
*
* ```js
* app.use(require('serve-favicon')(loopback.faviconFile));
* ```
*/
loopback.faviconFile = path.resolve(__dirname, '../favicon.ico');
}
/*!
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) {
2013-07-16 18:05:38 +00:00
fn.shared = true;
if (typeof options === 'object') {
Object.keys(options).forEach(function(key) {
2013-07-16 18:05:38 +00:00
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) {
2013-07-16 18:05:38 +00:00
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
*/
require('./builtin-models')(loopback);