-
-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: setup initial typings for database and querybuilder
- Loading branch information
1 parent
a967c9d
commit c8713e9
Showing
2 changed files
with
778 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,225 @@ | ||
/* | ||
* @adonisjs/lucid | ||
* | ||
* (c) Harminder Virk <virk@adonisjs.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
/// <reference path="./querybuilder.ts" /> | ||
|
||
declare module '@ioc:Adonis/Addons/Database' { | ||
import * as knex from 'knex' | ||
import { Pool } from 'tarn' | ||
|
||
import { DatabaseQueryBuilderContract } from '@ioc:Adonis/Addons/DatabaseQueryBuilder' | ||
|
||
/** | ||
* Connection node used by majority of database | ||
* clients | ||
*/ | ||
type SharedConnectionNode = { | ||
host: string, | ||
user: string, | ||
password: string, | ||
database: string, | ||
port: number, | ||
} | ||
|
||
/** | ||
* Shared config options for all clients | ||
*/ | ||
type SharedConfigNode = { | ||
useNullAsDefault?: boolean, | ||
debug?: boolean, | ||
asyncStackTraces?: boolean, | ||
pool?: { | ||
afterCreate?: (conn: any, done: any) => void, | ||
min?: number, | ||
max?: number, | ||
acquireTimeoutMillis?: number, | ||
createTimeoutMillis?: number, | ||
idleTimeoutMillis?: number, | ||
createRetryIntervalMillis?: number, | ||
reapIntervalMillis?: number, | ||
log?: (msg: string) => any, | ||
validate?: (resource: any) => boolean, | ||
propagateCreateError?: boolean, | ||
}, | ||
} | ||
|
||
/** | ||
* The Sqlite specific config options are taken directly from the | ||
* driver. https://github.com/mapbox/node-sqlite3/wiki/API#new-sqlite3databasefilename-mode-callback | ||
* | ||
* Knex forwards all config options to the driver directly. So feel | ||
* free to define them (let us know, in case any options are missing) | ||
*/ | ||
export type SqliteConfigContract = SharedConfigNode & { | ||
client: 'sqlite' | 'sqlite3', | ||
connection: { | ||
filename: string, | ||
mode?: any, | ||
}, | ||
} | ||
|
||
/** | ||
* The MYSQL specific config options are taken directly from the | ||
* driver. https://www.npmjs.com/package/mysql#connection-options | ||
* | ||
* Knex forwards all config options to the driver directly. So feel | ||
* free to define them (let us know, in case any options are missing) | ||
*/ | ||
export type MysqlConfigContract = SharedConfigNode & { | ||
client: 'mysql', | ||
version?: string, | ||
connection: SharedConnectionNode & { | ||
socketPath?: string, | ||
localAddress?: string, | ||
charset?: string, | ||
timezone?: string, | ||
stringifyObjects?: boolean, | ||
insecureAuth?: boolean, | ||
typeCast?: boolean, | ||
supportBigNumbers?: boolean, | ||
bigNumberStrings?: boolean, | ||
dateStrings?: boolean | string[], | ||
flags?: string, | ||
ssl?: any, | ||
}, | ||
} | ||
|
||
/** | ||
* `mysql2` config is same as `mysql`. So just refer mysql docs | ||
* https://www.npmjs.com/package/mysql#connection-options | ||
* | ||
* Knex forwards all config options to the driver directly. So feel | ||
* free to define them (let us know, in case any options are missing) | ||
*/ | ||
export type Mysql2ConfigContract = MysqlConfigContract & { | ||
client: 'mysql2', | ||
} | ||
|
||
/** | ||
* Config is picked from PostgreSQL driver, just refer their docs | ||
* https://node-postgres.com/features/connecting#programmatic. | ||
* | ||
* - `returning` is added by knex and not driver. | ||
* - `searchPath` is also added by knex. | ||
* | ||
* Knex forwards all config options to the driver directly. So feel | ||
* free to define them (let us know, in case any options are missing) | ||
*/ | ||
export type PostgreConfigContract = SharedConfigNode & { | ||
client: 'pg' | 'postgres' | 'postgresql', | ||
version?: string, | ||
returning?: string, | ||
connection: string | SharedConnectionNode, | ||
searchPath?: string[], | ||
} | ||
|
||
/** | ||
* Redshift uses `pg` driver. So config options are same as Postgres. | ||
* https://node-postgres.com/features/connecting#programmatic. | ||
* | ||
* Knex forwards all config options to the driver directly. So feel | ||
* free to define them (let us know, in case any options are missing) | ||
*/ | ||
export type RedshiftConfigContract = PostgreConfigContract & { | ||
client: 'redshift', | ||
} | ||
|
||
/** | ||
* Please install `oracledb` driver and not the `oracle`. The later is | ||
* depreciated. Config is only allowed for `oracledb`. | ||
* | ||
* Please refer to the driver configuration docs to learn more about the | ||
* config values. | ||
* https://oracle.github.io/node-oracledb/doc/api.html#oracledbproperties | ||
*/ | ||
export type OracleConfigContract = SharedConfigNode & { | ||
client: 'oracledb', | ||
connection: SharedConnectionNode & { | ||
autoCommit?: boolean, | ||
connectionClass?: string, | ||
edition?: string, | ||
externalAuth?: boolean, | ||
fetchArraySize?: number, | ||
fetchAsBuffer?: any[], | ||
lobPrefetchSize?: number, | ||
maxRows?: number, | ||
oracleClientVersion?: number, | ||
}, | ||
fetchAsString?: any[], | ||
} | ||
|
||
/** | ||
* Config values are taken directly from the driver config. | ||
* https://www.npmjs.com/package/mssql#config. | ||
* | ||
* Knex forwards all config options to the driver directly. So feel | ||
* free to define them (let us know, in case any options are missing) | ||
*/ | ||
export type MssqlConfigContract = SharedConfigNode & { | ||
client: 'mssql', | ||
version?: string, | ||
connection: SharedConnectionNode & { | ||
domain?: string, | ||
connectionTimeout?: number, | ||
requestTimeout?: number, | ||
parseJSON?: boolean, | ||
}, | ||
} | ||
|
||
/** | ||
* Connection config must be the config from one of the | ||
* available dialects | ||
*/ | ||
export type ConnectionConfigContract = | ||
SqliteConfigContract | | ||
MysqlConfigContract | | ||
PostgreConfigContract | | ||
OracleConfigContract | | ||
RedshiftConfigContract | | ||
Mysql2ConfigContract | | ||
MssqlConfigContract | ||
|
||
/** | ||
* Shape of config inside the database config file | ||
*/ | ||
export type DatabaseConfigContract = { connection: string } & { [key: string]: ConnectionConfigContract } | ||
|
||
/** | ||
* Connection manager to manage one or more database | ||
* connections. | ||
*/ | ||
export interface ConnectionManagerContract { | ||
connections: Map<string, ConnectionContract> | ||
add (connectionName: string, config: ConnectionConfigContract): void, | ||
connect (connectionName: string): void, | ||
get (connectionName: string): ConnectionContract, | ||
has (connectionName: string): boolean, | ||
close (connectionName: string): Promise<void>, | ||
closeAll (): Promise<void>, | ||
} | ||
|
||
/** | ||
* Connection represents a single knex instance with inbuilt | ||
* pooling capabilities. | ||
*/ | ||
export interface ConnectionContract { | ||
client?: knex, | ||
pool: null | Pool<any>, | ||
name: string, | ||
config: ConnectionConfigContract, | ||
readonly EVENTS: ['open', 'close', 'close:error'], | ||
open (): void, | ||
close (): void, | ||
} | ||
|
||
export interface DatabaseContract { | ||
query (): DatabaseQueryBuilderContract, | ||
from: DatabaseQueryBuilderContract['from'], | ||
} | ||
} |
Oops, something went wrong.