2013-05-17 17:54:14 +00:00
/ * *
* Module dependencies
* /
2013-05-24 05:20:20 +00:00
var ModelBuilder = require ( './model-builder.js' ) . ModelBuilder ;
2013-05-28 05:20:30 +00:00
var jutil = require ( './jutil' ) ;
2013-05-17 17:54:14 +00:00
var ModelBaseClass = require ( './model.js' ) ;
var DataAccessObject = require ( './dao.js' ) ;
var List = require ( './list.js' ) ;
var EventEmitter = require ( 'events' ) . EventEmitter ;
var util = require ( 'util' ) ;
var path = require ( 'path' ) ;
var fs = require ( 'fs' ) ;
2013-05-22 17:41:08 +00:00
var async = require ( 'async' ) ;
2013-05-17 17:54:14 +00:00
var existsSync = fs . existsSync || path . existsSync ;
/ * *
* Export public API
* /
exports . DataSource = DataSource ;
/ * *
* Helpers
* /
var slice = Array . prototype . slice ;
/ * *
2013-07-23 18:16:43 +00:00
* DataSource - connector - specific classes factory .
2013-05-17 17:54:14 +00:00
*
2013-07-23 18:16:43 +00:00
* All classes in single dataSource shares same connector type and
2013-05-17 17:54:14 +00:00
* one database connection
*
2013-07-23 18:16:43 +00:00
* @ param name - type of dataSource connector ( mysql , mongoose , sequelize , redis )
2013-05-17 17:54:14 +00:00
* @ param settings - any database - specific settings which we need to
2013-07-23 18:16:43 +00:00
* establish connection ( of course it depends on specific connector )
2013-05-17 17:54:14 +00:00
*
* - host
* - port
* - username
* - password
* - database
* - debug { Boolean } = false
*
* @ example DataSource creation , waiting for connection callback
* ` ` `
2013-07-23 18:16:43 +00:00
* var dataSource = new DataSource ( 'mysql' , { database : 'myapp_test' } ) ;
* dataSource . define ( ... ) ;
* dataSource . on ( 'connected' , function ( ) {
2013-05-17 17:54:14 +00:00
* // work with database
* } ) ;
* ` ` `
* /
function DataSource ( name , settings ) {
if ( ! ( this instanceof DataSource ) ) {
return new DataSource ( name , settings ) ;
}
2013-05-28 05:20:30 +00:00
ModelBuilder . call ( this , arguments ) ;
2013-06-18 21:44:30 +00:00
// operation metadata
2013-07-23 18:16:43 +00:00
// Initialize it before calling setup as the connector might register operations
2013-06-18 21:44:30 +00:00
this . _operations = { } ;
2013-05-17 17:54:14 +00:00
this . setup ( name , settings ) ;
2013-07-23 19:05:08 +00:00
2013-07-23 20:19:35 +00:00
this . _setupConnector ( ) ;
2013-07-23 19:05:08 +00:00
2013-06-12 22:45:31 +00:00
// connector
2013-07-23 18:16:43 +00:00
var connector = this . connector ;
2013-06-12 22:45:31 +00:00
// DataAccessObject - connector defined or supply the default
2013-06-14 20:56:44 +00:00
this . DataAccessObject = ( connector && connector . DataAccessObject ) ? connector . DataAccessObject : this . constructor . DataAccessObject ;
2013-05-28 05:20:30 +00:00
this . DataAccessObject . call ( this , arguments ) ;
2013-06-14 20:56:44 +00:00
2013-06-18 21:44:30 +00:00
2013-06-11 16:03:11 +00:00
// define DataAccessObject methods
Object . keys ( this . DataAccessObject ) . forEach ( function ( name ) {
var fn = this . DataAccessObject [ name ] ;
if ( typeof fn === 'function' ) {
this . defineOperation ( name , {
2013-06-18 19:07:13 +00:00
accepts : fn . accepts ,
'returns' : fn . returns ,
2013-06-11 16:03:11 +00:00
http : fn . http ,
2013-06-12 22:45:31 +00:00
remoteEnabled : fn . shared ? true : false ,
scope : this . DataAccessObject ,
fnName : name
2013-06-11 16:03:11 +00:00
} ) ;
}
} . bind ( this ) ) ;
// define DataAccessObject.prototype methods
Object . keys ( this . DataAccessObject . prototype ) . forEach ( function ( name ) {
var fn = this . DataAccessObject . prototype [ name ] ;
if ( typeof fn === 'function' ) {
2013-07-25 00:21:35 +00:00
var returns = fn . returns ;
2013-06-11 16:03:11 +00:00
this . defineOperation ( name , {
prototype : true ,
2013-06-18 19:07:13 +00:00
accepts : fn . accepts ,
'returns' : fn . returns ,
2013-06-11 16:03:11 +00:00
http : fn . http ,
2013-06-12 22:45:31 +00:00
remoteEnabled : fn . shared ? true : false ,
scope : this . DataAccessObject . prototype ,
fnName : name
2013-06-11 16:03:11 +00:00
} ) ;
}
} . bind ( this ) ) ;
2013-05-17 17:54:14 +00:00
} ;
2013-05-24 05:20:20 +00:00
util . inherits ( DataSource , ModelBuilder ) ;
2013-05-17 17:54:14 +00:00
2013-05-23 23:38:14 +00:00
// allow child classes to supply a data access object
DataSource . DataAccessObject = DataAccessObject ;
2013-05-17 17:54:14 +00:00
// Copy over statics
2013-05-24 05:20:20 +00:00
for ( var m in ModelBuilder ) {
2013-05-17 21:41:04 +00:00
if ( ! DataSource . hasOwnProperty ( m ) && 'super_' !== m ) {
2013-05-24 05:20:20 +00:00
DataSource [ m ] = ModelBuilder [ m ] ;
2013-05-17 17:54:14 +00:00
}
}
2013-07-23 20:19:35 +00:00
/ * *
* Set up the connector instance for backward compatibility with JugglingDB schema / adapter
* @ private
* /
DataSource . prototype . _setupConnector = function ( ) {
this . connector = this . connector || this . adapter ; // The legacy JugglingDB adapter will set up `adapter` property
this . adapter = this . connector ; // Keep the adapter as an alias to connector
if ( this . connector ) {
if ( ! this . connector . dataSource ) {
// Set up the dataSource if the connector doesn't do so
this . connector . dataSource = this ;
}
2013-07-25 05:57:53 +00:00
var dataSource = this ;
2013-07-23 20:19:35 +00:00
this . connector . log = function ( query , start ) {
dataSource . log ( query , start ) ;
} ;
this . connector . logger = function ( query ) {
var t1 = Date . now ( ) ;
var log = this . log ;
return function ( q ) {
log ( q || query , t1 ) ;
} ;
} ;
}
}
2013-05-17 17:54:14 +00:00
DataSource . prototype . setup = function ( name , settings ) {
2013-07-23 18:16:43 +00:00
var dataSource = this ;
var connector ;
2013-05-17 17:54:14 +00:00
2013-06-14 20:56:44 +00:00
// support single settings object
2013-06-17 14:54:51 +00:00
if ( name && typeof name === 'object' ) {
if ( ! name . initialize ) {
settings = name ;
name = undefined ;
}
2013-06-14 20:56:44 +00:00
}
2013-06-17 14:54:51 +00:00
if ( typeof settings === 'object' ) {
if ( settings . initialize ) {
2013-07-23 18:16:43 +00:00
connector = settings ;
2013-06-17 14:54:51 +00:00
} else if ( settings . connector ) {
2013-07-23 18:16:43 +00:00
connector = settings . connector ;
} else if ( settings . connector ) {
connector = settings . connector ;
2013-06-17 14:54:51 +00:00
}
2013-06-14 20:56:44 +00:00
}
2013-05-17 17:54:14 +00:00
// just save everything we get
this . name = name ;
this . settings = settings ;
// Disconnected by default
this . connected = false ;
this . connecting = false ;
2013-07-23 18:16:43 +00:00
if ( name && ! connector ) {
// and initialize dataSource using connector
// this is only one initialization entry point of connector
// this module should define `connector` member of `this` (dataSource)
2013-05-17 17:54:14 +00:00
if ( typeof name === 'object' ) {
2013-07-23 18:16:43 +00:00
connector = name ;
this . name = connector . name ;
2013-05-17 17:54:14 +00:00
} else if ( name . match ( /^\// ) ) {
// try absolute path
2013-07-23 18:16:43 +00:00
connector = require ( name ) ;
2013-07-23 21:40:44 +00:00
} else if ( existsSync ( _ _dirname + '/connectors/' + name + '.js' ) ) {
2013-07-23 18:16:43 +00:00
// try built-in connector
2013-07-23 21:40:44 +00:00
connector = require ( './connectors/' + name ) ;
2013-05-17 17:54:14 +00:00
} else {
2013-07-23 18:16:43 +00:00
// try foreign connector
2013-05-17 17:54:14 +00:00
try {
2013-07-23 18:16:43 +00:00
connector = require ( 'loopback-connector-' + name ) ;
2013-05-17 17:54:14 +00:00
} catch ( e ) {
2013-07-23 18:16:43 +00:00
return console . log ( '\nWARNING: LoopbackData connector "' + name + '" is not installed,\nso your models would not work, to fix run:\n\n npm install loopback-connector-' + name , '\n' ) ;
2013-05-17 17:54:14 +00:00
}
}
}
2013-07-23 18:16:43 +00:00
if ( connector ) {
2013-07-11 16:55:26 +00:00
var postInit = function postInit ( ) {
2013-05-17 17:54:14 +00:00
2013-07-23 20:19:35 +00:00
this . _setupConnector ( ) ;
2013-07-23 18:16:43 +00:00
// we have an connector now?
if ( ! this . connector ) {
throw new Error ( 'Connector is not defined correctly: it should create `connector` member of dataSource' ) ;
2013-05-17 17:54:14 +00:00
}
this . connected = true ;
this . emit ( 'connected' ) ;
2013-07-11 16:55:26 +00:00
} . bind ( this ) ;
2013-07-23 18:16:43 +00:00
if ( 'function' === typeof connector . initialize ) {
2013-07-11 16:55:26 +00:00
// Call the async initialize method
2013-07-23 18:16:43 +00:00
connector . initialize ( this , postInit ) ;
} else if ( 'function' === typeof connector ) {
// Use the connector constructor directly
this . connector = new connector ( this . settings ) ;
2013-07-11 16:55:26 +00:00
postInit ( ) ;
}
2013-05-17 17:54:14 +00:00
}
2013-07-23 18:16:43 +00:00
dataSource . connect = function ( cb ) {
var dataSource = this ;
if ( dataSource . connected || dataSource . connecting ) {
2013-05-31 20:40:50 +00:00
process . nextTick ( function ( ) {
cb && cb ( ) ;
} ) ;
2013-05-17 23:21:12 +00:00
return ;
}
2013-07-23 18:16:43 +00:00
dataSource . connecting = true ;
if ( dataSource . connector . connect ) {
dataSource . connector . connect ( function ( err , result ) {
2013-05-17 17:54:14 +00:00
if ( ! err ) {
2013-07-23 18:16:43 +00:00
dataSource . connected = true ;
dataSource . connecting = false ;
dataSource . emit ( 'connected' ) ;
2013-05-17 17:54:14 +00:00
}
2013-05-31 20:40:50 +00:00
cb && cb ( err , result ) ;
2013-05-17 17:54:14 +00:00
} ) ;
} else {
2013-05-31 20:40:50 +00:00
process . nextTick ( function ( ) {
cb && cb ( ) ;
} ) ;
2013-05-17 17:54:14 +00:00
}
} ;
}
/ * *
* Define class
*
* @ param { String } className
* @ param { Object } properties - hash of class properties in format
* ` {property: Type, property2: Type2, ...} `
* or
* ` {property: {type: Type}, property2: {type: Type2}, ...} `
* @ param { Object } settings - other configuration of class
* @ return newly created class
*
* @ example simple case
* ` ` `
2013-07-23 18:16:43 +00:00
* var User = dataSource . define ( 'User' , {
2013-05-17 17:54:14 +00:00
* email : String ,
* password : String ,
* birthDate : Date ,
* activated : Boolean
* } ) ;
* ` ` `
* @ example more advanced case
* ` ` `
2013-07-23 18:16:43 +00:00
* var User = dataSource . define ( 'User' , {
2013-05-17 17:54:14 +00:00
* email : { type : String , limit : 150 , index : true } ,
* password : { type : String , limit : 50 } ,
* birthDate : Date ,
* registrationDate : { type : Date , default : function ( ) { return new Date } } ,
* activated : { type : Boolean , default : false }
* } ) ;
* ` ` `
* /
2013-06-17 18:43:20 +00:00
2013-05-17 17:54:14 +00:00
DataSource . prototype . define = function defineClass ( className , properties , settings ) {
2013-05-17 21:41:04 +00:00
var args = slice . call ( arguments ) ;
if ( ! className ) throw new Error ( 'Class name required' ) ;
if ( args . length == 1 ) properties = { } , args . push ( properties ) ;
if ( args . length == 2 ) settings = { } , args . push ( settings ) ;
properties = properties || { } ;
settings = settings || { } ;
2013-05-24 05:20:20 +00:00
var NewClass = ModelBuilder . prototype . define . call ( this , className , properties , settings ) ;
2013-05-17 17:54:14 +00:00
2013-05-23 23:38:14 +00:00
// add data access objects
this . mixin ( NewClass ) ;
2013-05-17 17:54:14 +00:00
2013-07-23 18:16:43 +00:00
if ( this . connector && this . connector . define ) {
// pass control to connector
this . connector . define ( {
2013-05-17 17:54:14 +00:00
model : NewClass ,
properties : properties ,
settings : settings
} ) ;
}
return NewClass ;
} ;
2013-06-14 20:56:44 +00:00
// alias createModel
DataSource . prototype . createModel = DataSource . prototype . define ;
2013-05-23 23:38:14 +00:00
/ * *
* Mixin DataAccessObject methods .
* /
DataSource . prototype . mixin = function ( ModelCtor ) {
2013-06-11 16:03:11 +00:00
var ops = this . operations ( ) ;
2013-06-12 22:45:31 +00:00
var self = this ;
var DAO = this . DataAccessObject ;
2013-05-23 23:38:14 +00:00
2013-06-12 22:45:31 +00:00
// mixin DAO
jutil . mixin ( ModelCtor , DAO ) ;
2013-05-23 23:38:14 +00:00
2013-06-12 22:45:31 +00:00
// decorate operations as alias functions
2013-06-11 16:03:11 +00:00
Object . keys ( ops ) . forEach ( function ( name ) {
var op = ops [ name ] ;
2013-06-12 22:45:31 +00:00
var fn = op . scope [ op . fnName ] ;
2013-06-11 16:03:11 +00:00
var scope ;
if ( op . enabled ) {
scope = op . prototype ? ModelCtor . prototype : ModelCtor ;
2013-06-12 22:45:31 +00:00
// var sfn = scope[name] = function () {
// op.scope[op.fnName].apply(self, arguments);
// }
Object . keys ( op )
. filter ( function ( key ) {
// filter out the following keys
return ~ [
'scope' ,
'fnName' ,
'prototype'
] . indexOf ( key )
} )
. forEach ( function ( key ) {
2013-06-11 16:03:11 +00:00
if ( typeof op [ key ] !== 'undefined' ) {
2013-06-12 22:45:31 +00:00
op . scope [ op . fnName ] [ key ] = op [ key ] ;
2013-06-11 16:03:11 +00:00
}
2013-06-12 22:45:31 +00:00
} ) ;
2013-06-11 16:03:11 +00:00
}
2013-06-12 22:45:31 +00:00
} ) ;
2013-05-23 23:38:14 +00:00
}
/ * *
* Attach an existing model to a data source .
* /
DataSource . prototype . attach = function ( ModelCtor ) {
2013-07-23 18:16:43 +00:00
var properties = ModelCtor . dataSource . definitions [ ModelCtor . modelName ] . properties ;
var settings = ModelCtor . dataSource . definitions [ ModelCtor . modelName ] . settings ;
2013-05-24 22:10:34 +00:00
var className = ModelCtor . modelName ;
2013-05-24 00:29:03 +00:00
2013-05-23 23:38:14 +00:00
this . mixin ( ModelCtor ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector && this . connector . define ) {
// pass control to connector
this . connector . define ( {
2013-05-24 00:29:03 +00:00
model : ModelCtor ,
properties : properties ,
settings : settings
} ) ;
2013-05-23 23:38:14 +00:00
}
2013-07-23 18:16:43 +00:00
// redefine the dataSource
hiddenProperty ( ModelCtor , 'dataSource' , this ) ;
2013-06-12 22:45:31 +00:00
ModelCtor . dataSource = this ;
2013-05-24 00:29:03 +00:00
// add to def
2013-05-24 22:10:34 +00:00
this . definitions [ className ] = {
2013-05-24 00:29:03 +00:00
properties : properties ,
settings : settings
} ;
2013-05-24 22:10:34 +00:00
this . models [ className ] = ModelCtor ;
2013-05-23 23:38:14 +00:00
return this ;
}
2013-05-17 21:41:04 +00:00
/ * *
* Define single property named ` prop ` on ` model `
*
* @ param { String } model - name of model
* @ param { String } prop - name of propery
* @ param { Object } params - property settings
* /
DataSource . prototype . defineProperty = function ( model , prop , params ) {
2013-05-24 05:20:20 +00:00
ModelBuilder . prototype . defineProperty . call ( this , model , prop , params ) ;
2013-05-17 21:41:04 +00:00
2013-07-23 18:16:43 +00:00
if ( this . connector . defineProperty ) {
this . connector . defineProperty ( model , prop , params ) ;
2013-05-17 21:41:04 +00:00
}
} ;
2013-05-17 17:54:14 +00:00
/ * *
* Drop each model table and re - create .
2013-07-23 21:40:44 +00:00
* This method make sense only for sql connectors .
2013-05-17 17:54:14 +00:00
*
* @ warning All data will be lost ! Use autoupdate if you need your data .
* /
DataSource . prototype . automigrate = function ( cb ) {
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . automigrate ) {
this . connector . automigrate ( cb ) ;
2013-05-17 17:54:14 +00:00
} else if ( cb ) {
cb ( ) ;
}
} ;
/ * *
* Update existing database tables .
2013-07-23 21:40:44 +00:00
* This method make sense only for sql connectors .
2013-05-17 17:54:14 +00:00
* /
DataSource . prototype . autoupdate = function ( cb ) {
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . autoupdate ) {
this . connector . autoupdate ( cb ) ;
2013-05-17 17:54:14 +00:00
} else if ( cb ) {
cb ( ) ;
}
} ;
/ * *
* Discover existing database tables .
* This method returns an array of model objects , including { type , name , onwer }
*
* @ param options An object that contains the following settings :
* all : true - Discovering all models , false - Discovering the models owned by the current user
* views : true - Including views , false - only tables
* limit : The page size
* offset : The starting index
* /
2013-06-17 18:43:20 +00:00
DataSource . prototype . discoverModelDefinitions = function ( options , cb ) {
2013-05-17 17:54:14 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverModelDefinitions ) {
this . connector . discoverModelDefinitions ( options , cb ) ;
2013-05-17 17:54:14 +00:00
} else if ( cb ) {
cb ( ) ;
}
} ;
2013-06-02 06:03:25 +00:00
2013-06-17 18:43:20 +00:00
DataSource . prototype . discoverModelDefinitionsSync = function ( options ) {
2013-06-02 06:03:25 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverModelDefinitionsSync ) {
return this . connector . discoverModelDefinitionsSync ( options ) ;
2013-06-02 06:03:25 +00:00
}
return null ;
} ;
2013-05-17 17:54:14 +00:00
/ * *
* Discover properties for a given model .
2013-06-20 22:50:55 +00:00
* The owner
2013-05-21 18:59:16 +00:00
* @ param table The table / view name
* @ param cb Callback
2013-05-17 17:54:14 +00:00
* The method return an array of properties , including { owner , tableName , columnName , dataType , dataLength , nullable }
* /
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverModelProperties = function ( table , options , cb ) {
2013-05-17 17:54:14 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverModelProperties ) {
this . connector . discoverModelProperties ( table , options , cb ) ;
2013-05-17 17:54:14 +00:00
} else if ( cb ) {
cb ( ) ;
}
} ;
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverModelPropertiesSync = function ( modelName , options ) {
2013-06-02 06:03:25 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverModelPropertiesSync ) {
return this . connector . discoverModelPropertiesSync ( modelName , options ) ;
2013-06-02 06:03:25 +00:00
}
return null ;
} ;
2013-05-17 17:54:14 +00:00
/ * *
2013-06-20 22:50:55 +00:00
* Discover primary keys for a given owner / modelName
2013-05-17 17:54:14 +00:00
*
* Each primary key column description has the following columns :
2013-07-23 19:16:12 +00:00
* owner String => table schema ( may be null )
2013-05-21 18:59:16 +00:00
* tableName String => table name
* columnName String => column name
* keySeq Number => sequence number within primary key ( a value of 1 represents the first column of the primary key , a value of 2 would represent the second column within the primary key ) .
* pkName String => primary key name ( may be null )
2013-05-17 17:54:14 +00:00
*
2013-06-20 22:50:55 +00:00
* The owner , default to current user
* @ param modelName The table name
2013-05-21 18:59:16 +00:00
* @ param cb Callback
2013-05-17 17:54:14 +00:00
* /
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverPrimaryKeys = function ( modelName , options , cb ) {
2013-05-17 17:54:14 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverPrimaryKeys ) {
this . connector . discoverPrimaryKeys ( modelName , options , cb ) ;
2013-05-17 17:54:14 +00:00
} else if ( cb ) {
cb ( ) ;
}
}
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverPrimaryKeysSync = function ( modelName , options ) {
2013-06-02 06:03:25 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverPrimaryKeysSync ) {
return this . connector . discoverPrimaryKeysSync ( modelName , options ) ;
2013-06-02 06:03:25 +00:00
}
return null ;
}
2013-05-17 17:54:14 +00:00
/ * *
2013-06-20 22:50:55 +00:00
* Discover foreign keys for a given owner / modelName
2013-05-17 17:54:14 +00:00
*
2013-07-23 19:16:12 +00:00
* fkOwner String => foreign key table schema ( may be null )
2013-05-21 18:59:16 +00:00
* fkName String => foreign key name ( may be null )
* fkTableName String => foreign key table name
* fkColumnName String => foreign key column name
* keySeq short => sequence number within a foreign key ( a value of 1 represents the first column of the foreign key , a value of 2 would represent the second column within the foreign key ) .
2013-07-23 19:16:12 +00:00
* pkOwner String => primary key table schema being imported ( may be null )
2013-05-21 18:59:16 +00:00
* pkName String => primary key name ( may be null )
* pkTableName String => primary key table name being imported
* pkColumnName String => primary key column name being imported
2013-05-17 17:54:14 +00:00
*
2013-06-20 22:50:55 +00:00
*
* @ param modelName
2013-05-17 17:54:14 +00:00
* @ param cb
* /
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverForeignKeys = function ( modelName , options , cb ) {
2013-05-17 17:54:14 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverForeignKeys ) {
this . connector . discoverForeignKeys ( modelName , options , cb ) ;
2013-05-17 17:54:14 +00:00
} else if ( cb ) {
cb ( ) ;
}
}
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverForeignKeysSync = function ( modelName , options ) {
2013-06-02 06:03:25 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverForeignKeysSync ) {
return this . connector . discoverForeignKeysSync ( modelName , options ) ;
2013-06-02 06:03:25 +00:00
}
return null ;
}
2013-06-03 06:00:11 +00:00
/ * *
* Retrieves a description of the foreign key columns that reference the given table ' s primary key columns ( the foreign keys exported by a table ) .
* They are ordered by fkTableOwner , fkTableName , and keySeq .
*
2013-07-23 19:16:12 +00:00
* fkOwner String => foreign key table schema ( may be null )
2013-06-03 06:00:11 +00:00
* fkName String => foreign key name ( may be null )
* fkTableName String => foreign key table name
* fkColumnName String => foreign key column name
* keySeq short => sequence number within a foreign key ( a value of 1 represents the first column of the foreign key , a value of 2 would represent the second column within the foreign key ) .
2013-07-23 19:16:12 +00:00
* pkOwner String => primary key table schema being imported ( may be null )
2013-06-03 06:00:11 +00:00
* pkName String => primary key name ( may be null )
* pkTableName String => primary key table name being imported
* pkColumnName String => primary key column name being imported
*
2013-06-20 22:50:55 +00:00
*
* @ param modelName
2013-06-03 06:00:11 +00:00
* @ param cb
* /
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverExportedForeignKeys = function ( modelName , options , cb ) {
2013-06-03 06:00:11 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverExportedForeignKeys ) {
this . connector . discoverExportedForeignKeys ( modelName , options , cb ) ;
2013-06-03 06:00:11 +00:00
} else if ( cb ) {
cb ( ) ;
}
}
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverExportedForeignKeysSync = function ( modelName , options ) {
2013-06-03 06:00:11 +00:00
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . discoverExportedForeignKeysSync ) {
return this . connector . discoverExportedForeignKeysSync ( modelName , options ) ;
2013-06-03 06:00:11 +00:00
}
return null ;
}
2013-05-21 21:43:25 +00:00
function capitalize ( str ) {
if ( ! str ) {
return str ;
}
2013-05-21 21:54:14 +00:00
return str . charAt ( 0 ) . toUpperCase ( ) + ( ( str . length > 1 ) ? str . slice ( 1 ) . toLowerCase ( ) : '' ) ;
2013-05-21 21:43:25 +00:00
}
function fromDBName ( dbName , camelCase ) {
if ( ! dbName ) {
return dbName ;
}
var parts = dbName . split ( /-|_/ ) ;
parts [ 0 ] = camelCase ? parts [ 0 ] . toLowerCase ( ) : capitalize ( parts [ 0 ] ) ;
for ( var i = 1 ; i < parts . length ; i ++ ) {
parts [ i ] = capitalize ( parts [ i ] ) ;
}
return parts . join ( '' ) ;
}
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverSchema = function ( modelName , options , cb ) {
options = options || { } ;
if ( ! cb && 'function' === typeof options ) {
cb = options ;
options = { } ;
}
options . visited = { } ;
options . associations = false ;
this . discoverSchemas ( modelName , options , function ( err , schemas ) {
2013-05-31 06:13:04 +00:00
if ( err ) {
cb && cb ( err , schemas ) ;
return ;
}
for ( var s in schemas ) {
cb && cb ( null , schemas [ s ] ) ;
return ;
}
} ) ;
}
2013-06-02 06:03:25 +00:00
2013-05-21 21:25:23 +00:00
/ * *
2013-07-23 19:16:12 +00:00
* Discover schema from a given modelName / view
2013-06-20 22:50:55 +00:00
*
* @ param modelName
2013-05-21 21:25:23 +00:00
* @ param cb
* /
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverSchemas = function ( modelName , options , cb ) {
options = options || { } ;
if ( ! cb && 'function' === typeof options ) {
cb = options ;
options = { } ;
}
2013-05-31 00:23:31 +00:00
var self = this ;
2013-07-23 19:16:12 +00:00
var schemaName = this . name || this . connector . name ;
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
var tasks = [
2013-06-20 22:50:55 +00:00
this . discoverModelProperties . bind ( this , modelName , options ) ,
this . discoverPrimaryKeys . bind ( this , modelName , options ) ] ;
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( options . associations ) {
2013-06-20 22:50:55 +00:00
tasks . push ( this . discoverForeignKeys . bind ( this , modelName , options ) ) ;
2013-05-31 06:13:04 +00:00
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
async . parallel ( tasks , function ( err , results ) {
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( err ) {
cb && cb ( err ) ;
return ;
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
var columns = results [ 0 ] ;
2013-06-20 22:50:55 +00:00
if ( ! columns || columns . length === 0 ) {
2013-05-31 06:13:04 +00:00
cb && cb ( ) ;
return ;
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
// Handle primary keys
var primaryKeys = results [ 1 ] ;
var pks = { } ;
primaryKeys . forEach ( function ( pk ) {
pks [ pk . columnName ] = pk . keySeq ;
} ) ;
if ( self . settings . debug ) {
console . log ( 'Primary keys: ' , pks ) ;
}
2013-05-22 19:17:14 +00:00
2013-07-23 19:16:12 +00:00
var schema = {
2013-06-20 22:50:55 +00:00
name : fromDBName ( modelName , false ) ,
2013-05-31 06:13:04 +00:00
options : {
idInjection : false // DO NOT add id property
} ,
properties : {
2013-05-21 21:25:23 +00:00
}
2013-05-31 06:13:04 +00:00
} ;
2013-07-23 19:16:12 +00:00
schema . options [ schemaName ] = {
schema : columns [ 0 ] . owner ,
2013-06-20 22:50:55 +00:00
table : modelName
2013-05-31 06:13:04 +00:00
} ;
columns . forEach ( function ( item ) {
var i = item ;
var propName = fromDBName ( item . columnName , true ) ;
2013-07-23 19:16:12 +00:00
schema . properties [ propName ] = {
2013-05-31 06:13:04 +00:00
type : item . type ,
required : ( item . nullable === 'N' ) ,
2013-07-25 22:05:49 +00:00
length : item . dataLength ,
precision : item . dataPrecision ,
scale : item . dataScale
2013-05-21 21:25:23 +00:00
} ;
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( pks [ item . columnName ] ) {
2013-07-23 19:16:12 +00:00
schema . properties [ propName ] . id = pks [ item . columnName ] ;
2013-05-31 06:13:04 +00:00
}
2013-07-23 19:16:12 +00:00
schema . properties [ propName ] [ schemaName ] = {
2013-05-31 06:13:04 +00:00
columnName : i . columnName ,
dataType : i . dataType ,
dataLength : i . dataLength ,
2013-07-25 22:05:49 +00:00
dataPrecision : item . dataPrecision ,
dataScale : item . dataScale ,
2013-05-31 06:13:04 +00:00
nullable : i . nullable
2013-05-21 21:25:23 +00:00
} ;
2013-05-31 06:13:04 +00:00
} ) ;
2013-05-21 21:25:23 +00:00
2013-06-20 22:50:55 +00:00
// Add current modelName to the visited tables
2013-05-31 06:13:04 +00:00
options . visited = options . visited || { } ;
2013-06-20 22:50:55 +00:00
var schemaKey = columns [ 0 ] . owner + '.' + modelName ;
2013-05-31 06:13:04 +00:00
if ( ! options . visited . hasOwnProperty ( schemaKey ) ) {
if ( self . settings . debug ) {
2013-07-23 19:16:12 +00:00
console . log ( 'Adding schema for ' + schemaKey ) ;
2013-05-31 06:13:04 +00:00
}
2013-07-23 19:16:12 +00:00
options . visited [ schemaKey ] = schema ;
2013-05-31 06:13:04 +00:00
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
var otherTables = { } ;
if ( options . associations ) {
// Handle foreign keys
var fks = { } ;
var foreignKeys = results [ 2 ] ;
foreignKeys . forEach ( function ( fk ) {
var fkInfo = {
keySeq : fk . keySeq ,
owner : fk . pkOwner ,
tableName : fk . pkTableName ,
columnName : fk . pkColumnName
2013-05-22 17:41:08 +00:00
} ;
2013-05-31 06:13:04 +00:00
if ( fks [ fk . fkName ] ) {
fks [ fk . fkName ] . push ( fkInfo ) ;
} else {
fks [ fk . fkName ] = [ fkInfo ] ;
}
} ) ;
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( self . settings . debug ) {
console . log ( 'Foreign keys: ' , fks ) ;
}
foreignKeys . forEach ( function ( fk ) {
2013-05-31 17:25:11 +00:00
var propName = fromDBName ( fk . pkTableName , true ) ;
2013-07-23 19:16:12 +00:00
schema . properties [ propName ] = {
2013-05-31 17:25:11 +00:00
type : fromDBName ( fk . pkTableName , false ) ,
association : {
type : 'belongsTo' ,
foreignKey : fromDBName ( fk . pkColumnName , true )
}
} ;
2013-05-31 06:13:04 +00:00
var key = fk . pkOwner + '.' + fk . pkTableName ;
if ( ! options . visited . hasOwnProperty ( key ) && ! otherTables . hasOwnProperty ( key ) ) {
otherTables [ key ] = { owner : fk . pkOwner , tableName : fk . pkTableName } ;
2013-05-22 17:41:08 +00:00
}
} ) ;
2013-05-31 06:13:04 +00:00
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( Object . keys ( otherTables ) . length === 0 ) {
cb && cb ( null , options . visited ) ;
} else {
var moreTasks = [ ] ;
for ( var t in otherTables ) {
if ( self . settings . debug ) {
2013-07-23 19:16:12 +00:00
console . log ( 'Discovering related schema for ' + schemaKey ) ;
2013-05-31 06:13:04 +00:00
}
2013-06-20 22:50:55 +00:00
var newOptions = { } ;
for ( var key in options ) {
newOptions [ key ] = options [ key ] ;
}
newOptions . owner = otherTables [ t ] . owner ;
moreTasks . push ( DataSource . prototype . discoverSchemas . bind ( self , otherTables [ t ] . tableName , newOptions ) ) ;
2013-05-31 06:13:04 +00:00
}
async . parallel ( moreTasks , function ( err , results ) {
var result = results && results [ 0 ] ;
cb && cb ( err , result ) ;
} ) ;
}
} ) ;
2013-05-21 21:25:23 +00:00
}
2013-06-02 06:03:25 +00:00
/ * *
2013-07-23 19:16:12 +00:00
* Discover schema from a given table / view
2013-06-20 22:50:55 +00:00
*
* @ param modelName
2013-06-02 06:03:25 +00:00
* @ param cb
* /
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverSchemasSync = function ( modelName , options ) {
2013-06-02 06:03:25 +00:00
var self = this ;
2013-07-23 19:16:12 +00:00
var schemaName = this . name || this . connector . name ;
2013-06-02 06:03:25 +00:00
2013-06-20 22:50:55 +00:00
var columns = this . discoverModelPropertiesSync ( modelName , options ) ;
if ( ! columns || columns . length === 0 ) {
2013-06-02 06:03:25 +00:00
return [ ] ;
}
// Handle primary keys
2013-06-20 22:50:55 +00:00
var primaryKeys = this . discoverPrimaryKeysSync ( modelName , options ) ;
2013-06-02 06:03:25 +00:00
var pks = { } ;
primaryKeys . forEach ( function ( pk ) {
pks [ pk . columnName ] = pk . keySeq ;
} ) ;
if ( self . settings . debug ) {
console . log ( 'Primary keys: ' , pks ) ;
}
2013-07-23 19:16:12 +00:00
var schema = {
2013-06-20 22:50:55 +00:00
name : fromDBName ( modelName , false ) ,
2013-06-02 06:03:25 +00:00
options : {
idInjection : false // DO NOT add id property
} ,
properties : {
}
} ;
2013-07-23 19:16:12 +00:00
schema . options [ schemaName ] = {
schema : columns . length > 0 && columns [ 0 ] . owner ,
2013-06-20 22:50:55 +00:00
table : modelName
2013-06-02 06:03:25 +00:00
} ;
columns . forEach ( function ( item ) {
var i = item ;
var propName = fromDBName ( item . columnName , true ) ;
2013-07-23 19:16:12 +00:00
schema . properties [ propName ] = {
2013-06-02 06:03:25 +00:00
type : item . type ,
required : ( item . nullable === 'N' ) ,
2013-07-25 22:20:19 +00:00
length : item . dataLength ,
precision : item . dataPrecision ,
scale : item . dataScale
2013-06-02 06:03:25 +00:00
} ;
if ( pks [ item . columnName ] ) {
2013-07-23 19:16:12 +00:00
schema . properties [ propName ] . id = pks [ item . columnName ] ;
2013-06-02 06:03:25 +00:00
}
2013-07-23 19:16:12 +00:00
schema . properties [ propName ] [ schemaName ] = {
2013-06-02 06:03:25 +00:00
columnName : i . columnName ,
dataType : i . dataType ,
dataLength : i . dataLength ,
2013-07-25 22:20:19 +00:00
dataPrecision : item . dataPrecision ,
dataScale : item . dataScale ,
2013-06-02 06:03:25 +00:00
nullable : i . nullable
} ;
} ) ;
2013-06-20 22:50:55 +00:00
// Add current modelName to the visited tables
2013-06-02 06:03:25 +00:00
options . visited = options . visited || { } ;
2013-06-20 22:50:55 +00:00
var schemaKey = columns [ 0 ] . owner + '.' + modelName ;
2013-06-02 06:03:25 +00:00
if ( ! options . visited . hasOwnProperty ( schemaKey ) ) {
if ( self . settings . debug ) {
2013-07-23 19:16:12 +00:00
console . log ( 'Adding schema for ' + schemaKey ) ;
2013-06-02 06:03:25 +00:00
}
2013-07-23 19:16:12 +00:00
options . visited [ schemaKey ] = schema ;
2013-06-02 06:03:25 +00:00
}
var otherTables = { } ;
if ( options . associations ) {
// Handle foreign keys
var fks = { } ;
2013-06-20 22:50:55 +00:00
var foreignKeys = this . discoverForeignKeysSync ( modelName , options ) ;
2013-06-02 06:03:25 +00:00
foreignKeys . forEach ( function ( fk ) {
var fkInfo = {
keySeq : fk . keySeq ,
owner : fk . pkOwner ,
tableName : fk . pkTableName ,
columnName : fk . pkColumnName
} ;
if ( fks [ fk . fkName ] ) {
fks [ fk . fkName ] . push ( fkInfo ) ;
} else {
fks [ fk . fkName ] = [ fkInfo ] ;
}
} ) ;
if ( self . settings . debug ) {
console . log ( 'Foreign keys: ' , fks ) ;
}
foreignKeys . forEach ( function ( fk ) {
var propName = fromDBName ( fk . pkTableName , true ) ;
2013-07-23 19:16:12 +00:00
schema . properties [ propName ] = {
2013-06-02 06:03:25 +00:00
type : fromDBName ( fk . pkTableName , false ) ,
association : {
type : 'belongsTo' ,
foreignKey : fromDBName ( fk . pkColumnName , true )
}
} ;
var key = fk . pkOwner + '.' + fk . pkTableName ;
if ( ! options . visited . hasOwnProperty ( key ) && ! otherTables . hasOwnProperty ( key ) ) {
otherTables [ key ] = { owner : fk . pkOwner , tableName : fk . pkTableName } ;
}
} ) ;
}
if ( Object . keys ( otherTables ) . length === 0 ) {
return options . visited ;
} else {
var moreTasks = [ ] ;
for ( var t in otherTables ) {
if ( self . settings . debug ) {
2013-07-23 19:16:12 +00:00
console . log ( 'Discovering related schema for ' + schemaKey ) ;
2013-06-02 06:03:25 +00:00
}
2013-06-20 22:50:55 +00:00
var newOptions = { } ;
for ( var key in options ) {
newOptions [ key ] = options [ key ] ;
}
newOptions . owner = otherTables [ t ] . owner ;
self . discoverSchemasSync ( otherTables [ t ] . tableName , newOptions ) ;
2013-06-02 06:03:25 +00:00
}
return options . visited ;
}
}
/ * *
2013-06-20 22:50:55 +00:00
* Discover and build models from the given owner / modelName
*
* @ param modelName
2013-06-02 06:03:25 +00:00
* @ param options
* @ param cb
* /
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverAndBuildModels = function ( modelName , options , cb ) {
2013-06-03 15:51:17 +00:00
var self = this ;
2013-06-20 22:50:55 +00:00
this . discoverSchemas ( modelName , options , function ( err , schemas ) {
2013-06-02 06:03:25 +00:00
if ( err ) {
cb && cb ( err , schemas ) ;
return ;
}
var schemaList = [ ] ;
for ( var s in schemas ) {
2013-07-23 19:16:12 +00:00
var schema = schemas [ s ] ;
schemaList . push ( schema ) ;
2013-06-02 06:03:25 +00:00
}
2013-06-03 15:51:17 +00:00
var models = self . buildModels ( schemaList ) ;
2013-06-02 06:03:25 +00:00
cb && cb ( err , models ) ;
} ) ;
}
/ * *
2013-06-20 22:50:55 +00:00
* Discover and build models from the given owner / modelName synchronously
*
* @ param modelName
2013-06-02 06:03:25 +00:00
* @ param options
* /
2013-06-20 22:50:55 +00:00
DataSource . prototype . discoverAndBuildModelsSync = function ( modelName , options ) {
var schemas = this . discoverSchemasSync ( modelName , options ) ;
2013-06-02 06:03:25 +00:00
var schemaList = [ ] ;
for ( var s in schemas ) {
2013-07-23 19:16:12 +00:00
var schema = schemas [ s ] ;
schemaList . push ( schema ) ;
2013-06-02 06:03:25 +00:00
}
var models = this . buildModels ( schemaList ) ;
return models ;
}
2013-05-17 17:54:14 +00:00
/ * *
* Check whether migrations needed
2013-07-23 21:40:44 +00:00
* This method make sense only for sql connectors .
2013-05-17 17:54:14 +00:00
* /
DataSource . prototype . isActual = function ( cb ) {
this . freeze ( ) ;
2013-07-23 18:16:43 +00:00
if ( this . connector . isActual ) {
this . connector . isActual ( cb ) ;
2013-05-17 17:54:14 +00:00
} else if ( cb ) {
cb ( null , true ) ;
}
} ;
/ * *
* Log benchmarked message . Do not redefine this method , if you need to grab
2013-07-23 18:16:43 +00:00
* chema logs , use ` dataSource.on('log', ...) ` emitter event
2013-05-17 17:54:14 +00:00
*
2013-07-23 21:40:44 +00:00
* @ private used by connectors
2013-05-17 17:54:14 +00:00
* /
DataSource . prototype . log = function ( sql , t ) {
this . emit ( 'log' , sql , t ) ;
} ;
/ * *
2013-07-23 18:16:43 +00:00
* Freeze dataSource . Behavior depends on connector
2013-05-17 17:54:14 +00:00
* /
DataSource . prototype . freeze = function freeze ( ) {
2013-07-23 19:05:08 +00:00
if ( this . connector . freezeDataSource ) {
this . connector . freezeDataSource ( ) ;
}
2013-07-23 18:16:43 +00:00
if ( this . connector . freezeSchema ) {
this . connector . freezeSchema ( ) ;
2013-05-17 17:54:14 +00:00
}
}
/ * *
* Return table name for specified ` modelName `
* @ param { String } modelName
* /
DataSource . prototype . tableName = function ( modelName ) {
2013-05-22 17:41:08 +00:00
var settings = this . definitions [ modelName ] . settings ;
2013-07-23 18:16:43 +00:00
if ( settings [ this . connector . name ] ) {
return settings [ this . connector . name ] . table || modelName ;
2013-05-22 17:41:08 +00:00
} else {
return modelName ;
}
} ;
/ * *
* Return column name for specified modelName and propertyName
* @ param modelName
* @ param propertyName
* @ returns { String } columnName
* /
DataSource . prototype . columnName = function ( modelName , propertyName ) {
2013-05-23 01:04:05 +00:00
if ( ! propertyName ) {
return propertyName ;
}
2013-05-22 17:41:08 +00:00
var property = this . definitions [ modelName ] . properties [ propertyName ] ;
2013-07-23 18:16:43 +00:00
if ( property && property [ this . connector . name ] ) {
return property [ this . connector . name ] . columnName || propertyName ;
2013-05-22 17:41:08 +00:00
} else {
return propertyName ;
}
} ;
2013-05-29 17:03:01 +00:00
/ * *
* Return column metadata for specified modelName and propertyName
* @ param modelName
* @ param propertyName
* @ returns { Object } column metadata
* /
DataSource . prototype . columnMetadata = function ( modelName , propertyName ) {
if ( ! propertyName ) {
return propertyName ;
}
var property = this . definitions [ modelName ] . properties [ propertyName ] ;
2013-07-23 18:16:43 +00:00
if ( property && property [ this . connector . name ] ) {
return property [ this . connector . name ] ;
2013-05-29 17:03:01 +00:00
} else {
return null ;
}
} ;
2013-05-22 17:41:08 +00:00
/ * *
* Return column names for specified modelName
* @ param modelName
* @ returns { [ String ] } column names
* /
DataSource . prototype . columnNames = function ( modelName ) {
var props = this . definitions [ modelName ] . properties ;
var cols = [ ] ;
for ( var p in props ) {
2013-07-23 18:16:43 +00:00
if ( props [ p ] [ this . connector . name ] ) {
cols . push ( props [ p ] [ this . connector . name ] . columnName || p ) ;
2013-05-22 17:41:08 +00:00
} else {
cols . push ( p ) ;
}
}
return cols ;
2013-05-17 17:54:14 +00:00
} ;
2013-05-22 17:41:08 +00:00
/ * *
* Find the ID column name
* @ param modelName
* @ returns { String } columnName for ID
* /
2013-05-23 01:04:05 +00:00
DataSource . prototype . idColumnName = function ( modelName ) {
return this . columnName ( modelName , this . idName ( modelName ) ) ;
}
/ * *
2013-05-30 23:06:04 +00:00
* Find the ID property name
2013-05-23 01:04:05 +00:00
* @ param modelName
2013-05-30 23:06:04 +00:00
* @ returns { String } property for ID
2013-05-23 01:04:05 +00:00
* /
DataSource . prototype . idName = function ( modelName ) {
2013-05-22 17:41:08 +00:00
var props = this . definitions [ modelName ] . properties ;
2013-05-23 17:46:01 +00:00
for ( var key in props ) {
2013-05-23 01:04:05 +00:00
if ( props [ key ] . id ) {
return key ;
2013-05-22 17:41:08 +00:00
}
2013-05-23 17:46:01 +00:00
}
2013-05-22 17:41:08 +00:00
return null ;
}
2013-05-30 23:06:04 +00:00
/ * *
* Find the ID property names sorted by the index
* @ param modelName
* @ returns { [ String ] } property names for IDs
* /
DataSource . prototype . idNames = function ( modelName ) {
var ids = [ ] ;
var props = this . definitions [ modelName ] . properties ;
for ( var key in props ) {
if ( props [ key ] . id && props [ key ] . id > 0 ) {
ids . push ( { name : key , id : props [ key ] . id } ) ;
}
}
ids . sort ( function ( a , b ) {
return a . key - b . key ;
} ) ;
var names = ids . map ( function ( id ) {
return id . name ;
} ) ;
return names ;
}
2013-05-22 17:41:08 +00:00
2013-05-17 17:54:14 +00:00
/ * *
* Define foreign key
* @ param { String } className
* @ param { String } key - name of key field
* /
DataSource . prototype . defineForeignKey = function defineForeignKey ( className , key , foreignClassName ) {
// quit if key already defined
if ( this . definitions [ className ] . properties [ key ] ) return ;
2013-07-23 18:16:43 +00:00
if ( this . connector . defineForeignKey ) {
2013-05-17 17:54:14 +00:00
var cb = function ( err , keyType ) {
if ( err ) throw err ;
this . definitions [ className ] . properties [ key ] = { type : keyType } ;
} . bind ( this ) ;
2013-07-23 18:16:43 +00:00
switch ( this . connector . defineForeignKey . length ) {
2013-05-17 17:54:14 +00:00
case 4 :
2013-07-23 18:16:43 +00:00
this . connector . defineForeignKey ( className , key , foreignClassName , cb ) ;
2013-05-17 17:54:14 +00:00
break ;
default :
case 3 :
2013-07-23 18:16:43 +00:00
this . connector . defineForeignKey ( className , key , cb ) ;
2013-05-17 17:54:14 +00:00
break ;
}
} else {
this . definitions [ className ] . properties [ key ] = { type : Number } ;
}
2013-05-24 22:10:34 +00:00
2013-05-17 17:54:14 +00:00
this . models [ className ] . registerProperty ( key ) ;
} ;
/ * *
* Close database connection
* /
DataSource . prototype . disconnect = function disconnect ( cb ) {
2013-05-31 20:10:09 +00:00
var self = this ;
2013-07-23 18:16:43 +00:00
if ( this . connected && ( typeof this . connector . disconnect === 'function' ) ) {
this . connector . disconnect ( function ( err , result ) {
2013-05-31 20:10:09 +00:00
self . connected = false ;
cb && cb ( err , result ) ;
} ) ;
} else {
process . nextTick ( function ( ) {
cb && cb ( ) ;
} ) ;
2013-05-17 17:54:14 +00:00
}
} ;
DataSource . prototype . copyModel = function copyModel ( Master ) {
2013-07-23 18:16:43 +00:00
var dataSource = this ;
2013-05-17 17:54:14 +00:00
var className = Master . modelName ;
2013-07-23 18:16:43 +00:00
var md = Master . dataSource . definitions [ className ] ;
2013-05-17 17:54:14 +00:00
var Slave = function SlaveModel ( ) {
Master . apply ( this , [ ] . slice . call ( arguments ) ) ;
2013-07-23 18:16:43 +00:00
this . dataSource = dataSource ;
2013-05-17 17:54:14 +00:00
} ;
util . inherits ( Slave , Master ) ;
Slave . _ _proto _ _ = Master ;
2013-07-23 18:16:43 +00:00
hiddenProperty ( Slave , 'dataSource' , dataSource ) ;
2013-05-17 17:54:14 +00:00
hiddenProperty ( Slave , 'modelName' , className ) ;
hiddenProperty ( Slave , 'relations' , Master . relations ) ;
2013-07-23 18:16:43 +00:00
if ( ! ( className in dataSource . models ) ) {
2013-05-17 17:54:14 +00:00
// store class in model pool
2013-07-23 18:16:43 +00:00
dataSource . models [ className ] = Slave ;
dataSource . definitions [ className ] = {
2013-05-17 17:54:14 +00:00
properties : md . properties ,
settings : md . settings
} ;
2013-07-23 18:16:43 +00:00
if ( ( ! dataSource . isTransaction ) && dataSource . connector && dataSource . connector . define ) {
dataSource . connector . define ( {
2013-05-17 17:54:14 +00:00
model : Slave ,
properties : md . properties ,
settings : md . settings
} ) ;
}
}
return Slave ;
} ;
DataSource . prototype . transaction = function ( ) {
2013-07-23 18:16:43 +00:00
var dataSource = this ;
2013-05-17 17:54:14 +00:00
var transaction = new EventEmitter ;
transaction . isTransaction = true ;
2013-07-23 18:16:43 +00:00
transaction . origin = dataSource ;
transaction . name = dataSource . name ;
transaction . settings = dataSource . settings ;
2013-05-17 17:54:14 +00:00
transaction . connected = false ;
transaction . connecting = false ;
2013-07-23 18:16:43 +00:00
transaction . connector = dataSource . connector . transaction ( ) ;
2013-05-17 17:54:14 +00:00
// create blank models pool
transaction . models = { } ;
transaction . definitions = { } ;
2013-07-23 18:16:43 +00:00
for ( var i in dataSource . models ) {
dataSource . copyModel . call ( transaction , dataSource . models [ i ] ) ;
2013-05-17 17:54:14 +00:00
}
2013-07-23 18:16:43 +00:00
transaction . connect = dataSource . connect ;
2013-05-17 17:54:14 +00:00
transaction . exec = function ( cb ) {
2013-07-23 18:16:43 +00:00
transaction . connector . exec ( cb ) ;
2013-05-17 17:54:14 +00:00
} ;
return transaction ;
} ;
2013-06-11 16:03:11 +00:00
/ * *
* Enable a data source operation remotely .
* /
DataSource . prototype . enableRemote = function ( operation ) {
var op = this . getOperation ( operation ) ;
if ( op ) {
op . remoteEnabled = true ;
} else {
2013-06-11 18:11:10 +00:00
throw new Error ( operation + ' is not provided by the attached connector' ) ;
2013-06-11 16:03:11 +00:00
}
}
/ * *
* Disable a data source operation remotely .
* /
DataSource . prototype . disableRemote = function ( operation ) {
var op = this . getOperation ( operation ) ;
if ( op ) {
op . remoteEnabled = false ;
} else {
2013-06-11 18:11:10 +00:00
throw new Error ( operation + ' is not provided by the attached connector' ) ;
2013-06-11 16:03:11 +00:00
}
}
/ * *
* Get an operation ' s metadata .
* /
DataSource . prototype . getOperation = function ( operation ) {
var ops = this . operations ( ) ;
2013-06-11 18:11:10 +00:00
var opKeys = Object . keys ( ops ) ;
2013-06-11 16:03:11 +00:00
2013-06-11 18:11:10 +00:00
for ( var i = 0 ; i < opKeys . length ; i ++ ) {
var op = ops [ opKeys [ i ] ] ;
2013-06-11 16:03:11 +00:00
if ( op . name === operation ) {
return op ;
}
}
}
/ * *
* Get all operations .
* /
DataSource . prototype . operations = function ( ) {
return this . _operations ;
}
/ * *
* Define an operation .
* /
DataSource . prototype . defineOperation = function ( name , options , fn ) {
options . fn = fn ;
2013-06-11 18:11:10 +00:00
options . name = name ;
2013-06-11 16:03:11 +00:00
this . _operations [ name ] = options ;
}
2013-07-15 17:38:54 +00:00
DataSource . prototype . isRelational = function ( ) {
2013-07-23 18:16:43 +00:00
return this . connector && this . connector . relational ;
2013-07-13 02:10:42 +00:00
}
2013-05-17 17:54:14 +00:00
/ * *
* Define hidden property
* /
function hiddenProperty ( where , property , value ) {
Object . defineProperty ( where , property , {
writable : false ,
enumerable : false ,
configurable : false ,
value : value
} ) ;
}
/ * *
* Define readonly property on object
*
* @ param { Object } obj
* @ param { String } key
* @ param { Mixed } value
* /
function defineReadonlyProp ( obj , key , value ) {
Object . defineProperty ( obj , key , {
writable : false ,
enumerable : true ,
configurable : true ,
value : value
} ) ;
}