2016-03-02 17:07:05 +01:00
|
|
|
|
|
|
|
import {assign} from 'lodash'
|
|
|
|
|
|
|
|
// JoinClause
|
|
|
|
// -------
|
|
|
|
|
|
|
|
// The "JoinClause" is an object holding any necessary info about a join,
|
|
|
|
// including the type, and any associated tables & columns being joined.
|
|
|
|
function JoinClause(table, type, schema) {
|
|
|
|
this.schema = schema;
|
|
|
|
this.table = table;
|
|
|
|
this.joinType = type;
|
|
|
|
this.and = this;
|
|
|
|
this.clauses = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
assign(JoinClause.prototype, {
|
|
|
|
|
|
|
|
grouping: 'join',
|
|
|
|
|
|
|
|
// Adds an "on" clause to the current join object.
|
|
|
|
on: function(first, operator, second) {
|
2016-05-11 15:26:53 +02:00
|
|
|
if (typeof first === 'function') {
|
|
|
|
this.clauses.push({
|
|
|
|
type: 'onWrapped',
|
|
|
|
value: first,
|
|
|
|
bool: this._bool()
|
|
|
|
});
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2016-03-02 17:07:05 +01:00
|
|
|
var data, bool = this._bool()
|
|
|
|
switch (arguments.length) {
|
|
|
|
case 1: {
|
|
|
|
if (typeof first === 'object' && typeof first.toSQL !== 'function') {
|
|
|
|
var i = -1, keys = Object.keys(first)
|
|
|
|
var method = bool === 'or' ? 'orOn' : 'on'
|
|
|
|
while (++i < keys.length) {
|
|
|
|
this[method](keys[i], first[keys[i]])
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
} else {
|
2016-05-11 15:26:53 +02:00
|
|
|
data = {type: 'onRaw', value: first, bool: bool};
|
2016-03-02 17:07:05 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2016-05-11 15:26:53 +02:00
|
|
|
case 2: data = {type: 'onBasic', column: first, operator: '=', value: operator, bool: bool}; break;
|
|
|
|
default: data = {type: 'onBasic', column: first, operator: operator, value: second, bool: bool};
|
2016-03-02 17:07:05 +01:00
|
|
|
}
|
|
|
|
this.clauses.push(data);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Adds a "using" clause to the current join.
|
|
|
|
using: function(column) {
|
|
|
|
return this.clauses.push([this._bool(), 'using', column]);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Adds an "and on" clause to the current join object.
|
|
|
|
andOn: function() {
|
|
|
|
return this.on.apply(this, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Adds an "or on" clause to the current join object.
|
|
|
|
orOn: function(first, operator, second) {
|
|
|
|
/*jshint unused: false*/
|
|
|
|
return this._bool('or').on.apply(this, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Explicitly set the type of join, useful within a function when creating a grouped join.
|
|
|
|
type: function(type) {
|
|
|
|
this.joinType = type;
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
_bool: function(bool) {
|
|
|
|
if (arguments.length === 1) {
|
|
|
|
this._boolFlag = bool;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
var ret = this._boolFlag || 'and';
|
|
|
|
this._boolFlag = 'and';
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
Object.defineProperty(JoinClause.prototype, 'or', {
|
|
|
|
get: function () {
|
|
|
|
return this._bool('or');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-05-11 15:26:53 +02:00
|
|
|
module.exports = JoinClause;
|