mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
188 lines
6.1 KiB
TypeScript
188 lines
6.1 KiB
TypeScript
import stream from 'stream';
|
|
import { QueryResult } from './query';
|
|
import { SqlDialect } from './dialect';
|
|
import { SqlDumper } from './dumper';
|
|
import { DatabaseInfo, NamedObjectInfo, TableInfo, ViewInfo, ProcedureInfo, FunctionInfo, TriggerInfo } from './dbinfo';
|
|
import { FilterBehaviour } from './filter-type';
|
|
|
|
export interface StreamOptions {
|
|
recordset: (columns) => void;
|
|
row: (row) => void;
|
|
error?: (error) => void;
|
|
done?: (result) => void;
|
|
info?: (info) => void;
|
|
}
|
|
|
|
export interface RunScriptOptions {
|
|
useTransaction: boolean;
|
|
}
|
|
|
|
export interface QueryOptions {
|
|
discardResult?: boolean;
|
|
}
|
|
|
|
export interface WriteTableOptions {
|
|
dropIfExists?: boolean;
|
|
truncate?: boolean;
|
|
createIfNotExists?: boolean;
|
|
commitAfterInsert?: boolean;
|
|
}
|
|
|
|
export interface EngineAuthType {
|
|
title: string;
|
|
name: string;
|
|
disabledFields: string[];
|
|
}
|
|
|
|
export interface ReadCollectionOptions {
|
|
pureName: string;
|
|
schemaName?: string;
|
|
|
|
countDocuments?: boolean;
|
|
skip?: number;
|
|
limit?: number;
|
|
condition?: any;
|
|
aggregate?: CollectionAggregateDefinition;
|
|
}
|
|
|
|
export interface NewObjectTemplate {
|
|
label: string;
|
|
sql: string;
|
|
}
|
|
|
|
export interface SupportedDbKeyType {
|
|
name: string;
|
|
label: string;
|
|
dbKeyFields: { name: string }[];
|
|
addMethod: string;
|
|
keyColumn?: string;
|
|
showItemList?: boolean;
|
|
}
|
|
|
|
export interface SqlBackupDumper {
|
|
run();
|
|
}
|
|
|
|
export interface SummaryColumn {
|
|
fieldName: string;
|
|
header: string;
|
|
dataType: 'string' | 'number' | 'bytes';
|
|
}
|
|
export interface ServerSummaryDatabase {}
|
|
export interface ServerSummary {
|
|
columns: SummaryColumn[];
|
|
databases: ServerSummaryDatabase[];
|
|
}
|
|
|
|
export type CollectionAggregateFunction = 'count' | 'sum' | 'avg' | 'min' | 'max';
|
|
export interface CollectionAggregateDefinition {
|
|
condition: any; // SQL tree condition
|
|
groupByColumns: string[];
|
|
aggregateColumns: {
|
|
alias: string;
|
|
aggregateFunction: CollectionAggregateFunction;
|
|
columnArgument?: string;
|
|
}[];
|
|
}
|
|
|
|
export interface FilterBehaviourProvider {
|
|
getFilterBehaviour(dataType: string, standardFilterBehaviours: { [id: string]: FilterBehaviour }): FilterBehaviour;
|
|
}
|
|
|
|
export interface EngineDriver extends FilterBehaviourProvider {
|
|
engine: string;
|
|
title: string;
|
|
defaultPort?: number;
|
|
databaseEngineTypes: string[];
|
|
editorMode?: string;
|
|
readOnlySessions: boolean;
|
|
supportedKeyTypes: SupportedDbKeyType[];
|
|
supportsDatabaseUrl?: boolean;
|
|
supportsDatabaseDump?: boolean;
|
|
supportsServerSummary?: boolean;
|
|
supportsDatabaseProfiler?: boolean;
|
|
requiresDefaultSortCriteria?: boolean;
|
|
profilerFormatterFunction?: string;
|
|
profilerTimestampFunction?: string;
|
|
profilerChartAggregateFunction?: string;
|
|
profilerChartMeasures?: { label: string; field: string }[];
|
|
isElectronOnly?: boolean;
|
|
supportedCreateDatabase?: boolean;
|
|
showConnectionField?: (
|
|
field: string,
|
|
values: any,
|
|
{
|
|
config: {},
|
|
}
|
|
) => boolean;
|
|
showConnectionTab?: (tab: 'ssl' | 'sshTunnel', values: any) => boolean;
|
|
beforeConnectionSave?: (values: any) => any;
|
|
databaseUrlPlaceholder?: string;
|
|
defaultAuthTypeName?: string;
|
|
defaultSocketPath?: string;
|
|
authTypeLabel?: string;
|
|
importExportArgs?: any[];
|
|
connect({ server, port, user, password, database }): Promise<any>;
|
|
close(pool): Promise<any>;
|
|
query(pool: any, sql: string, options?: QueryOptions): Promise<QueryResult>;
|
|
stream(pool: any, sql: string, options: StreamOptions);
|
|
readQuery(pool: any, sql: string, structure?: TableInfo): Promise<stream.Readable>;
|
|
readJsonQuery(pool: any, query: any, structure?: TableInfo): Promise<stream.Readable>;
|
|
writeTable(pool: any, name: NamedObjectInfo, options: WriteTableOptions): Promise<stream.Writable>;
|
|
analyseSingleObject(
|
|
pool: any,
|
|
name: NamedObjectInfo,
|
|
objectTypeField: keyof DatabaseInfo
|
|
): Promise<TableInfo | ViewInfo | ProcedureInfo | FunctionInfo | TriggerInfo>;
|
|
analyseSingleTable(pool: any, name: NamedObjectInfo): Promise<TableInfo>;
|
|
getVersion(pool: any): Promise<{ version: string }>;
|
|
listDatabases(pool: any): Promise<
|
|
{
|
|
name: string;
|
|
}[]
|
|
>;
|
|
loadKeys(pool, root: string, filter?: string): Promise;
|
|
exportKeys(pool, options: {}): Promise;
|
|
loadKeyInfo(pool, key): Promise;
|
|
loadKeyTableRange(pool, key, cursor, count): Promise;
|
|
loadFieldValues(pool: any, name: NamedObjectInfo, field: string, search: string): Promise;
|
|
analyseFull(pool: any, serverVersion): Promise<DatabaseInfo>;
|
|
analyseIncremental(pool: any, structure: DatabaseInfo, serverVersion): Promise<DatabaseInfo>;
|
|
dialect: SqlDialect;
|
|
dialectByVersion(version): SqlDialect;
|
|
createDumper(options = null): SqlDumper;
|
|
createBackupDumper(pool: any, options): Promise<SqlBackupDumper>;
|
|
getAuthTypes(): EngineAuthType[];
|
|
readCollection(pool: any, options: ReadCollectionOptions): Promise<any>;
|
|
updateCollection(pool: any, changeSet: any): Promise<any>;
|
|
getCollectionUpdateScript(changeSet: any): string;
|
|
createDatabase(pool: any, name: string): Promise;
|
|
dropDatabase(pool: any, name: string): Promise;
|
|
getQuerySplitterOptions(usage: 'stream' | 'script' | 'editor'): any;
|
|
script(pool: any, sql: string, options?: RunScriptOptions): Promise;
|
|
operation(pool: any, operation: {}, options?: RunScriptOptions): Promise;
|
|
getNewObjectTemplates(): NewObjectTemplate[];
|
|
// direct call of pool method, only some methods could be supported, on only some drivers
|
|
callMethod(pool, method, args);
|
|
serverSummary(pool): Promise<ServerSummary>;
|
|
summaryCommand(pool, command, row): Promise<void>;
|
|
startProfiler(pool, options): Promise<any>;
|
|
stopProfiler(pool, profiler): Promise<void>;
|
|
getRedirectAuthUrl(connection, options): Promise<{ url: string; sid: string }>;
|
|
getAuthTokenFromCode(connection, options): Promise<string>;
|
|
getAccessTokenFromAuth(connection, req): Promise<string | null>;
|
|
getCollectionExportQueryScript(collection: string, condition: any, sort: any): string;
|
|
getCollectionExportQueryJson(collection: string, condition: any, sort: any): {};
|
|
|
|
analyserClass?: any;
|
|
dumperClass?: any;
|
|
}
|
|
|
|
export interface DatabaseModification {
|
|
oldName?: NamedObjectInfo;
|
|
newName?: NamedObjectInfo;
|
|
objectId?: string;
|
|
action: 'add' | 'remove' | 'change' | 'all';
|
|
objectTypeField: keyof DatabaseInfo;
|
|
}
|