-
Notifications
You must be signed in to change notification settings - Fork 279
/
kysely.ts
434 lines (390 loc) · 12 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
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 { MigrationModule } from './migration/migration.js'
import { QueryExecutor } from './query-executor/query-executor.js'
import { QueryCreator } from './query-creator.js'
import { KyselyPlugin } from './plugin/kysely-plugin.js'
import { GeneratedPlaceholder } from './util/type-utils.js'
import { GENERATED_PLACEHOLDER } from './util/generated-placeholder.js'
import { DefaultQueryExecutor } from './query-executor/default-query-executor.js'
import { DatabaseIntrospector } from './introspection/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 { DefaultParseContext, ParseContext } from './parser/parse-context.js'
import { FunctionBuilder } from './query-builder/function-builder.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.
*
* @example
* This example assumes your database has tables `person` and `pet`:
*
* ```ts
* interface Person {
* id: number
* first_name: string
* last_name: string
* }
*
* interface Pet {
* id: number
* owner_id: number
* name: string
* species 'cat' | 'dog'
* }
*
* interface Database {
* person: Person,
* pet: Pet
* }
*
* 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> {
readonly #props: KyselyProps
constructor(args: KyselyConfig)
constructor(args: KyselyProps)
constructor(args: KyselyConfig | KyselyProps) {
if (isKyselyProps(args)) {
super({ executor: args.executor, parseContext: args.parseContext })
this.#props = freeze(args)
} else {
const dialect = args.dialect
const driver = dialect.createDriver()
const compiler = dialect.createQueryCompiler()
const adapter = dialect.createAdapter()
const parseContext = new DefaultParseContext(adapter)
const runtimeDriver = new RuntimeDriver(driver)
const connectionProvider = new DefaultConnectionProvider(runtimeDriver)
const executor = new DefaultQueryExecutor(
compiler,
connectionProvider,
args.plugins ?? []
)
super({ executor, parseContext })
this.#props = freeze({
config: args,
executor,
dialect,
driver: runtimeDriver,
parseContext,
})
}
}
/**
* Returns the {@link SchemaModule} module for building database schema.
*/
get schema(): SchemaModule {
return new SchemaModule(this.#props.executor)
}
/**
* Returns the {@link MigrationModule} module for managing and running migrations.
*/
get migration(): MigrationModule {
return new MigrationModule(this, this.#props.parseContext.adapter)
}
/**
* 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())
}
/**
* A value to be used in place of columns that are generated in the database
* when inserting rows.
*
* @example
* In this example the `Person` table has non-null properties `id` and `created_at`
* which are both automatically genereted by the database. Since their types are
* `number` and `string` respectively instead of `number | null` and `string | null`
* the `values` method requires you to give a value for them. the `generated`
* placeholder can be used in these cases.
*
* ```ts
* await db.insertInto('person')
* .values({
* id: db.generated,
* created_at: db.generated,
* first_name: 'Jennifer',
* last_name: 'Aniston',
* gender: 'female'
* })
* .execute()
* ```
*/
get generated(): GeneratedPlaceholder {
return GENERATED_PLACEHOLDER
}
/**
* Returns a {@link FunctionBuilder} 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(): FunctionBuilder<DB, keyof DB> {
return new FunctionBuilder({ executor: this.#props.executor })
}
/**
* Starts a transaction. If the callback throws the transaction is rolled back,
* otherwise it's committed.
*
* @example
* In the example below if either query fails or `someFunction` throws, both inserts
* will be rolled back. Otherwise the transaction will be committed by the time the
* `transaction` function returns the output value. The output value of the
* `transaction` method is the value returned from the callback.
*
* ```ts
* const catto = await db.transaction().execute(async (trx) => {
* const jennifer = await trx.insertInto('person')
* .values({
* first_name: 'Jennifer',
* last_name: 'Aniston',
* })
* .returning('id')
* .executeTakeFirst()
*
* await someFunction(trx, jennifer)
*
* return await trx.insertInto('pet')
* .values({
* user_id: jennifer!.id,
* name: 'Catto',
* species: 'cat'
* })
* .returning('*')
* .executeTakeFirst()
* })
* ```
*
* @example
* 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.
*
* @example
* ```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 without any plugins.
*/
withoutPlugins(): Kysely<DB> {
return new Kysely({
...this.#props,
executor: this.#props.executor.withoutPlugins(),
})
}
/**
* 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
}
}
export class Transaction<DB> extends Kysely<DB> {
// 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
}
get migration(): MigrationModule {
throw new Error(
'the migration module is not available for a transaction. Use the main Kysely instance to run migrations'
)
}
transaction(): TransactionBuilder<DB> {
throw new Error(
'calling the transaction method for a Transaction is not supported'
)
}
async destroy(): Promise<void> {
throw new Error(
'calling the destroy method for a Transaction is not supported'
)
}
}
export interface KyselyProps {
readonly config: KyselyConfig
readonly driver: Driver
readonly executor: QueryExecutor
readonly dialect: Dialect
readonly parseContext: ParseContext
}
export function isKyselyProps(obj: unknown): obj is KyselyProps {
return (
isObject(obj) &&
isObject(obj.config) &&
isObject(obj.driver) &&
isObject(obj.executor) &&
isObject(obj.dialect) &&
isObject(obj.parseContext)
)
}
export interface KyselyConfig {
dialect: Dialect
plugins?: KyselyPlugin[]
}
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> {
const connection = await this.#props.driver.acquireConnection()
const connectionProvider = new SingleConnectionProvider(connection)
const transaction = new Kysely<DB>({
...this.#props,
executor: this.#props.executor.withConnectionProvider(connectionProvider),
})
try {
return await callback(transaction)
} finally {
await this.#props.driver.releaseConnection(connection)
}
}
}
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)
const connection = await this.#props.driver.acquireConnection()
const connectionProvider = new SingleConnectionProvider(connection)
const transaction = new Transaction<DB>({
...kyselyProps,
executor: this.#props.executor.withConnectionProvider(connectionProvider),
})
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
} finally {
await this.#props.driver.releaseConnection(connection)
}
}
}
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}`
)
}
}