-
Notifications
You must be signed in to change notification settings - Fork 283
/
Copy pathkysely.ts
522 lines (470 loc) · 13.5 KB
/
kysely.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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
import { Dialect } from './dialect/dialect.js'
import { SchemaModule } from './schema/schema.js'
import { DynamicModule } from './dynamic/dynamic.js'
import { DefaultConnectionProvider } from './driver/default-connection-provider.js'
import { QueryExecutor } from './query-executor/query-executor.js'
import { QueryCreator, QueryCreatorProps } from './query-creator.js'
import { KyselyPlugin } from './plugin/kysely-plugin.js'
import { DefaultQueryExecutor } from './query-executor/default-query-executor.js'
import { DatabaseIntrospector } from './dialect/database-introspector.js'
import { freeze, isObject } from './util/object-utils.js'
import { RuntimeDriver } from './driver/runtime-driver.js'
import { SingleConnectionProvider } from './driver/single-connection-provider.js'
import {
Driver,
IsolationLevel,
TransactionSettings,
TRANSACTION_ISOLATION_LEVELS,
} from './driver/driver.js'
import { preventAwait } from './util/prevent-await.js'
import { FunctionModule } from './query-builder/function-module.js'
import { Log, LogConfig } from './util/log.js'
import { QueryExecutorProvider } from './query-executor/query-executor-provider.js'
/**
* The main Kysely class.
*
* You should create one instance of `Kysely` per database using the {@link Kysely}
* constructor. Each `Kysely` instance maintains it's own connection pool.
*
* ### Examples
*
* This example assumes your database has tables `person` and `pet`:
*
* ```ts
* import { Kysely, Generated, PostgresDialect } from 'kysely'
*
* interface PersonTable {
* id: Generated<number>
* first_name: string
* last_name: string
* }
*
* interface PetTable {
* id: Generated<number>
* owner_id: number
* name: string
* species 'cat' | 'dog'
* }
*
* interface Database {
* person: PersonTable,
* pet: PetTable
* }
*
* const db = new Kysely<Database>({
* dialect: new PostgresDialect({
* host: 'localhost',
* database: 'kysely_test',
* })
* })
* ```
*
* @typeParam DB - The database interface type. Keys of this type must be table names
* in the database and values must be interfaces that describe the rows in those
* tables. See the examples above.
*/
export class Kysely<DB>
extends QueryCreator<DB>
implements QueryExecutorProvider
{
readonly #props: KyselyProps
constructor(args: KyselyConfig)
constructor(args: KyselyProps)
constructor(args: KyselyConfig | KyselyProps) {
let superProps: QueryCreatorProps
let props: KyselyProps
if (isKyselyProps(args)) {
superProps = { executor: args.executor }
props = { ...args }
} else {
const dialect = args.dialect
const driver = dialect.createDriver()
const compiler = dialect.createQueryCompiler()
const adapter = dialect.createAdapter()
const log = new Log(args.log ?? [])
const runtimeDriver = new RuntimeDriver(driver, log)
const connectionProvider = new DefaultConnectionProvider(runtimeDriver)
const executor = new DefaultQueryExecutor(
compiler,
adapter,
connectionProvider,
args.plugins ?? []
)
superProps = { executor }
props = {
config: args,
executor,
dialect,
driver: runtimeDriver,
}
}
super(superProps)
this.#props = freeze(props)
}
/**
* Returns the {@link SchemaModule} module for building database schema.
*/
get schema(): SchemaModule {
return new SchemaModule(this.#props.executor)
}
/**
* Returns a the {@link DynamicModule} module.
*
* The {@link DynamicModule} module can be used to bypass strict typing and
* passing in dynamic values for the queries.
*/
get dynamic(): DynamicModule {
return new DynamicModule()
}
/**
* Returns a {@link DatabaseIntrospector | database introspector}.
*/
get introspection(): DatabaseIntrospector {
return this.#props.dialect.createIntrospector(this.withoutPlugins())
}
/**
* Returns a {@link FunctionModule} that can be used to write type safe function
* calls.
*
* ```ts
* const { count } = db.fn
*
* await db.selectFrom('person')
* .innerJoin('pet', 'pet.owner_id', 'person.id')
* .select([
* 'person.id',
* count('pet.id').as('pet_count')
* ])
* .groupBy('person.id')
* .having(count('pet.id'), '>', 10)
* .execute()
* ```
*
* The generated SQL (PostgreSQL):
*
* ```sql
* select "person"."id", count("pet"."id") as "pet_count"
* from "person"
* inner join "pet" on "pet"."owner_id" = "person"."id"
* group by "person"."id"
* having count("pet"."id") > $1
* ```
*/
get fn(): FunctionModule<DB, keyof DB> {
return new FunctionModule()
}
/**
* Creates a {@link TransactionBuilder} that can be used to run queries inside a transaction.
*
* The returned {@link TransactionBuilder} can be used to configure the transaction. The
* {@link TransactionBuilder.execute} method can then be called to run the transaction.
* {@link TransactionBuilder.execute} takes a function that is run inside the
* transaction. If the function throws, the transaction is rolled back. Otherwise
* the transaction is committed.
*
* The callback function passed to the {@link TransactionBuilder.execute | execute}
* method gets the transaction object as its only argument. The transaction is
* of type {@link Transaction} which inherits {@link Kysely}. Any query
* started through the transaction object is executed inside the transaction.
*
* ### Examples
*
* ```ts
* const catto = await db.transaction().execute(async (trx) => {
* const jennifer = await trx.insertInto('person')
* .values({
* first_name: 'Jennifer',
* last_name: 'Aniston',
* })
* .returning('id')
* .executeTakeFirstOrThrow()
*
* await someFunction(trx, jennifer)
*
* return await trx.insertInto('pet')
* .values({
* user_id: jennifer.id,
* name: 'Catto',
* species: 'cat'
* })
* .returning('*')
* .executeTakeFirst()
* })
* ```
*
* Setting the isolation level:
*
* ```ts
* await db
* .transaction()
* .setIsolationLevel('serializable')
* .execute(async (trx) => {
* await doStuff(trx)
* })
* ```
*/
transaction(): TransactionBuilder<DB> {
return new TransactionBuilder({ ...this.#props })
}
/**
* Provides a kysely instance bound to a single database connection.
*
* ### Examples
*
* ```ts
* await db
* .connection()
* .execute(async (db) => {
* // `db` is an instance of `Kysely` that's bound to a single
* // database connection. All queries executed through `db` use
* // the same connection.
* await doStuff(db)
* })
* ```
*/
connection(): ConnectionBuilder<DB> {
return new ConnectionBuilder({ ...this.#props })
}
/**
* Returns a copy of this Kysely instance with the given plugin installed.
*/
override withPlugin(plugin: KyselyPlugin): Kysely<DB> {
return new Kysely({
...this.#props,
executor: this.#props.executor.withPlugin(plugin),
})
}
/**
* Returns a copy of this Kysely instance without any plugins.
*/
override withoutPlugins(): Kysely<DB> {
return new Kysely({
...this.#props,
executor: this.#props.executor.withoutPlugins(),
})
}
/**
* Returns a copy of this Kysely instance with tables added to its
* database type.
*
* This method only modifies the types and doesn't affect any of the
* executed queries in any way.
*
* ### Examples
*
* The following example adds and uses a temporary table:
*
* @example
* ```ts
* await db.schema
* .createTable('temp_table')
* .temporary()
* .addColumn('some_column', 'integer')
* .execute()
*
* const tempDb = db.withTables<{
* temp_table: {
* some_column: number
* }
* }>()
*
* await tempDb
* .insertInto('temp_table')
* .values({ some_column: 100 })
* .execute()
* ```
*/
withTables<T extends Record<string, Record<string, any>>>(): Kysely<DB & T> {
return new Kysely({ ...this.#props })
}
/**
* Releases all resources and disconnects from the database.
*
* You need to call this when you are done using the `Kysely` instance.
*/
async destroy(): Promise<void> {
await this.#props.driver.destroy()
}
/**
* Returns true if this `Kysely` instance is a transaction.
*
* You can also use `db instanceof Transaction`.
*/
get isTransaction(): boolean {
return false
}
/**
* @internal
* @private
*/
getExecutor(): QueryExecutor {
return this.#props.executor
}
}
export class Transaction<DB> extends Kysely<DB> {
readonly #props: KyselyProps
constructor(props: KyselyProps) {
super(props)
this.#props = props
}
// The return type is `true` instead of `boolean` to make Kysely<DB>
// unassignable to Transaction<DB> while allowing assignment the
// other way around.
get isTransaction(): true {
return true
}
transaction(): TransactionBuilder<DB> {
throw new Error(
'calling the transaction method for a Transaction is not supported'
)
}
connection(): ConnectionBuilder<DB> {
throw new Error(
'calling the connection method for a Transaction is not supported'
)
}
async destroy(): Promise<void> {
throw new Error(
'calling the destroy method for a Transaction is not supported'
)
}
override withPlugin(plugin: KyselyPlugin): Transaction<DB> {
return new Transaction({
...this.#props,
executor: this.#props.executor.withPlugin(plugin),
})
}
override withoutPlugins(): Transaction<DB> {
return new Transaction({
...this.#props,
executor: this.#props.executor.withoutPlugins(),
})
}
override withTables<
T extends Record<string, Record<string, any>>
>(): Transaction<DB & T> {
return new Transaction({ ...this.#props })
}
}
export interface KyselyProps {
readonly config: KyselyConfig
readonly driver: Driver
readonly executor: QueryExecutor
readonly dialect: Dialect
}
export function isKyselyProps(obj: unknown): obj is KyselyProps {
return (
isObject(obj) &&
isObject(obj.config) &&
isObject(obj.driver) &&
isObject(obj.executor) &&
isObject(obj.dialect)
)
}
export interface KyselyConfig {
readonly dialect: Dialect
readonly plugins?: KyselyPlugin[]
/**
* A list of log levels to log or a custom logger function.
*
* Currently there's only two levels: `query` and `error`.
* This will be expanded based on user feedback later.
*
* ### Examples
*
* ```ts
* const db = new Kysely<Database>({
* dialect: new PostgresDialect(postgresConfig),
* log: ['query', 'error']
* })
* ```
*
* ```ts
* const db = new Kysely<Database>({
* dialect: new PostgresDialect(postgresConfig),
* log(event): void {
* if (event.level === 'query') {
* console.log(event.query.sql)
* console.log(event.query.parameters)
* }
* }
* })
* ```
*/
readonly log?: LogConfig
}
export class ConnectionBuilder<DB> {
readonly #props: ConnectionBuilderProps
constructor(props: ConnectionBuilderProps) {
this.#props = freeze(props)
}
async execute<T>(callback: (db: Kysely<DB>) => Promise<T>): Promise<T> {
return this.#props.executor.provideConnection(async (connection) => {
const executor = this.#props.executor.withConnectionProvider(
new SingleConnectionProvider(connection)
)
const db = new Kysely<DB>({
...this.#props,
executor,
})
return await callback(db)
})
}
}
interface ConnectionBuilderProps extends KyselyProps {}
preventAwait(
ConnectionBuilder,
"don't await ConnectionBuilder instances directly. To execute the query you need to call the `execute` method"
)
export class TransactionBuilder<DB> {
readonly #props: TransactionBuilderProps
constructor(props: TransactionBuilderProps) {
this.#props = freeze(props)
}
setIsolationLevel(isolationLevel: IsolationLevel): TransactionBuilder<DB> {
return new TransactionBuilder({
...this.#props,
isolationLevel,
})
}
async execute<T>(callback: (trx: Transaction<DB>) => Promise<T>): Promise<T> {
const { isolationLevel, ...kyselyProps } = this.#props
const settings = { isolationLevel }
validateTransactionSettings(settings)
return this.#props.executor.provideConnection(async (connection) => {
const executor = this.#props.executor.withConnectionProvider(
new SingleConnectionProvider(connection)
)
const transaction = new Transaction<DB>({
...kyselyProps,
executor,
})
try {
await this.#props.driver.beginTransaction(connection, settings)
const result = await callback(transaction)
await this.#props.driver.commitTransaction(connection)
return result
} catch (error) {
await this.#props.driver.rollbackTransaction(connection)
throw error
}
})
}
}
interface TransactionBuilderProps extends KyselyProps {
readonly isolationLevel?: IsolationLevel
}
preventAwait(
TransactionBuilder,
"don't await TransactionBuilder instances directly. To execute the transaction you need to call the `execute` method"
)
function validateTransactionSettings(settings: TransactionSettings): void {
if (
settings.isolationLevel &&
!TRANSACTION_ISOLATION_LEVELS.includes(settings.isolationLevel)
) {
throw new Error(
`invalid transaction isolation level ${settings.isolationLevel}`
)
}
}