This repository was archived by the owner on Mar 1, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathzenstack-query-executor.ts
More file actions
386 lines (347 loc) · 14.3 KB
/
Copy pathzenstack-query-executor.ts
File metadata and controls
386 lines (347 loc) · 14.3 KB
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
import {
AndNode,
CompiledQuery,
DefaultQueryExecutor,
DeleteQueryNode,
InsertQueryNode,
Kysely,
ReturningNode,
SelectionNode,
SelectQueryNode,
SingleConnectionProvider,
UpdateQueryNode,
WhereNode,
type ConnectionProvider,
type DialectAdapter,
type KyselyPlugin,
type OperationNode,
type QueryCompiler,
type QueryResult,
type RootOperationNode,
type TableNode,
} from 'kysely';
import { nanoid } from 'nanoid';
import { match } from 'ts-pattern';
import type { GetModels, SchemaDef } from '../../schema';
import type { ClientImpl } from '../client-impl';
import type { ClientContract } from '../contract';
import { InternalError, QueryError } from '../errors';
import type { MutationInterceptionFilterResult, OnKyselyQueryTransactionCallback } from '../plugin';
import { QueryNameMapper } from './name-mapper';
import type { ZenStackDriver } from './zenstack-driver';
type QueryId = { queryId: string };
export class ZenStackQueryExecutor<Schema extends SchemaDef> extends DefaultQueryExecutor {
private readonly nameMapper: QueryNameMapper;
constructor(
private readonly client: ClientImpl<Schema>,
private readonly driver: ZenStackDriver,
private readonly compiler: QueryCompiler,
adapter: DialectAdapter,
private readonly connectionProvider: ConnectionProvider,
plugins: KyselyPlugin[] = [],
) {
super(compiler, adapter, connectionProvider, plugins);
this.nameMapper = new QueryNameMapper(client.$schema);
}
private get kysely() {
return this.client.$qb;
}
private get options() {
return this.client.$options;
}
override async executeQuery(compiledQuery: CompiledQuery, queryId: QueryId) {
let queryNode = compiledQuery.query;
let mutationInterceptionInfo: Awaited<ReturnType<typeof this.callMutationInterceptionFilters>>;
if (this.isMutationNode(queryNode) && this.hasMutationHooks) {
mutationInterceptionInfo = await this.callMutationInterceptionFilters(queryNode);
}
const task = async () => {
// call before mutation hooks
await this.callBeforeMutationHooks(queryNode, mutationInterceptionInfo);
// TODO: make sure insert and delete return rows
const oldQueryNode = queryNode;
if (
(InsertQueryNode.is(queryNode) || DeleteQueryNode.is(queryNode)) &&
mutationInterceptionInfo?.loadAfterMutationEntity
) {
// need to make sure the query node has "returnAll"
// for insert and delete queries
queryNode = {
...queryNode,
returning: ReturningNode.create([SelectionNode.createSelectAll()]),
};
}
// proceed with the query with kysely interceptors
// if the query is a raw query, we need to carry over the parameters
const queryParams = (compiledQuery as any).$raw ? compiledQuery.parameters : undefined;
const result = await this.proceedQueryWithKyselyInterceptors(queryNode, queryParams, queryId);
// call after mutation hooks
await this.callAfterQueryInterceptionFilters(result, queryNode, mutationInterceptionInfo);
if (oldQueryNode !== queryNode) {
// TODO: trim the result to the original query node
}
return result;
};
return this.executeWithTransaction(task, !!mutationInterceptionInfo?.useTransactionForMutation);
}
private proceedQueryWithKyselyInterceptors(
queryNode: RootOperationNode,
parameters: readonly unknown[] | undefined,
queryId: QueryId,
) {
let proceed = (q: RootOperationNode) => this.proceedQuery(q, parameters, queryId);
const makeTx = (p: typeof proceed) => (callback: OnKyselyQueryTransactionCallback) => {
return this.executeWithTransaction(() => callback(p));
};
const hooks =
this.options.plugins
?.filter((plugin) => typeof plugin.onKyselyQuery === 'function')
.map((plugin) => plugin.onKyselyQuery!.bind(plugin)) ?? [];
for (const hook of hooks) {
const _proceed = proceed;
proceed = (query: RootOperationNode) => {
return hook!({
client: this.client as ClientContract<Schema>,
schema: this.client.$schema,
kysely: this.kysely,
query,
proceed: _proceed,
transaction: makeTx(_proceed),
});
};
}
return proceed(queryNode);
}
private async proceedQuery(query: RootOperationNode, parameters: readonly unknown[] | undefined, queryId: QueryId) {
// run built-in transformers
const finalQuery = this.nameMapper.transformNode(query);
let compiled = this.compileQuery(finalQuery);
if (parameters) {
compiled = { ...compiled, parameters };
}
try {
return this.driver.txConnection
? await super
.withConnectionProvider(new SingleConnectionProvider(this.driver.txConnection))
.executeQuery<any>(compiled, queryId)
: await super.executeQuery<any>(compiled, queryId);
} catch (err) {
throw new QueryError(
`Failed to execute query: ${err}, sql: ${compiled.sql}, parameters: ${compiled.parameters}`,
);
}
}
private isMutationNode(queryNode: RootOperationNode) {
return InsertQueryNode.is(queryNode) || UpdateQueryNode.is(queryNode) || DeleteQueryNode.is(queryNode);
}
override withPlugin(plugin: KyselyPlugin) {
return new ZenStackQueryExecutor(
this.client,
this.driver,
this.compiler,
this.adapter,
this.connectionProvider,
[...this.plugins, plugin],
);
}
override withPlugins(plugins: ReadonlyArray<KyselyPlugin>) {
return new ZenStackQueryExecutor(
this.client,
this.driver,
this.compiler,
this.adapter,
this.connectionProvider,
[...this.plugins, ...plugins],
);
}
override withPluginAtFront(plugin: KyselyPlugin) {
return new ZenStackQueryExecutor(
this.client,
this.driver,
this.compiler,
this.adapter,
this.connectionProvider,
[plugin, ...this.plugins],
);
}
override withoutPlugins() {
return new ZenStackQueryExecutor(
this.client,
this.driver,
this.compiler,
this.adapter,
this.connectionProvider,
[],
);
}
override withConnectionProvider(connectionProvider: ConnectionProvider) {
return new ZenStackQueryExecutor(this.client, this.driver, this.compiler, this.adapter, connectionProvider);
}
private async executeWithTransaction<T>(callback: () => Promise<T>, useTransaction = true) {
if (!useTransaction || this.driver.txConnection) {
return callback();
} else {
return this.provideConnection(async (connection) => {
try {
await this.driver.beginTransaction(connection, {});
const result = await callback();
await this.driver.commitTransaction(connection);
return result;
} catch (error) {
await this.driver.rollbackTransaction(connection);
throw error;
}
});
}
}
private get hasMutationHooks() {
return this.client.$options.plugins?.some(
(plugin) => plugin.beforeEntityMutation || plugin.afterEntityMutation,
);
}
private getMutationModel(queryNode: OperationNode): GetModels<Schema> {
return match(queryNode)
.when(InsertQueryNode.is, (node) => node.into!.table.identifier.name)
.when(UpdateQueryNode.is, (node) => (node.table as TableNode).table.identifier.name)
.when(DeleteQueryNode.is, (node) => {
if (node.from.froms.length !== 1) {
throw new InternalError(`Delete query must have exactly one from table`);
}
return (node.from.froms[0] as TableNode).table.identifier.name;
})
.otherwise((node) => {
throw new InternalError(`Invalid query node: ${node}`);
}) as GetModels<Schema>;
}
private async callMutationInterceptionFilters(queryNode: UpdateQueryNode | InsertQueryNode | DeleteQueryNode) {
const plugins = this.client.$options.plugins;
if (plugins) {
const mutationModel = this.getMutationModel(queryNode);
const result: MutationInterceptionFilterResult = {
intercept: false,
};
const { action, where } = match(queryNode)
.when(InsertQueryNode.is, () => ({
action: 'create' as const,
where: undefined,
}))
.when(UpdateQueryNode.is, (node) => ({
action: 'update' as const,
where: node.where,
}))
.when(DeleteQueryNode.is, (node) => ({
action: 'delete' as const,
where: node.where,
}))
.exhaustive();
for (const plugin of plugins) {
if (!plugin.mutationInterceptionFilter) {
result.intercept = true;
} else {
const filterResult = await plugin.mutationInterceptionFilter({
model: mutationModel,
action,
queryNode,
});
result.intercept ||= filterResult.intercept;
result.useTransactionForMutation ||= filterResult.useTransactionForMutation;
result.loadBeforeMutationEntity ||= filterResult.loadBeforeMutationEntity;
result.loadAfterMutationEntity ||= filterResult.loadAfterMutationEntity;
}
}
let beforeMutationEntities: Record<string, unknown>[] | undefined;
if (result.loadBeforeMutationEntity && (UpdateQueryNode.is(queryNode) || DeleteQueryNode.is(queryNode))) {
beforeMutationEntities = await this.loadEntities(this.kysely, mutationModel, where);
}
return {
...result,
mutationModel,
action,
where,
beforeMutationEntities,
};
} else {
return undefined;
}
}
private callBeforeMutationHooks(
queryNode: OperationNode,
mutationInterceptionInfo: Awaited<ReturnType<typeof this.callMutationInterceptionFilters>>,
) {
if (!mutationInterceptionInfo?.intercept) {
return;
}
if (this.options.plugins) {
for (const plugin of this.options.plugins) {
if (plugin.beforeEntityMutation) {
plugin.beforeEntityMutation({
// context: this.queryContext,
model: this.getMutationModel(queryNode),
action: mutationInterceptionInfo.action,
queryNode,
entities: mutationInterceptionInfo.beforeMutationEntities,
});
}
}
}
}
private async callAfterQueryInterceptionFilters(
queryResult: QueryResult<unknown>,
queryNode: OperationNode,
mutationInterceptionInfo: Awaited<ReturnType<typeof this.callMutationInterceptionFilters>>,
) {
if (!mutationInterceptionInfo?.intercept) {
return;
}
if (this.options.plugins) {
const mutationModel = this.getMutationModel(queryNode);
for (const plugin of this.options.plugins) {
if (plugin.afterEntityMutation) {
let afterMutationEntities: Record<string, unknown>[] | undefined = undefined;
if (mutationInterceptionInfo.loadAfterMutationEntity) {
if (UpdateQueryNode.is(queryNode)) {
afterMutationEntities = await this.loadEntities(
this.kysely,
mutationModel,
mutationInterceptionInfo.where,
);
} else {
afterMutationEntities = queryResult.rows as Record<string, unknown>[];
}
}
plugin.afterEntityMutation({
model: this.getMutationModel(queryNode),
action: mutationInterceptionInfo.action,
queryNode,
beforeMutationEntities: mutationInterceptionInfo.beforeMutationEntities,
afterMutationEntities,
});
}
}
}
}
private async loadEntities(
kysely: Kysely<any>,
model: GetModels<Schema>,
where: WhereNode | undefined,
): Promise<Record<string, unknown>[]> {
const selectQuery = kysely.selectFrom(model).selectAll();
let selectQueryNode = selectQuery.toOperationNode() as SelectQueryNode;
selectQueryNode = {
...selectQueryNode,
where: this.andNodes(selectQueryNode.where, where),
};
const compiled = kysely.getExecutor().compileQuery(selectQueryNode, { queryId: `zenstack-${nanoid()}` });
const result = await kysely.executeQuery(compiled);
return result.rows as Record<string, unknown>[];
}
private andNodes(condition1: WhereNode | undefined, condition2: WhereNode | undefined) {
if (condition1 && condition2) {
return WhereNode.create(AndNode.create(condition1, condition2));
} else if (condition1) {
return WhereNode.create(condition1);
} else {
return condition2;
}
}
}