-
Notifications
You must be signed in to change notification settings - Fork 12
/
http_client.ts
487 lines (461 loc) · 14.9 KB
/
http_client.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
import {
FunctionReference,
FunctionReturnType,
OptionalRestArgs,
getFunctionName,
} from "../server/api.js";
import { parseArgs, validateDeploymentUrl } from "../common/index.js";
import { version } from "../index.js";
import {
ConvexError,
JSONValue,
convexToJson,
jsonToConvex,
} from "../values/index.js";
import { instantiateDefaultLogger, logForFunction, Logger } from "./logging.js";
import { FunctionArgs, UserIdentityAttributes } from "../server/index.js";
export const STATUS_CODE_OK = 200;
export const STATUS_CODE_BAD_REQUEST = 400;
// Special custom 5xx HTTP status code to mean that the UDF returned an error.
//
// Must match the constant of the same name in the backend.
export const STATUS_CODE_UDF_FAILED = 560;
// Allow fetch to be shimmed in for Node.js < 18
let specifiedFetch: typeof globalThis.fetch | undefined = undefined;
export function setFetch(f: typeof globalThis.fetch) {
specifiedFetch = f;
}
/**
* A Convex client that runs queries and mutations over HTTP.
*
* This is appropriate for server-side code (like Netlify Lambdas) or non-reactive
* webapps.
*
* If you're building a React app, consider using
* {@link react.ConvexReactClient} instead.
*
* @public
*/
export class ConvexHttpClient {
private readonly address: string;
private auth?: string;
private adminAuth?: string;
private encodedTsPromise?: Promise<string>;
private debug: boolean;
private fetchOptions?: FetchOptions;
private logger: Logger;
/**
* Create a new {@link ConvexHttpClient}.
*
* @param address - The url of your Convex deployment, often provided
* by an environment variable. E.g. `https://small-mouse-123.convex.cloud`.
* @param options - An object of options.
* - `skipConvexDeploymentUrlCheck` - Skip validating that the Convex deployment URL looks like
* `https://happy-animal-123.convex.cloud` or localhost. This can be useful if running a self-hosted
* Convex backend that uses a different URL.
* - `logger` - A logger. If not provided, logs to the console.
* You can construct your own logger to customize logging to log elsewhere
* or not log at all.
*/
constructor(
address: string,
options?: { skipConvexDeploymentUrlCheck?: boolean; logger?: Logger },
) {
if (typeof options === "boolean") {
throw new Error(
"skipConvexDeploymentUrlCheck as the second argument is no longer supported. Please pass an options object, `{ skipConvexDeploymentUrlCheck: true }`.",
);
}
const opts = options ?? {};
if (opts.skipConvexDeploymentUrlCheck !== true) {
validateDeploymentUrl(address);
}
this.logger = opts.logger ?? instantiateDefaultLogger({ verbose: false });
this.address = address;
this.debug = true;
}
/**
* Obtain the {@link ConvexHttpClient}'s URL to its backend.
* @deprecated Use url, which returns the url without /api at the end.
*
* @returns The URL to the Convex backend, including the client's API version.
*/
backendUrl(): string {
return `${this.address}/api`;
}
/**
* Return the address for this client, useful for creating a new client.
*
* Not guaranteed to match the address with which this client was constructed:
* it may be canonicalized.
*/
get url() {
return this.address;
}
/**
* Set the authentication token to be used for subsequent queries and mutations.
*
* Should be called whenever the token changes (i.e. due to expiration and refresh).
*
* @param value - JWT-encoded OpenID Connect identity token.
*/
setAuth(value: string) {
this.clearAuth();
this.auth = value;
}
/**
* @internal
*/
setAdminAuth(token: string, actingAsIdentity?: UserIdentityAttributes) {
this.clearAuth();
if (actingAsIdentity !== undefined) {
// Encode the identity to a base64 string
const bytes = new TextEncoder().encode(JSON.stringify(actingAsIdentity));
const actingAsIdentityEncoded = btoa(String.fromCodePoint(...bytes));
this.adminAuth = `${token}:${actingAsIdentityEncoded}`;
} else {
this.adminAuth = token;
}
}
/**
* Clear the current authentication token if set.
*/
clearAuth() {
this.auth = undefined;
this.adminAuth = undefined;
}
/**
* Sets whether the result log lines should be printed on the console or not.
*
* @internal
*/
setDebug(debug: boolean) {
this.debug = debug;
}
/**
* Used to customize the fetch behavior in some runtimes.
*
* @internal
*/
setFetchOptions(fetchOptions: FetchOptions) {
this.fetchOptions = fetchOptions;
}
/**
* This API is experimental: it may change or disappear.
*
* Execute a Convex query function at the same timestamp as every other
* consistent query execution run by this HTTP client.
*
* This doesn't make sense for long-lived ConvexHttpClients as Convex
* backends can read a limited amount into the past: beyond 30 seconds
* in the past may not be available.
*
* Create a new client to use a consistent time.
*
* @param name - The name of the query.
* @param args - The arguments object for the query. If this is omitted,
* the arguments will be `{}`.
* @returns A promise of the query's result.
*
* @deprecated This API is experimental: it may change or disappear.
*/
async consistentQuery<Query extends FunctionReference<"query">>(
query: Query,
...args: OptionalRestArgs<Query>
): Promise<FunctionReturnType<Query>> {
const queryArgs = parseArgs(args[0]);
const timestampPromise = this.getTimestamp();
return await this.queryInner(query, queryArgs, { timestampPromise });
}
private async getTimestamp() {
if (this.encodedTsPromise) {
return this.encodedTsPromise;
}
return (this.encodedTsPromise = this.getTimestampInner());
}
private async getTimestampInner() {
const localFetch = specifiedFetch || fetch;
const headers: Record<string, string> = {
"Content-Type": "application/json",
"Convex-Client": `npm-${version}`,
};
const response = await localFetch(`${this.address}/api/query_ts`, {
...this.fetchOptions,
method: "POST",
headers: headers,
});
if (!response.ok) {
throw new Error(await response.text());
}
const { ts } = (await response.json()) as { ts: string };
return ts;
}
/**
* Execute a Convex query function.
*
* @param name - The name of the query.
* @param args - The arguments object for the query. If this is omitted,
* the arguments will be `{}`.
* @returns A promise of the query's result.
*/
async query<Query extends FunctionReference<"query">>(
query: Query,
...args: OptionalRestArgs<Query>
): Promise<FunctionReturnType<Query>> {
const queryArgs = parseArgs(args[0]);
return await this.queryInner(query, queryArgs, {});
}
private async queryInner<Query extends FunctionReference<"query">>(
query: Query,
queryArgs: FunctionArgs<Query>,
options: { timestampPromise?: Promise<string> },
): Promise<FunctionReturnType<Query>> {
const name = getFunctionName(query);
const args = [convexToJson(queryArgs)];
const headers: Record<string, string> = {
"Content-Type": "application/json",
"Convex-Client": `npm-${version}`,
};
if (this.adminAuth) {
headers["Authorization"] = `Convex ${this.adminAuth}`;
} else if (this.auth) {
headers["Authorization"] = `Bearer ${this.auth}`;
}
const localFetch = specifiedFetch || fetch;
const timestamp = options.timestampPromise
? await options.timestampPromise
: undefined;
const body = JSON.stringify({
path: name,
format: "convex_encoded_json",
args,
...(timestamp ? { ts: timestamp } : {}),
});
const endpoint = timestamp
? `${this.address}/api/query_at_ts`
: `${this.address}/api/query`;
const response = await localFetch(endpoint, {
...this.fetchOptions,
body,
method: "POST",
headers: headers,
});
if (!response.ok && response.status !== STATUS_CODE_UDF_FAILED) {
throw new Error(await response.text());
}
const respJSON = await response.json();
if (this.debug) {
for (const line of respJSON.logLines ?? []) {
logForFunction(this.logger, "info", "query", name, line);
}
}
switch (respJSON.status) {
case "success":
return jsonToConvex(respJSON.value);
case "error":
if (respJSON.errorData !== undefined) {
throw forwardErrorData(
respJSON.errorData,
new ConvexError(respJSON.errorMessage),
);
}
throw new Error(respJSON.errorMessage);
default:
throw new Error(`Invalid response: ${JSON.stringify(respJSON)}`);
}
}
/**
* Execute a Convex mutation function.
*
* @param name - The name of the mutation.
* @param args - The arguments object for the mutation. If this is omitted,
* the arguments will be `{}`.
* @returns A promise of the mutation's result.
*/
async mutation<Mutation extends FunctionReference<"mutation">>(
mutation: Mutation,
...args: OptionalRestArgs<Mutation>
): Promise<FunctionReturnType<Mutation>> {
const mutationArgs = parseArgs(args[0]);
const name = getFunctionName(mutation);
const body = JSON.stringify({
path: name,
format: "convex_encoded_json",
args: [convexToJson(mutationArgs)],
});
const headers: Record<string, string> = {
"Content-Type": "application/json",
"Convex-Client": `npm-${version}`,
};
if (this.adminAuth) {
headers["Authorization"] = `Convex ${this.adminAuth}`;
} else if (this.auth) {
headers["Authorization"] = `Bearer ${this.auth}`;
}
const localFetch = specifiedFetch || fetch;
const response = await localFetch(`${this.address}/api/mutation`, {
...this.fetchOptions,
body,
method: "POST",
headers: headers,
});
if (!response.ok && response.status !== STATUS_CODE_UDF_FAILED) {
throw new Error(await response.text());
}
const respJSON = await response.json();
if (this.debug) {
for (const line of respJSON.logLines ?? []) {
logForFunction(this.logger, "info", "mutation", name, line);
}
}
switch (respJSON.status) {
case "success":
return jsonToConvex(respJSON.value);
case "error":
if (respJSON.errorData !== undefined) {
throw forwardErrorData(
respJSON.errorData,
new ConvexError(respJSON.errorMessage),
);
}
throw new Error(respJSON.errorMessage);
default:
throw new Error(`Invalid response: ${JSON.stringify(respJSON)}`);
}
}
/**
* Execute a Convex action function.
*
* @param name - The name of the action.
* @param args - The arguments object for the action. If this is omitted,
* the arguments will be `{}`.
* @returns A promise of the action's result.
*/
async action<Action extends FunctionReference<"action">>(
action: Action,
...args: OptionalRestArgs<Action>
): Promise<FunctionReturnType<Action>> {
const actionArgs = parseArgs(args[0]);
const name = getFunctionName(action);
const body = JSON.stringify({
path: name,
format: "convex_encoded_json",
args: [convexToJson(actionArgs)],
});
const headers: Record<string, string> = {
"Content-Type": "application/json",
"Convex-Client": `npm-${version}`,
};
if (this.adminAuth) {
headers["Authorization"] = `Convex ${this.adminAuth}`;
} else if (this.auth) {
headers["Authorization"] = `Bearer ${this.auth}`;
}
const localFetch = specifiedFetch || fetch;
const response = await localFetch(`${this.address}/api/action`, {
...this.fetchOptions,
body,
method: "POST",
headers: headers,
});
if (!response.ok && response.status !== STATUS_CODE_UDF_FAILED) {
throw new Error(await response.text());
}
const respJSON = await response.json();
if (this.debug) {
for (const line of respJSON.logLines ?? []) {
logForFunction(this.logger, "info", "action", name, line);
}
}
switch (respJSON.status) {
case "success":
return jsonToConvex(respJSON.value);
case "error":
if (respJSON.errorData !== undefined) {
throw forwardErrorData(
respJSON.errorData,
new ConvexError(respJSON.errorMessage),
);
}
throw new Error(respJSON.errorMessage);
default:
throw new Error(`Invalid response: ${JSON.stringify(respJSON)}`);
}
}
/**
* Execute a Convex function of an unknown type.
*
* @param name - The name of the function.
* @param args - The arguments object for the function. If this is omitted,
* the arguments will be `{}`.
* @returns A promise of the function's result.
*
* @internal
*/
async function<
AnyFunction extends FunctionReference<"query" | "mutation" | "action">,
>(
anyFunction: AnyFunction | string,
componentPath?: string,
...args: OptionalRestArgs<AnyFunction>
): Promise<FunctionReturnType<AnyFunction>> {
const functionArgs = parseArgs(args[0]);
const name =
typeof anyFunction === "string"
? anyFunction
: getFunctionName(anyFunction);
const body = JSON.stringify({
componentPath: componentPath,
path: name,
format: "convex_encoded_json",
args: convexToJson(functionArgs),
});
const headers: Record<string, string> = {
"Content-Type": "application/json",
"Convex-Client": `npm-${version}`,
};
if (this.adminAuth) {
headers["Authorization"] = `Convex ${this.adminAuth}`;
} else if (this.auth) {
headers["Authorization"] = `Bearer ${this.auth}`;
}
const localFetch = specifiedFetch || fetch;
const response = await localFetch(`${this.address}/api/function`, {
...this.fetchOptions,
body,
method: "POST",
headers: headers,
});
if (!response.ok && response.status !== STATUS_CODE_UDF_FAILED) {
throw new Error(await response.text());
}
const respJSON = await response.json();
if (this.debug) {
for (const line of respJSON.logLines ?? []) {
logForFunction(this.logger, "info", "any", name, line);
}
}
switch (respJSON.status) {
case "success":
return jsonToConvex(respJSON.value);
case "error":
if (respJSON.errorData !== undefined) {
throw forwardErrorData(
respJSON.errorData,
new ConvexError(respJSON.errorMessage),
);
}
throw new Error(respJSON.errorMessage);
default:
throw new Error(`Invalid response: ${JSON.stringify(respJSON)}`);
}
}
}
function forwardErrorData(errorData: JSONValue, error: ConvexError<string>) {
(error as ConvexError<any>).data = jsonToConvex(errorData);
return error;
}
/**
* @internal
*/
type FetchOptions = { cache: "force-cache" | "no-store" };