-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclause-handlers.js
149 lines (127 loc) · 3.22 KB
/
clause-handlers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
module.exports = {
staticText(text) {
return {
sql: text,
}
},
whateverTheyPutIn(clausePartsJoinedBy, partsJoinedBy, ...expressions) {
const { sql, values } = joinExpressions(expressions, partsJoinedBy)
return {
sql,
values,
joinedBy: clausePartsJoinedBy,
}
},
tableNameOrSubquery(table, alias) {
if (hasABuildFunction(table)) {
const result = table.build(`\n\t`)
return {
sql: combineWithAlias(`(\n\t${ result.sql }\n)`, alias),
values: result.values,
}
} else {
return {
sql: combineWithAlias(table, alias),
}
}
},
columnParam(joinedBy, opts, expression, comparator, value) {
opts = opts || {}
const expressionObject = expressionToObject(expression)
if (comparator === undefined) {
if (opts.like) {
throw new Error(`You can't use a "like" comparison without passing in a value`)
}
return { joinedBy, ...expressionObject }
} else if (value === undefined) {
value = comparator
comparator = undefined
}
const valueIsObject = (value && typeof value === `object` && value.values && typeof value.values === `object`)
const valueParams = valueIsObject
? value.values
: [ value ]
const values = [ ...expressionObject.values, ...valueParams ]
const comparatorAndValue = valueIsObject
? getComparison(opts.like, comparator) + ` ` + value.sql
: getComparisonAndParameterString(value, opts.like, comparator)
return {
sql: `${ expressionObject.sql } ${ comparatorAndValue }`,
values,
joinedBy,
}
},
joinClauseHandler(type, table, alias, on) {
if (!on) {
on = alias
alias = undefined
}
function joinString() {
return `${ type }JOIN `
}
let onParams = []
let onString = ``
if (on) {
if (on.values) {
onParams = on.values
onString = makeOn(on.sql)
} else {
onString = makeOn(on)
}
}
if (hasABuildFunction(table)) {
const result = table.build(`\n\t`)
return {
sql: joinString() + combineWithAlias(`(\n\t${ result.sql }\n)`, alias) + onString,
values: [ ...result.values, ...onParams ],
joinedBy: `\n`,
}
} else {
return {
sql: joinString() + combineWithAlias(table, alias) + onString,
values: onParams,
joinedBy: `\n`,
}
}
},
}
const makeOn = on => on ? ` ON ${ on }` : ``
const expressionToObject = expression => {
if (expression && typeof expression === `object` && expression.values) {
return expression
} else {
return {
sql: expression,
values: [],
}
}
}
const joinExpressions = (expressions, joinedBy) => {
const values = []
const sqls = []
expressions.forEach(expression => {
const object = expressionToObject(expression)
values.push(...object.values)
sqls.push(object.sql)
})
return {
sql: sqls.join(joinedBy),
values,
}
}
const getComparison = (like, comparison) => like ? `LIKE` : (comparison || `=`)
function getComparisonAndParameterString(value, like, comparison) {
if (value === null) {
return `${ (comparison || `IS`) } ?`
} else if (Array.isArray(value)) {
return `${ (comparison || `IN`) }(?)`
} else {
return `${ getComparison(like, comparison) } ?`
}
}
function hasABuildFunction(q) {
return typeof q.build === `function`
}
function combineWithAlias(str, alias) {
return alias ? (`${ str } AS ${ alias }`) : str
}