123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- var Utils = require("./../utils")
- , DataTypes = require('./../data-types')
- , Helpers = require('./helpers')
- , Transaction = require('../transaction')
- module.exports = (function() {
- var BelongsTo = function(source, target, options) {
- this.associationType = 'BelongsTo'
- this.source = source
- this.target = target
- this.options = options
- this.isSingleAssociation = true
- this.isSelfAssociation = (this.source.tableName == this.target.tableName)
- this.as = this.options.as
- if (this.isSelfAssociation && !this.options.foreignKey && !!this.as) {
- this.options.foreignKey = Utils._.underscoredIf(Utils.singularize(this.source.tableName, this.source.options.language) + "Id", this.source.options.underscored)
- }
- if (this.as) {
- this.isAliased = true
- } else {
- this.as = Utils.singularize(this.target.tableName, this.target.options.language)
- // Hotfix
- if (this.as === this.target.tableName) {
- this.as = Utils.singularize(this.target.name, this.target.options.language)
- }
- }
- this.associationAccessor = this.isSelfAssociation
- ? Utils.combineTableNames(this.target.tableName, this.as)
- : this.as
- this.options.useHooks = options.useHooks
- this.accessors = {
- get: Utils._.camelize('get_' + this.as),
- set: Utils._.camelize('set_' + this.as),
- create: Utils._.camelize('create_' + this.as)
- }
- }
- // the id is in the source table
- BelongsTo.prototype.injectAttributes = function() {
- var newAttributes = {}
- , targetKeys = Object.keys(this.target.primaryKeys)
- , keyType = ((this.target.hasPrimaryKeys && targetKeys.length === 1) ? this.target.rawAttributes[targetKeys[0]].type : DataTypes.INTEGER)
- this.identifier = this.options.foreignKey || Utils._.underscoredIf(Utils.singularize(this.target.tableName, this.target.options.language) + "Id", this.source.options.underscored)
- newAttributes[this.identifier] = { type: this.options.keyType || keyType }
- Helpers.addForeignKeyConstraints(newAttributes[this.identifier], this.target, this.source, this.options)
- Utils._.defaults(this.source.rawAttributes, newAttributes)
- // Sync attributes and setters/getters to DAO prototype
- this.source.refreshAttributes()
- return this
- }
- BelongsTo.prototype.injectGetter = function(obj) {
- var self = this
- , primaryKeys = Object.keys(self.target.primaryKeys)
- , primaryKey = primaryKeys.length === 1 ? primaryKeys[0] : 'id'
- obj[this.accessors.get] = function(params) {
- var id = this[self.identifier]
- , where = {}
- where[primaryKey] = id
- if (!Utils._.isUndefined(params)) {
- if (!Utils._.isUndefined(params.where)) {
- params.where = Utils._.extend(where, params.where)
- } else {
- params.where = where
- }
- } else {
- params = id
- }
- return self.target.find(params)
- }
- return this
- }
- BelongsTo.prototype.injectSetter = function(obj) {
- var self = this
- obj[this.accessors.set] = function(associatedObject, options) {
- var primaryKeys = !!associatedObject && !!associatedObject.daoFactory ? Object.keys(associatedObject.daoFactory.primaryKeys) : []
- , primaryKey = primaryKeys.length === 1 ? primaryKeys[0] : 'id'
- this[self.identifier] = associatedObject ? associatedObject[primaryKey] : null
- options = Utils._.extend({
- fields: [ self.identifier ],
- allowNull: [self.identifier],
- association: true
- }, options)
- // passes the changed field to save, so only that field get updated.
- return this.save(options)
- }
- return this
- }
- BelongsTo.prototype.injectCreator = function(obj) {
- var self = this
- obj[this.accessors.create] = function(values, fieldsOrOptions) {
- var instance = this
- , options = {}
- if ((fieldsOrOptions || {}).transaction instanceof Transaction) {
- options.transaction = fieldsOrOptions.transaction
- }
- return new Utils.CustomEventEmitter(function(emitter) {
- self.target
- .create(values, fieldsOrOptions)
- .proxy(emitter, { events: ['error', 'sql'] })
- .success(function(newAssociatedObject) {
- instance[self.accessors.set](newAssociatedObject, options)
- .proxy(emitter)
- })
- }).run()
- }
- return this
- }
- return BelongsTo
- })()
|