-
Notifications
You must be signed in to change notification settings - Fork 354
/
response.js
64 lines (56 loc) · 1.44 KB
/
response.js
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
import { isWindowOrWorker } from './utils.js';
import { DropboxResponseError } from './error.js';
export class DropboxResponse {
constructor(status, headers, result) {
this.status = status;
this.headers = headers;
this.result = result;
}
}
function throwAsError(res) {
return res.text()
.then((data) => {
let errorObject;
try {
errorObject = JSON.parse(data);
} catch (error) {
errorObject = data;
}
throw new DropboxResponseError(res.status, res.headers, errorObject);
});
}
export function parseResponse(res) {
if (!res.ok) {
return throwAsError(res);
}
return res.text()
.then((data) => {
let responseObject;
try {
responseObject = JSON.parse(data);
} catch (error) {
responseObject = data;
}
return new DropboxResponse(res.status, res.headers, responseObject);
});
}
export function parseDownloadResponse(res) {
if (!res.ok) {
return throwAsError(res);
}
return new Promise((resolve) => {
if (isWindowOrWorker()) {
res.blob().then((data) => resolve(data));
} else {
res.buffer().then((data) => resolve(data));
}
}).then((data) => {
const result = JSON.parse(res.headers.get('dropbox-api-result'));
if (isWindowOrWorker()) {
result.fileBlob = data;
} else {
result.fileBinary = data;
}
return new DropboxResponse(res.status, res.headers, result);
});
}