-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathPostgresMetaTriggers.ts
265 lines (233 loc) · 7.3 KB
/
PostgresMetaTriggers.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
import { ident, literal } from 'pg-format'
import { DEFAULT_SYSTEM_SCHEMAS } from './constants.js'
import { filterByList } from './helpers.js'
import triggersSql from './sql/triggers.sql'
import { PostgresMetaResult, PostgresTrigger } from './types.js'
export default class PostgresMetaTriggers {
query: (sql: string) => Promise<PostgresMetaResult<any>>
constructor(query: (sql: string) => Promise<PostgresMetaResult<any>>) {
this.query = query
}
async list({
includeSystemSchemas = false,
includedSchemas,
excludedSchemas,
limit,
offset,
}: {
includeSystemSchemas?: boolean
includedSchemas?: string[]
excludedSchemas?: string[]
limit?: number
offset?: number
} = {}): Promise<PostgresMetaResult<PostgresTrigger[]>> {
let sql = enrichedTriggersSql
const filter = filterByList(
includedSchemas,
excludedSchemas,
!includeSystemSchemas ? DEFAULT_SYSTEM_SCHEMAS : undefined
)
if (filter) {
sql += ` WHERE schema ${filter}`
}
if (limit) {
sql = `${sql} LIMIT ${limit}`
}
if (offset) {
sql = `${sql} OFFSET ${offset}`
}
return await this.query(sql)
}
async retrieve({ id }: { id: number }): Promise<PostgresMetaResult<PostgresTrigger>>
async retrieve({
name,
table,
schema,
}: {
name: string
table: string
schema?: string
}): Promise<PostgresMetaResult<PostgresTrigger>>
async retrieve({
id,
name,
schema = 'public',
table,
}: {
id?: number
name?: string
schema?: string
table?: string
}): Promise<PostgresMetaResult<PostgresTrigger>> {
if (id) {
const sql = `${enrichedTriggersSql} WHERE id = ${literal(id)};`
const { data, error } = await this.query(sql)
if (error) {
return { data: null, error }
}
const triggerRecord = data && data[0]
if (triggerRecord) {
return { data: triggerRecord, error: null }
}
return { data: null, error: { message: `Cannot find a trigger with ID ${id}` } }
}
if (name && schema && table) {
const sql = `${enrichedTriggersSql} WHERE name = ${literal(name)} AND schema = ${literal(
schema
)} AND triggers.table = ${literal(table)};`
const { data, error } = await this.query(sql)
if (error) {
return { data: null, error }
}
const triggerRecord = data && data[0]
if (triggerRecord) {
return { data: triggerRecord, error: null }
}
return {
data: null,
error: {
message: `Cannot find a trigger with name ${name} on table "${schema}"."${table}"`,
},
}
}
return { data: null, error: { message: 'Invalid parameters on trigger retrieve' } }
}
/**
* Creates trigger
*
* @param {Object} obj - An object.
* @param {string} obj.name - Trigger name.
* @param {string} obj.schema - Name of schema that trigger is for.
* @param {string} obj.table - Unqualified table, view, or foreign table name that trigger is for.
* @param {string} obj.function_schema - Name of schema that function is for.
* @param {string} obj.function_name - Unqualified name of the function to execute.
* @param {('BEFORE'|'AFTER'|'INSTEAD OF')} obj.activation - Determines when function is called
* during event occurrence.
* @param {Array<string>} obj.events - Event(s) that will fire the trigger. Array of the following options: 'INSERT' | 'UPDATE' | 'UPDATE
* OF column_name1,column_name2' | 'DELETE' | 'TRUNCATE'.
* @param {('ROW'|'STATEMENT')} obj.orientation - Trigger function for every row affected by event or
* once per statement. Defaults to 'STATEMENT'.
* @param {string} obj.condition - Boolean expression that will trigger function.
* For example: 'old.* IS DISTINCT FROM new.*'
* @param {Array<string>} obj.function_args - array of arguments to be passed to function when trigger is fired.
* For example: ['arg1', 'arg2']
*/
async create({
name,
schema = 'public',
table,
function_schema = 'public',
function_name,
function_args,
activation,
events,
orientation,
condition,
}: {
name: string
table: string
function_name: string
activation: string
events: string[]
function_schema?: string
schema?: string
orientation?: string
condition?: string
function_args?: string[]
}): Promise<PostgresMetaResult<PostgresTrigger>> {
const qualifiedTableName = `${ident(schema)}.${ident(table)}`
const qualifiedFunctionName = `${ident(function_schema)}.${ident(function_name)}`
const triggerEvents = events.join(' OR ')
const triggerOrientation = orientation ? `FOR EACH ${orientation}` : ''
const triggerCondition = condition ? `WHEN (${condition})` : ''
const functionArgs = `${function_args?.map(literal).join(',') ?? ''}`
const sql = `CREATE TRIGGER ${ident(
name
)} ${activation} ${triggerEvents} ON ${qualifiedTableName} ${triggerOrientation} ${triggerCondition} EXECUTE FUNCTION ${qualifiedFunctionName}(${functionArgs});`
const { error } = await this.query(sql)
if (error) {
return { data: null, error }
}
return await this.retrieve({
name,
table,
schema,
})
}
async update(
id: number,
{
name,
enabled_mode,
}: {
name?: string
enabled_mode?: 'ORIGIN' | 'REPLICA' | 'ALWAYS' | 'DISABLED'
}
): Promise<PostgresMetaResult<PostgresTrigger>> {
const { data: old, error } = await this.retrieve({ id })
if (error) {
return { data: null, error }
}
let enabledModeSql = ''
switch (enabled_mode) {
case 'ORIGIN':
enabledModeSql = `ALTER TABLE ${ident(old!.schema)}.${ident(
old!.table
)} ENABLE TRIGGER ${ident(old!.name)};`
break
case 'DISABLED':
enabledModeSql = `ALTER TABLE ${ident(old!.schema)}.${ident(
old!.table
)} DISABLE TRIGGER ${ident(old!.name)};`
break
case 'REPLICA':
case 'ALWAYS':
enabledModeSql = `ALTER TABLE ${ident(old!.schema)}.${ident(
old!.table
)} ENABLE ${enabled_mode} TRIGGER ${ident(old!.name)};`
break
default:
break
}
const nameSql =
name && name !== old!.name
? `ALTER TRIGGER ${ident(old!.name)} ON ${ident(old!.schema)}.${ident(
old!.table
)} RENAME TO ${ident(name)};`
: ''
// updateNameSql must be last
const sql = `BEGIN; ${enabledModeSql}; ${nameSql}; COMMIT;`
{
const { error } = await this.query(sql)
if (error) {
return { data: null, error }
}
}
return await this.retrieve({ id })
}
async remove(id: number, { cascade = false } = {}): Promise<PostgresMetaResult<PostgresTrigger>> {
const { data: triggerRecord, error } = await this.retrieve({ id })
if (error) {
return { data: null, error }
}
const { name, schema, table } = triggerRecord!
const sql = `DROP TRIGGER ${ident(name)} ON ${ident(schema)}.${ident(table)} ${
cascade ? 'CASCADE' : ''
};`
{
const { error } = await this.query(sql)
if (error) {
return { data: null, error }
}
}
return { data: triggerRecord!, error: null }
}
}
const enrichedTriggersSql = `
WITH triggers AS (
${triggersSql}
)
SELECT
*
FROM triggers
`