-
Notifications
You must be signed in to change notification settings - Fork 0
/
base-db.ts
228 lines (204 loc) · 7.2 KB
/
base-db.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
import type { Plugin } from "./plugin-bindings";
import {
type WithPluginRegistry,
PluginRegistry,
type PluggableInterfaceShape,
type PluginList,
type ExtractPlugin,
} from "./plugin-registry";
import {
type Client,
type ClientOptions,
// TODO: imports below are not related to client, export from "core"(?) instead?
Credential,
type AuthenticatedCredential,
type Database,
defaultDatabase,
type Host,
defaultHost,
} from "@madatdata/base-client";
import type { HTTPStrategies } from "@madatdata/client-http";
export interface ImportPlugin extends Plugin {
importData: (
sourceOptions: any,
destOptions: any
) => Promise<{ response: any | null; error: any | null; info?: any | null }>;
}
// interface ImportPluginWithOptions extends ImportPlugin {
// withOptions: WithOptions<ImportPlugin>;
// }
export interface ExportPlugin extends Plugin {
exportData: (
sourceOptions: any,
destOptions: any
) => Promise<{ response: any | null; error: any | null; info?: any | null }>;
}
// interface ExportPluginWithOptions extends ExportPlugin {
// withOptions: WithOptions<ExportPlugin>;
// }
export interface DbPluggableInterface<ConcretePluginList extends PluginList>
extends PluggableInterfaceShape {
importData: <MatchingPlugin extends ImportPluginFromList<ConcretePluginList>>(
...importDataArgsForPlugin: Parameters<MatchingPlugin["importData"]>
) => Promise<unknown>;
exportData: <MatchingPlugin extends ExportPluginFromList<ConcretePluginList>>(
...exportDataArgsForPlugin: Parameters<MatchingPlugin["exportData"]>
) => Promise<unknown>;
}
export interface Db<ConcretePluginList extends PluginList> {
importData: <MatchingPlugin extends ImportPluginFromList<ConcretePluginList>>(
pluginName: MatchingPlugin["__name"],
...rest: Parameters<MatchingPlugin["importData"]>
) => Promise<unknown>;
exportData: <MatchingPlugin extends ExportPluginFromList<ConcretePluginList>>(
pluginName: MatchingPlugin["__name"],
...rest: Parameters<MatchingPlugin["exportData"]>
) => Promise<unknown>;
makeClient: <ImplementationSpecificClientOptions extends ClientOptions>(
makeClientForProtocol: (
wrappedOptions: ImplementationSpecificClientOptions
) => Client,
opts: ImplementationSpecificClientOptions
) => Client;
}
export type ImportPluginFromList<
ConcretePluginList extends PluginList,
PluginName extends ExtractPlugin<
ConcretePluginList,
ImportPlugin
>["__name"] = string
> = ExtractPlugin<ConcretePluginList, ImportPlugin & { __name: PluginName }>;
export type ExportPluginFromList<
ConcretePluginList extends PluginList,
PluginName extends ExtractPlugin<
ConcretePluginList,
ExportPlugin
>["__name"] = string
> = ExtractPlugin<ConcretePluginList, ExportPlugin & { __name: PluginName }>;
export interface DbOptions<ConcretePluginList extends PluginList> {
plugins: ConcretePluginList;
authenticatedCredential?: AuthenticatedCredential;
host?: Host;
database?: Database;
strategies?: HTTPStrategies;
}
export abstract class BaseDb<
ConcretePluginList extends PluginList,
PluginHostContext extends object
> implements
Db<ConcretePluginList>,
WithPluginRegistry<
ConcretePluginList,
PluginHostContext,
DbPluggableInterface<ConcretePluginList>
>
{
public plugins: PluginRegistry<
ConcretePluginList,
PluginHostContext,
DbPluggableInterface<ConcretePluginList>
>;
protected authenticatedCredential?: AuthenticatedCredential;
protected host: Host;
protected database: Database;
protected opts: DbOptions<ConcretePluginList>;
constructor(opts: DbOptions<ConcretePluginList>) {
this.setAuthenticatedCredential(opts?.authenticatedCredential);
this.host = opts?.host ?? defaultHost;
this.database = opts?.database ?? defaultDatabase;
this.plugins = new PluginRegistry(opts.plugins, {} as PluginHostContext);
this.opts = opts;
}
public setAuthenticatedCredential(
maybeAuthenticatedCredential: DbOptions<ConcretePluginList>["authenticatedCredential"]
) {
if (typeof maybeAuthenticatedCredential !== "undefined") {
const parsedCredential = Credential(maybeAuthenticatedCredential);
if (parsedCredential.anonymous) {
throw new Error("Error: authenticatedCredential is anonymous or null");
}
this.authenticatedCredential = parsedCredential;
}
}
public makeClient<ImplementationSpecificClientOptions, Strategies>(
makeClientForProtocol: (
wrappedOptions: ImplementationSpecificClientOptions &
ClientOptions<Strategies>
) => Client,
clientOptions: ImplementationSpecificClientOptions &
ClientOptions<Strategies>
) {
return makeClientForProtocol({
database: this.database,
host: this.host,
credential: this.authenticatedCredential,
...clientOptions,
});
}
abstract importData<
PluginName extends ImportPluginFromList<
ConcretePluginList,
string
>["__name"],
MatchingPlugin extends ImportPluginFromList<ConcretePluginList, PluginName>
>(
pluginName: PluginName,
...rest: Parameters<MatchingPlugin["importData"]>
): Promise<unknown>;
abstract exportData<
PluginName extends ExportPluginFromList<
ConcretePluginList,
string
>["__name"],
MatchingPlugin extends ExportPluginFromList<ConcretePluginList, PluginName>
>(
pluginName: PluginName,
...rest: Parameters<MatchingPlugin["exportData"]>
): Promise<unknown>;
/**
* Return a fingerprint and normalized query (used as input to the fingerprint)
* for a given SQL string. Default to SHA-256 and normalizing for HTTP headers.
*/
public async fingerprintQuery(
sql: string,
algorithm: AlgorithmIdentifier = "SHA-256",
normalizeQuery: (sql: string) => string = this.normalizeQueryForHTTPHeader
) {
// In a browser, window.webcrypto.subtle should be available
// In node, we (used to need?) to use the import from the ambient node: module
// In vitest, really JSDOM, it's a bit of a mix between the two (window is available?)
// NOTE: Need to test how this will work in a browser bundle which we don't even have yet
const subtle = await (async () => {
if (!window?.crypto?.subtle) {
const { webcrypto } = await import("crypto");
if (webcrypto.subtle) {
return webcrypto.subtle;
} else {
throw new Error("Missing webcrypto.subtle");
}
} else if (window.crypto.subtle) {
return window.crypto.subtle;
} else {
throw new Error("Missing webcrypto.subtle and window.crypto.subtle");
}
})();
const normalized = normalizeQuery(sql);
const digest = await subtle.digest(
algorithm,
new TextEncoder().encode(normalized)
);
const fingerprint = [...new Uint8Array(digest)]
.map((x) => x.toString(16).padStart(2, "0"))
.join("");
return { normalized, fingerprint };
}
/**
* Normalize SQL to be a valid HTTP header and stable fingerprinting input.
*
* NOTE: To maximize caching semantics, if the normalized result is used to
* fingerprint a query, it should also be used to execute the query.
*/
public normalizeQueryForHTTPHeader(sql: string) {
return sql.trim().replace(/(?:\r\n|\r|\n)/g, " ");
}
}