-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathPostgresMetaColumns.ts
420 lines (399 loc) · 12.8 KB
/
PostgresMetaColumns.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
import { ident, literal } from 'pg-format'
import PostgresMetaTables from './PostgresMetaTables'
import { DEFAULT_SYSTEM_SCHEMAS } from './constants'
import { columnsSql } from './sql'
import { PostgresMetaResult, PostgresColumn, PostgresColumnCreate } from './types'
export default class PostgresMetaColumns {
query: (sql: string) => Promise<PostgresMetaResult<any>>
metaTables: PostgresMetaTables
constructor(query: (sql: string) => Promise<PostgresMetaResult<any>>) {
this.query = query
this.metaTables = new PostgresMetaTables(query)
}
async list({
includeSystemSchemas = false,
limit,
offset,
}: {
includeSystemSchemas?: boolean
limit?: number
offset?: number
} = {}): Promise<PostgresMetaResult<PostgresColumn[]>> {
let sql = columnsSql
if (!includeSystemSchemas) {
sql = `${sql} AND NOT (nc.nspname IN (${DEFAULT_SYSTEM_SCHEMAS.map(literal).join(',')}))`
}
if (limit) {
sql = `${sql} LIMIT ${limit}`
}
if (offset) {
sql = `${sql} OFFSET ${offset}`
}
return await this.query(sql)
}
async retrieve({ id }: { id: string }): Promise<PostgresMetaResult<PostgresColumn>>
async retrieve({
name,
table,
schema,
}: {
name: string
table: string
schema: string
}): Promise<PostgresMetaResult<PostgresColumn>>
async retrieve({
id,
name,
table,
schema = 'public',
}: {
id?: string
name?: string
table?: string
schema?: string
}): Promise<PostgresMetaResult<PostgresColumn>> {
if (id) {
const { data, error } = await this.batchRetrieve({ ids: [id] })
if (data) {
return { data: data[0], error: null }
} else if (error) {
return { data: null, error: error }
}
}
if (name && table) {
const { data, error } = await this.batchRetrieve({ names: [name], table, schema })
if (data) {
return { data: data[0], error: null }
} else if (error) {
return { data: null, error: error }
}
}
return { data: null, error: { message: 'Invalid parameters on column retrieve' } }
}
async batchRetrieve({ ids }: { ids: string[] }): Promise<PostgresMetaResult<PostgresColumn[]>>
async batchRetrieve({
names,
table,
schema,
}: {
names: string[]
table: string
schema: string
}): Promise<PostgresMetaResult<PostgresColumn[]>>
async batchRetrieve({
ids,
names,
table,
schema = 'public',
}: {
ids?: string[]
names?: string[]
table?: string
schema?: string
}): Promise<PostgresMetaResult<PostgresColumn[]>> {
if (ids && ids.length > 0) {
const regexp = /^(\d+)\.(\d+)$/
const invalidIds = ids.filter((id) => !regexp.test(id))
if (invalidIds.length > 0) {
return {
data: null,
error: { message: `Invalid format for column IDs: ${invalidIds.join(', ')}` },
}
}
const filteringClauses = ids
.map((id) => {
const matches = id.match(regexp) as RegExpMatchArray
const [tableId, ordinalPos] = matches.slice(1).map(Number)
return `(c.oid = ${tableId} AND a.attnum = ${ordinalPos})`
})
.join(' OR ')
const sql = `${columnsSql} AND (${filteringClauses});`
const { data, error } = await this.query(sql)
if (error) {
return { data, error }
} else if (data.length < ids.length) {
return { data: null, error: { message: `Cannot find some of the requested columns.` } }
} else {
return { data, error }
}
} else if (names && names.length > 0 && table) {
const filteringClauses = names.map((name) => `a.attname = ${literal(name)}`).join(' OR ')
const sql = `${columnsSql} AND (${filteringClauses}) AND c.relname = ${literal(
table
)} AND nc.nspname = ${literal(schema)};`
const { data, error } = await this.query(sql)
if (error) {
return { data, error }
} else if (data.length < names.length) {
return {
data: null,
error: { message: `Cannot find some of the requested columns.` },
}
} else {
return { data, error }
}
} else {
return { data: null, error: { message: 'Invalid parameters on column retrieve' } }
}
}
async create(col: PostgresColumnCreate): Promise<PostgresMetaResult<PostgresColumn>> {
const { data, error } = await this.batchCreate([col])
if (data) {
return { data: data[0], error: null }
} else if (error) {
return { data: null, error: error }
}
return { data: null, error: { message: 'Invalid params' } }
}
async batchCreate(cols: PostgresColumnCreate[]): Promise<PostgresMetaResult<PostgresColumn[]>> {
if (cols.length < 1) {
throw new Error('no columns provided for creation')
}
if ([...new Set(cols.map((col) => col.table_id))].length > 1) {
throw new Error('all columns in a single request must share the same table')
}
const { table_id } = cols[0]
const { data, error } = await this.metaTables.retrieve({ id: table_id })
if (error) {
return { data: null, error }
}
const { name: table, schema } = data!
const sqlStrings = cols.map((col) => this.generateColumnCreationSql(col, schema, table))
const sql = `BEGIN;
${sqlStrings.join('\n')}
COMMIT;
`
{
const { error } = await this.query(sql)
if (error) {
return { data: null, error }
}
}
const names = cols.map((col) => col.name)
return await this.batchRetrieve({ names, table, schema })
}
generateColumnCreationSql(
{
name,
type,
default_value,
default_value_format = 'literal',
is_identity = false,
identity_generation = 'BY DEFAULT',
// Can't pick a value as default since regular columns are nullable by default but PK columns aren't
is_nullable,
is_primary_key = false,
is_unique = false,
comment,
check,
}: PostgresColumnCreate,
schema: string,
table: string
) {
let defaultValueClause = ''
if (is_identity) {
if (default_value !== undefined) {
return {
data: null,
error: { message: 'Columns cannot both be identity and have a default value' },
}
}
defaultValueClause = `GENERATED ${identity_generation} AS IDENTITY`
} else {
if (default_value === undefined) {
// skip
} else if (default_value_format === 'expression') {
defaultValueClause = `DEFAULT ${default_value}`
} else {
defaultValueClause = `DEFAULT ${literal(default_value)}`
}
}
let isNullableClause = ''
if (is_nullable !== undefined) {
isNullableClause = is_nullable ? 'NULL' : 'NOT NULL'
}
const isPrimaryKeyClause = is_primary_key ? 'PRIMARY KEY' : ''
const isUniqueClause = is_unique ? 'UNIQUE' : ''
const checkSql = check === undefined ? '' : `CHECK (${check})`
const commentSql =
comment === undefined
? ''
: `COMMENT ON COLUMN ${ident(schema)}.${ident(table)}.${ident(name)} IS ${literal(comment)}`
const sql = `
ALTER TABLE ${ident(schema)}.${ident(table)} ADD COLUMN ${ident(name)} ${typeIdent(type)}
${defaultValueClause}
${isNullableClause}
${isPrimaryKeyClause}
${isUniqueClause}
${checkSql};
${commentSql};`
return sql
}
async update(
id: string,
{
name,
type,
drop_default = false,
default_value,
default_value_format = 'literal',
is_identity,
identity_generation = 'BY DEFAULT',
is_nullable,
is_unique,
comment,
}: {
name?: string
type?: string
drop_default?: boolean
default_value?: any
default_value_format?: 'expression' | 'literal'
is_identity?: boolean
identity_generation?: 'BY DEFAULT' | 'ALWAYS'
is_nullable?: boolean
is_unique?: boolean
comment?: string
}
): Promise<PostgresMetaResult<PostgresColumn>> {
const { data: old, error } = await this.retrieve({ id })
if (error) {
return { data: null, error }
}
const nameSql =
name === undefined || name === old!.name
? ''
: `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} RENAME COLUMN ${ident(
old!.name
)} TO ${ident(name)};`
// We use USING to allow implicit conversion of incompatible types (e.g. int4 -> text).
const typeSql =
type === undefined
? ''
: `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ALTER COLUMN ${ident(
old!.name
)} SET DATA TYPE ${typeIdent(type)} USING ${ident(old!.name)}::${typeIdent(type)};`
let defaultValueSql: string
if (drop_default) {
defaultValueSql = `ALTER TABLE ${ident(old!.schema)}.${ident(
old!.table
)} ALTER COLUMN ${ident(old!.name)} DROP DEFAULT;`
} else if (default_value === undefined) {
defaultValueSql = ''
} else {
const defaultValue =
default_value_format === 'expression' ? default_value : literal(default_value)
defaultValueSql = `ALTER TABLE ${ident(old!.schema)}.${ident(
old!.table
)} ALTER COLUMN ${ident(old!.name)} SET DEFAULT ${defaultValue};`
}
// What identitySql does vary depending on the old and new values of
// is_identity and identity_generation.
//
// | is_identity: old \ new | undefined | true | false |
// |------------------------+--------------------+--------------------+----------------|
// | true | maybe set identity | maybe set identity | drop if exists |
// |------------------------+--------------------+--------------------+----------------|
// | false | - | add identity | drop if exists |
let identitySql = `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ALTER COLUMN ${ident(
old!.name
)}`
if (is_identity === false) {
identitySql += ' DROP IDENTITY IF EXISTS;'
} else if (old!.is_identity === true) {
if (identity_generation === undefined) {
identitySql = ''
} else {
identitySql += ` SET GENERATED ${identity_generation};`
}
} else if (is_identity === undefined) {
identitySql = ''
} else {
identitySql += ` ADD GENERATED ${identity_generation} AS IDENTITY;`
}
let isNullableSql: string
if (is_nullable === undefined) {
isNullableSql = ''
} else {
isNullableSql = is_nullable
? `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ALTER COLUMN ${ident(
old!.name
)} DROP NOT NULL;`
: `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ALTER COLUMN ${ident(
old!.name
)} SET NOT NULL;`
}
let isUniqueSql = ''
if (old!.is_unique === true && is_unique === false) {
isUniqueSql = `
DO $$
DECLARE
r record;
BEGIN
FOR r IN
SELECT conname FROM pg_constraint WHERE
contype = 'u'
AND cardinality(conkey) = 1
AND conrelid = ${literal(old!.table_id)}
AND conkey[1] = ${literal(old!.ordinal_position)}
LOOP
EXECUTE ${literal(
`ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} DROP CONSTRAINT `
)} || quote_ident(r.conname);
END LOOP;
END
$$;
`
} else if (old!.is_unique === false && is_unique === true) {
isUniqueSql = `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ADD UNIQUE (${ident(
old!.name
)});`
}
const commentSql =
comment === undefined
? ''
: `COMMENT ON COLUMN ${ident(old!.schema)}.${ident(old!.table)}.${ident(
old!.name
)} IS ${literal(comment)};`
// TODO: Can't set default if column is previously identity even if
// is_identity: false. Must do two separate PATCHes (once to drop identity
// and another to set default).
// NOTE: nameSql must be last. defaultValueSql must be after typeSql.
// identitySql must be after isNullableSql.
const sql = `
BEGIN;
${isNullableSql}
${typeSql}
${defaultValueSql}
${identitySql}
${isUniqueSql}
${commentSql}
${nameSql}
COMMIT;`
{
const { error } = await this.query(sql)
if (error) {
return { data: null, error }
}
}
return await this.retrieve({ id })
}
async remove(id: string): Promise<PostgresMetaResult<PostgresColumn>> {
const { data: column, error } = await this.retrieve({ id })
if (error) {
return { data: null, error }
}
const sql = `ALTER TABLE ${ident(column!.schema)}.${ident(column!.table)} DROP COLUMN ${ident(
column!.name
)};`
{
const { error } = await this.query(sql)
if (error) {
return { data: null, error }
}
}
return { data: column!, error: null }
}
}
const typeIdent = (type: string) => {
return type.endsWith('[]') ? `${ident(type.slice(0, -2))}[]` : ident(type)
}