-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathclient.ts
390 lines (337 loc) · 11.2 KB
/
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
import { fetch, FormData, File } from 'node-fetch-native-with-agent';
import { createAgent } from 'node-fetch-native-with-agent/agent';
import { Models } from './models';
import { NewPayload } from './NewPayload';
import * as multipart from 'parse-multipart-data';
const { buffer } = require('node:stream/consumers');
type Payload = {
[key: string]: any;
}
type UploadProgress = {
$id: string;
progress: number;
sizeUploaded: number;
chunksTotal: number;
chunksUploaded: number;
}
type Headers = {
[key: string]: string;
}
class AppwriteException extends Error {
code: number;
response: string;
type: string;
constructor(message: string, code: number = 0, type: string = '', response: string = '') {
super(message);
this.name = 'AppwriteException';
this.message = message;
this.code = code;
this.type = type;
this.response = response;
}
}
function getUserAgent() {
let ua = 'AppwriteNodeJSSDK/13.0.0';
// `process` is a global in Node.js, but not fully available in all runtimes.
const platform: string[] = [];
if (typeof process !== 'undefined') {
if (typeof process.platform === 'string') platform.push(process.platform);
if (typeof process.arch === 'string') platform.push(process.arch);
}
if (platform.length > 0) {
ua += ` (${platform.join('; ')})`;
}
// `navigator.userAgent` is available in Node.js 21 and later.
// It's also part of the WinterCG spec, so many edge runtimes provide it.
// https://common-min-api.proposal.wintercg.org/#requirements-for-navigatoruseragent
// @ts-ignore
if (typeof navigator !== 'undefined' && typeof navigator.userAgent === 'string') {
// @ts-ignore
ua += ` ${navigator.userAgent}`;
// @ts-ignore
} else if (typeof globalThis.EdgeRuntime === 'string') {
ua += ` EdgeRuntime`;
// Older Node.js versions don't have `navigator.userAgent`, so we have to use `process.version`.
} else if (typeof process !== 'undefined' && typeof process.version === 'string') {
ua += ` Node.js/${process.version}`;
}
return ua;
}
class Client {
static CHUNK_SIZE = 1024 * 1024 * 5;
config = {
endpoint: 'https://cloud.appwrite.io/v1',
selfSigned: false,
project: '',
key: '',
jwt: '',
locale: '',
session: '',
forwardeduseragent: '',
};
headers: Headers = {
'x-sdk-name': 'Node.js',
'x-sdk-platform': 'server',
'x-sdk-language': 'nodejs',
'x-sdk-version': '13.0.0',
'user-agent' : getUserAgent(),
'X-Appwrite-Response-Format': '1.5.0',
};
/**
* Set Endpoint
*
* Your project endpoint
*
* @param {string} endpoint
*
* @returns {this}
*/
setEndpoint(endpoint: string): this {
this.config.endpoint = endpoint;
return this;
}
/**
* Set self-signed
*
* @param {boolean} selfSigned
*
* @returns {this}
*/
setSelfSigned(selfSigned: boolean): this {
// @ts-ignore
if (typeof globalThis.EdgeRuntime !== 'undefined') {
console.warn('setSelfSigned is not supported in edge runtimes.');
}
this.config.selfSigned = selfSigned;
return this;
}
/**
* Add header
*
* @param {string} header
* @param {string} value
*
* @returns {this}
*/
addHeader(header: string, value: string): this {
this.headers[header.toLowerCase()] = value;
return this;
}
/**
* Set Project
*
* Your project ID
*
* @param value string
*
* @return {this}
*/
setProject(value: string): this {
this.headers['X-Appwrite-Project'] = value;
this.config.project = value;
return this;
}
/**
* Set Key
*
* Your secret API key
*
* @param value string
*
* @return {this}
*/
setKey(value: string): this {
this.headers['X-Appwrite-Key'] = value;
this.config.key = value;
return this;
}
/**
* Set JWT
*
* Your secret JSON Web Token
*
* @param value string
*
* @return {this}
*/
setJWT(value: string): this {
this.headers['X-Appwrite-JWT'] = value;
this.config.jwt = value;
return this;
}
/**
* Set Locale
*
* @param value string
*
* @return {this}
*/
setLocale(value: string): this {
this.headers['X-Appwrite-Locale'] = value;
this.config.locale = value;
return this;
}
/**
* Set Session
*
* The user session to authenticate with
*
* @param value string
*
* @return {this}
*/
setSession(value: string): this {
this.headers['X-Appwrite-Session'] = value;
this.config.session = value;
return this;
}
/**
* Set ForwardedUserAgent
*
* The user agent string of the client that made the request
*
* @param value string
*
* @return {this}
*/
setForwardedUserAgent(value: string): this {
this.headers['X-Forwarded-User-Agent'] = value;
this.config.forwardeduseragent = value;
return this;
}
prepareRequest(method: string, url: URL, headers: Headers = {}, params: Payload = {}): { uri: string, options: RequestInit } {
method = method.toUpperCase();
headers = Object.assign({}, this.headers, headers);
let options: RequestInit = {
method,
headers,
...createAgent(this.config.endpoint, { rejectUnauthorized: !this.config.selfSigned }),
};
if (method === 'GET') {
for (const [key, value] of Object.entries(Client.flatten(params))) {
url.searchParams.append(key, value);
}
} else {
switch (headers['content-type']) {
case 'application/json':
options.body = JSON.stringify(params);
break;
case 'multipart/form-data':
const formData = new FormData();
for (const [key, value] of Object.entries(params)) {
if (value instanceof File) {
formData.append(key, value, value.name);
} else if (Array.isArray(value)) {
for (const nestedValue of value) {
formData.append(`${key}[]`, nestedValue);
}
} else {
formData.append(key, value);
}
}
options.body = formData;
delete headers['content-type'];
break;
}
}
return { uri: url.toString(), options };
}
async chunkedUpload(method: string, url: URL, headers: Headers = {}, originalPayload: Payload = {}, onProgress: (progress: UploadProgress) => void) {
const file = Object.values(originalPayload).find((value) => value instanceof File);
if (file.size <= Client.CHUNK_SIZE) {
return await this.call(method, url, headers, originalPayload);
}
let start = 0;
let response = null;
while (start < file.size) {
let end = start + Client.CHUNK_SIZE; // Prepare end for the next chunk
if (end >= file.size) {
end = file.size; // Adjust for the last chunk to include the last byte
}
headers['content-range'] = `bytes ${start}-${end-1}/${file.size}`;
const chunk = file.slice(start, end);
let payload = { ...originalPayload, file: new File([chunk], file.name)};
response = await this.call(method, url, headers, payload);
if (onProgress && typeof onProgress === 'function') {
onProgress({
$id: response.$id,
progress: Math.round((end / file.size) * 100),
sizeUploaded: end,
chunksTotal: Math.ceil(file.size / Client.CHUNK_SIZE),
chunksUploaded: Math.ceil(end / Client.CHUNK_SIZE)
});
}
if (response && response.$id) {
headers['x-appwrite-id'] = response.$id;
}
start = end;
}
return response;
}
async redirect(method: string, url: URL, headers: Headers = {}, params: Payload = {}): Promise<string> {
const { uri, options } = this.prepareRequest(method, url, headers, params);
const response = await fetch(uri, {
...options,
redirect: 'manual'
});
if (response.status !== 301 && response.status !== 302) {
throw new AppwriteException('Invalid redirect', response.status);
}
return response.headers.get('location') || '';
}
async call(method: string, url: URL, headers: Headers = {}, params: Payload = {}, responseType = 'json'): Promise<any> {
const { uri, options } = this.prepareRequest(method, url, headers, params);
let data: any = null;
const response = await fetch(uri, options);
if (response.headers.get('content-type')?.includes('application/json')) {
data = await response.json();
} else if (responseType === 'arrayBuffer') {
data = await response.arrayBuffer();
} else if (response.headers.get('content-type')?.includes('multipart/form-data')) {
const body = await buffer(response.body);
const boundary = multipart.getBoundary(
response.headers.get("content-type") || ""
);
const parts = multipart.parse(body, boundary);
const partsObject: { [key: string]: Buffer | string } = {};
for (const part of parts) {
if (part.name) {
if (part.name === "responseBody") {
partsObject[part.name] = part.data;
} else {
partsObject[part.name] = part.data.toString();
}
}
}
data = {
...partsObject,
responseBody: new NewPayload(partsObject.responseBody as Buffer),
};
}
else {
data = {
message: await response.text()
};
}
if (400 <= response.status) {
throw new AppwriteException(data?.message, response.status, data?.type, data);
}
return data;
}
static flatten(data: Payload, prefix = ''): Payload {
let output: Payload = {};
for (const [key, value] of Object.entries(data)) {
let finalKey = prefix ? prefix + '[' + key +']' : key;
if (Array.isArray(value)) {
output = { ...output, ...Client.flatten(value, finalKey) };
} else {
output[finalKey] = value;
}
}
return output;
}
}
export { Client, AppwriteException };
export { Query } from './query';
export type { Models, Payload, UploadProgress };
export type { QueryTypes, QueryTypesList } from './query';