-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsql.ts
248 lines (210 loc) · 6.38 KB
/
sql.ts
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
import minify = require('pg-minify')
/**
* A Postgres query which may be fed directly into the `pg` module for
* execution.
*/
export interface PGQuery {
/**
* The SQL query text with placeholders for values. The placeholders refer to
* a value in the `values` array.
*/
text: string
/**
* The values used to fill the placeholders in `text`.
*/
values: Array<any>
}
/**
* A single, escaped, `SQLQuery` item. These items are assembled into a SQL
* query through the compile method.
*/
type SQLItem =
{ type: 'RAW', text: string } |
{ type: 'VALUE', value: any } |
{ type: 'IDENTIFIER', names: Array<any> }
/**
* The representation of a SQL query. Call `compile` to turn it into a SQL
* string with value placeholders.
*
* This object is immutable. Instead of changing the object, new `SQLQuery`
* values will be returned.
*
* The constructor for this class is private and may not be called.
*/
export class SQLQuery implements PGQuery {
/**
* A template string tag that interpolates literal SQL with placeholder SQL
* values.
*/
public static query (strings: TemplateStringsArray, ...values: Array<any>): SQLQuery {
const items: Array<SQLItem> = []
// Add all of the strings as raw items and values as placeholder values.
for (let i = 0; i < strings.length; i++) {
items.push({ type: 'RAW', text: strings[i] })
if (i < values.length) {
const value = values[i]
// If the value is a `SQLQuery`, add all of its items.
if (value instanceof SQLQuery) {
for (const item of value._items)
items.push(item)
}
else {
items.push({ type: 'VALUE', value })
}
}
}
return new SQLQuery(items)
}
/**
* Joins multiple queries together and puts a seperator in between if a
* seperator was defined.
*/
public static join (queries: Array<SQLQuery>, seperator?: string) {
const items: Array<SQLItem> = []
// Add the items of all our queries into the `items` array, adding text
// seperator items as necessary.
for (const query of queries) {
for (const item of query._items)
items.push(item)
// If we have a seperator, and this is not the last query, add a
// seperator.
if (seperator && query !== queries[queries.length - 1])
items.push({ type: 'RAW', text: seperator })
}
return new SQLQuery(items)
}
/**
* Creates a new query with the raw text.
*/
public static raw (text: string): SQLQuery {
return new SQLQuery([{ type: 'RAW', text }])
}
/**
* Creates a new query with the value. This value will be turned into a
* placeholder when the query gets compiled.
*/
public static value (value: any): SQLQuery {
return new SQLQuery([{ type: 'VALUE', value }])
}
/**
* Creates an identifier query. Each name will be escaped, and the
* names will be concatenated with a period (`.`).
*/
public static identifier (...names: Array<any>): SQLQuery {
return new SQLQuery([{ type: 'IDENTIFIER', names }])
}
/**
* The internal array of SQL items. This array is never mutated, only cloned.
*/
private readonly _items: Array<SQLItem>
/**
* Storage for our memoized compiled query.
*/
private _query: PGQuery | null
// The constructor is private. Users should use the static `create` method to
// make a new `SQLQuery`.
private constructor (items: Array<SQLItem>) {
this._items = items
this._query = null
}
/**
* The SQL query text with placeholders for values. The placeholders refer to
* a value in the `values` array.
*/
public get text (): string {
return this.compile().text
}
/**
* The values used to fill the placeholders in `text`.
*/
public get values (): Array<any> {
return this.compile().values
}
/**
* Compiles this SQL query into a Postgres query. Memoized so it only does the
* work once.
*/
public compile (): PGQuery {
// If we don’t yet have a compiled query, create one.
if (this._query == null)
this._query = compile(this._items)
return this._query
}
}
/**
* Compiles a list of `SQLItem`s into a single `PGQuery`.
*/
function compile (items: Array<SQLItem>): PGQuery {
// Create an empty query object.
const query: PGQuery = {
text: '',
values: [],
}
const localIdentifiers = new Map<any, string>()
for (const item of items) {
switch (item.type) {
// If this is just raw text, we add it directly to the query text.
case 'RAW': {
query.text += item.text
break
}
// If we got a value SQL item, add a placeholder and add the value to our
// placeholder values array.
case 'VALUE': {
query.text += `$${query.values.length + 1}`
query.values.push(item.value)
break
}
// If we got an identifier type, escape the strings and get a local
// identifier for non-string identifiers.
case 'IDENTIFIER': {
query.text += item.names.map((name): string => {
if (typeof name === 'string')
return escapePGIdentifier(name)
if (!localIdentifiers.has(name))
localIdentifiers.set(name, `__local_${localIdentifiers.size}__`)
return localIdentifiers.get(name)!
}).join('.')
break
}
}
}
// Minify the query text before returning it.
query.text = minify(query.text)
return query
}
/**
* Escapes a Postgres identifier. Adapted from the [`pg` module][1].
*
* [1]: https://github.com/brianc/node-postgres/blob/a536afb1a8baa6d584bd460e7c1286d75bb36fe3/lib/client.js#L255-L272
*/
function escapePGIdentifier (str: string): string {
let escaped = '"'
for (const c of str) {
if (c === '"') escaped += c + c
else escaped += c
}
escaped += '"'
return escaped
}
/**
* The interface we actually expect people to use.
*/
export interface SQL {
(strings: TemplateStringsArray, ...values: Array<any>): SQLQuery
join (queries: Array<SQLQuery>, seperator?: string): SQLQuery
raw (text: string): SQLQuery
value (value: any): SQLQuery
ident (...names: Array<any>): SQLQuery
}
// Create the SQL interface we export.
export const sql: SQL = Object.assign(
(strings: TemplateStringsArray, ...values: Array<any>): SQLQuery =>
SQLQuery.query(strings, ...values),
{
join: SQLQuery.join,
raw: SQLQuery.raw,
value: SQLQuery.value,
ident: SQLQuery.identifier,
},
)