@data-loom/storage-js 0.2.1-alpha.2 → 0.2.1-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/lib/errors.d.ts +3 -1
- package/dist/main/lib/errors.d.ts.map +1 -1
- package/dist/main/lib/errors.js +11 -3
- package/dist/main/lib/errors.js.map +1 -1
- package/dist/main/lib/fetch.d.ts.map +1 -1
- package/dist/main/lib/fetch.js +11 -0
- package/dist/main/lib/fetch.js.map +1 -1
- package/dist/main/lib/helpers.d.ts +1 -0
- package/dist/main/lib/helpers.d.ts.map +1 -1
- package/dist/main/lib/helpers.js +12 -1
- package/dist/main/lib/helpers.js.map +1 -1
- package/dist/main/lib/types.d.ts +2 -2
- package/dist/main/lib/types.d.ts.map +1 -1
- package/dist/main/packages/StorageFileApi.d.ts +9 -115
- package/dist/main/packages/StorageFileApi.d.ts.map +1 -1
- package/dist/main/packages/StorageFileApi.js +28 -250
- package/dist/main/packages/StorageFileApi.js.map +1 -1
- package/dist/module/lib/errors.d.ts +3 -1
- package/dist/module/lib/errors.d.ts.map +1 -1
- package/dist/module/lib/errors.js +7 -1
- package/dist/module/lib/errors.js.map +1 -1
- package/dist/module/lib/fetch.d.ts.map +1 -1
- package/dist/module/lib/fetch.js +12 -1
- package/dist/module/lib/fetch.js.map +1 -1
- package/dist/module/lib/helpers.d.ts +1 -0
- package/dist/module/lib/helpers.d.ts.map +1 -1
- package/dist/module/lib/helpers.js +10 -0
- package/dist/module/lib/helpers.js.map +1 -1
- package/dist/module/lib/types.d.ts +2 -2
- package/dist/module/lib/types.d.ts.map +1 -1
- package/dist/module/packages/StorageFileApi.d.ts +9 -115
- package/dist/module/packages/StorageFileApi.d.ts.map +1 -1
- package/dist/module/packages/StorageFileApi.js +31 -253
- package/dist/module/packages/StorageFileApi.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
/// <reference types="node" />
|
|
3
|
-
/// <reference types="node" />
|
|
4
1
|
import { StorageError } from '../lib/errors';
|
|
5
2
|
import { Fetch } from '../lib/fetch';
|
|
6
|
-
import { FileObject, FileOptions, SearchOptions,
|
|
3
|
+
import { FileObject, FileOptions, SearchOptions, FileBody } from '../lib/types';
|
|
7
4
|
export default class StorageFileApi {
|
|
8
5
|
protected url: string;
|
|
9
6
|
protected headers: {
|
|
@@ -39,49 +36,13 @@ export default class StorageFileApi {
|
|
|
39
36
|
data: null;
|
|
40
37
|
error: StorageError;
|
|
41
38
|
}>;
|
|
42
|
-
/**
|
|
43
|
-
* Upload a file with a token generated from `createSignedUploadUrl`.
|
|
44
|
-
* @param path The file path, including the file name. Should be of the format `folder/subfolder/filename.png`. The bucket must already exist before attempting to upload.
|
|
45
|
-
* @param token The token generated from `createSignedUploadUrl`
|
|
46
|
-
* @param fileBody The body of the file to be stored in the bucket.
|
|
47
|
-
*/
|
|
48
|
-
uploadToSignedUrl(path: string, token: string, fileBody: FileBody, fileOptions?: FileOptions): Promise<{
|
|
49
|
-
data: {
|
|
50
|
-
path: string;
|
|
51
|
-
fullPath: any;
|
|
52
|
-
};
|
|
53
|
-
error: null;
|
|
54
|
-
} | {
|
|
55
|
-
data: null;
|
|
56
|
-
error: StorageError;
|
|
57
|
-
}>;
|
|
58
|
-
/**
|
|
59
|
-
* Creates a signed upload URL.
|
|
60
|
-
* Signed upload URLs can be used to upload files to the bucket without further authentication.
|
|
61
|
-
* They are valid for 2 hours.
|
|
62
|
-
* @param path The file path, including the current file name. For example `folder/image.png`.
|
|
63
|
-
* @param options.upsert If set to true, allows the file to be overwritten if it already exists.
|
|
64
|
-
*/
|
|
65
|
-
createSignedUploadUrl(path: string, options?: {
|
|
66
|
-
upsert: boolean;
|
|
67
|
-
}): Promise<{
|
|
68
|
-
data: {
|
|
69
|
-
signedUrl: string;
|
|
70
|
-
token: string;
|
|
71
|
-
path: string;
|
|
72
|
-
};
|
|
73
|
-
error: null;
|
|
74
|
-
} | {
|
|
75
|
-
data: null;
|
|
76
|
-
error: StorageError;
|
|
77
|
-
}>;
|
|
78
39
|
/**
|
|
79
40
|
* Replaces an existing file at the specified path with a new one.
|
|
80
41
|
*
|
|
81
42
|
* @param path The relative file path. Should be of the format `folder/subfolder/filename.png`. The bucket must already exist before attempting to update.
|
|
82
43
|
* @param fileBody The body of the file to be stored in the bucket.
|
|
83
44
|
*/
|
|
84
|
-
update(path: string, fileBody:
|
|
45
|
+
update(path: string, fileBody: FileBody, fileOptions?: FileOptions): Promise<{
|
|
85
46
|
data: {
|
|
86
47
|
id: string;
|
|
87
48
|
path: string;
|
|
@@ -92,38 +53,6 @@ export default class StorageFileApi {
|
|
|
92
53
|
data: null;
|
|
93
54
|
error: StorageError;
|
|
94
55
|
}>;
|
|
95
|
-
/**
|
|
96
|
-
* Moves an existing file to a new path in the same bucket.
|
|
97
|
-
*
|
|
98
|
-
* @param fromPath The original file path, including the current file name. For example `folder/image.png`.
|
|
99
|
-
* @param toPath The new file path, including the new file name. For example `folder/image-new.png`.
|
|
100
|
-
* @param options The destination options.
|
|
101
|
-
*/
|
|
102
|
-
move(fromPath: string, toPath: string, options?: DestinationOptions): Promise<{
|
|
103
|
-
data: {
|
|
104
|
-
message: string;
|
|
105
|
-
};
|
|
106
|
-
error: null;
|
|
107
|
-
} | {
|
|
108
|
-
data: null;
|
|
109
|
-
error: StorageError;
|
|
110
|
-
}>;
|
|
111
|
-
/**
|
|
112
|
-
* Copies an existing file to a new path in the same bucket.
|
|
113
|
-
*
|
|
114
|
-
* @param fromPath The original file path, including the current file name. For example `folder/image.png`.
|
|
115
|
-
* @param toPath The new file path, including the new file name. For example `folder/image-copy.png`.
|
|
116
|
-
* @param options The destination options.
|
|
117
|
-
*/
|
|
118
|
-
copy(fromPath: string, toPath: string, options?: DestinationOptions): Promise<{
|
|
119
|
-
data: {
|
|
120
|
-
path: string;
|
|
121
|
-
};
|
|
122
|
-
error: null;
|
|
123
|
-
} | {
|
|
124
|
-
data: null;
|
|
125
|
-
error: StorageError;
|
|
126
|
-
}>;
|
|
127
56
|
/**
|
|
128
57
|
* Creates a signed URL. Use a signed URL to share a file for a fixed amount of time.
|
|
129
58
|
*
|
|
@@ -134,7 +63,7 @@ export default class StorageFileApi {
|
|
|
134
63
|
*/
|
|
135
64
|
createSignedUrl(path: string, expiresIn: number): Promise<{
|
|
136
65
|
data: {
|
|
137
|
-
|
|
66
|
+
signedURL: string;
|
|
138
67
|
};
|
|
139
68
|
error: null;
|
|
140
69
|
} | {
|
|
@@ -147,11 +76,15 @@ export default class StorageFileApi {
|
|
|
147
76
|
* @param paths The file paths to be downloaded, including the current file names. For example `['folder/image.png', 'folder2/image2.png']`.
|
|
148
77
|
* @param expiresIn The number of seconds until the signed URLs expire. For example, `60` for URLs which are valid for one minute.
|
|
149
78
|
* @param options.download triggers the file as a download if set to true. Set this parameter as the name of the file if you want to trigger the download with a different filename.
|
|
79
|
+
*
|
|
80
|
+
*
|
|
81
|
+
* success: { error: "", path: "xxxx/xxxx.xx", signedURL: "https://xxxx"}
|
|
82
|
+
* failed: { error: "xxxx", path: "xxxx/xxxx.xx", signedURL: "" }
|
|
150
83
|
*/
|
|
151
84
|
createSignedUrls(paths: string[], expiresIn: number): Promise<{
|
|
152
85
|
data: {
|
|
153
|
-
error: string
|
|
154
|
-
path: string
|
|
86
|
+
error: string;
|
|
87
|
+
path: string;
|
|
155
88
|
signedUrl: string;
|
|
156
89
|
}[];
|
|
157
90
|
error: null;
|
|
@@ -172,44 +105,6 @@ export default class StorageFileApi {
|
|
|
172
105
|
data: null;
|
|
173
106
|
error: StorageError;
|
|
174
107
|
}>;
|
|
175
|
-
/**
|
|
176
|
-
* Retrieves the details of an existing file.
|
|
177
|
-
* @param path
|
|
178
|
-
*/
|
|
179
|
-
info(path: string): Promise<{
|
|
180
|
-
data: Camelize<FileObjectV2>;
|
|
181
|
-
error: null;
|
|
182
|
-
} | {
|
|
183
|
-
data: null;
|
|
184
|
-
error: StorageError;
|
|
185
|
-
}>;
|
|
186
|
-
/**
|
|
187
|
-
* Checks the existence of a file.
|
|
188
|
-
* @param path
|
|
189
|
-
*/
|
|
190
|
-
exists(path: string): Promise<{
|
|
191
|
-
data: boolean;
|
|
192
|
-
error: null;
|
|
193
|
-
} | {
|
|
194
|
-
data: boolean;
|
|
195
|
-
error: StorageError;
|
|
196
|
-
}>;
|
|
197
|
-
/**
|
|
198
|
-
* A simple convenience function to get the URL for an asset in a public bucket. If you do not want to use this function, you can construct the public URL by concatenating the bucket URL with the path to the asset.
|
|
199
|
-
* This function does not verify if the bucket is public. If a public URL is created for a bucket which is not public, you will not be able to download the asset.
|
|
200
|
-
*
|
|
201
|
-
* @param path The path and name of the file to generate the public URL for. For example `folder/image.png`.
|
|
202
|
-
* @param options.download Triggers the file as a download if set to true. Set this parameter as the name of the file if you want to trigger the download with a different filename.
|
|
203
|
-
* @param options.transform Transform the asset before serving it to the client.
|
|
204
|
-
*/
|
|
205
|
-
getPublicUrl(path: string, options?: {
|
|
206
|
-
download?: string | boolean;
|
|
207
|
-
transform?: TransformOptions;
|
|
208
|
-
}): {
|
|
209
|
-
data: {
|
|
210
|
-
publicUrl: string;
|
|
211
|
-
};
|
|
212
|
-
};
|
|
213
108
|
/**
|
|
214
109
|
* Deletes files within the same bucket
|
|
215
110
|
*
|
|
@@ -238,6 +133,5 @@ export default class StorageFileApi {
|
|
|
238
133
|
toBase64(data: string): string;
|
|
239
134
|
private _getFinalPath;
|
|
240
135
|
private _removeEmptyFolders;
|
|
241
|
-
private transformOptsToQueryString;
|
|
242
136
|
}
|
|
243
137
|
//# sourceMappingURL=StorageFileApi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StorageFileApi.d.ts","sourceRoot":"","sources":["../../../src/packages/StorageFileApi.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"StorageFileApi.d.ts","sourceRoot":"","sources":["../../../src/packages/StorageFileApi.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { isStorageError, StorageError, StorageUnknownError,
|
|
2
|
-
import { get,
|
|
3
|
-
import {
|
|
1
|
+
import { isStorageError, StorageError, StorageUnknownError, isCustomError } from '../lib/errors';
|
|
2
|
+
import { get, post, put, remove } from '../lib/fetch';
|
|
3
|
+
import { resolveFetch, getUpdateFileSize, toValidExpiresIn } from '../lib/helpers';
|
|
4
4
|
const DEFAULT_SEARCH_OPTIONS = {
|
|
5
5
|
limit: 100,
|
|
6
6
|
offset: 0,
|
|
@@ -10,8 +10,6 @@ const DEFAULT_SEARCH_OPTIONS = {
|
|
|
10
10
|
},
|
|
11
11
|
};
|
|
12
12
|
const DEFAULT_FILE_OPTIONS = {
|
|
13
|
-
// cacheControl: '3600',
|
|
14
|
-
// contentType: 'text/plain;charset=UTF-8',
|
|
15
13
|
upsert: false,
|
|
16
14
|
};
|
|
17
15
|
export default class StorageFileApi {
|
|
@@ -32,7 +30,6 @@ export default class StorageFileApi {
|
|
|
32
30
|
var _a, _b, _c, _d;
|
|
33
31
|
try {
|
|
34
32
|
const options = Object.assign(Object.assign({}, DEFAULT_FILE_OPTIONS), fileOptions);
|
|
35
|
-
const headers = Object.assign({}, this.headers);
|
|
36
33
|
// pre-upload
|
|
37
34
|
const preUploadBody = {
|
|
38
35
|
file_size: getUpdateFileSize(fileBody),
|
|
@@ -40,7 +37,9 @@ export default class StorageFileApi {
|
|
|
40
37
|
};
|
|
41
38
|
const cleanPath = this._removeEmptyFolders(path);
|
|
42
39
|
const _path = this._getFinalPath(cleanPath);
|
|
43
|
-
const res = await post(this.fetch, `${this.url}/object/${
|
|
40
|
+
const res = await post(this.fetch, `${this.url}/object/${_path}`, preUploadBody, {
|
|
41
|
+
headers: this.headers,
|
|
42
|
+
});
|
|
44
43
|
const { upload_id, upload_url } = (_b = res === null || res === void 0 ? void 0 : res.data) !== null && _b !== void 0 ? _b : {};
|
|
45
44
|
if (upload_url && upload_id) {
|
|
46
45
|
const tosHeaders = {};
|
|
@@ -52,18 +51,15 @@ export default class StorageFileApi {
|
|
|
52
51
|
}
|
|
53
52
|
const tosRes = await put(this.fetch, upload_url, fileBody, {
|
|
54
53
|
noResolveJson: true,
|
|
55
|
-
|
|
54
|
+
headers: tosHeaders,
|
|
55
|
+
});
|
|
56
56
|
const etag = (_d = (_c = tosRes === null || tosRes === void 0 ? void 0 : tosRes.headers) === null || _c === void 0 ? void 0 : _c.get('Etag')) !== null && _d !== void 0 ? _d : '';
|
|
57
57
|
const callbackRes = await post(this.fetch, `${this.url}/object/callback`, {
|
|
58
58
|
upload_id,
|
|
59
59
|
etag,
|
|
60
|
+
}, {
|
|
61
|
+
headers: this.headers,
|
|
60
62
|
});
|
|
61
|
-
if (isErrorReturned(callbackRes)) {
|
|
62
|
-
return {
|
|
63
|
-
data: null,
|
|
64
|
-
error: callbackRes,
|
|
65
|
-
};
|
|
66
|
-
}
|
|
67
63
|
return {
|
|
68
64
|
data: callbackRes.data,
|
|
69
65
|
error: null,
|
|
@@ -77,8 +73,8 @@ export default class StorageFileApi {
|
|
|
77
73
|
}
|
|
78
74
|
}
|
|
79
75
|
catch (error) {
|
|
80
|
-
if (isStorageError(error)) {
|
|
81
|
-
return { data: null, error };
|
|
76
|
+
if (isCustomError(error) || isStorageError(error)) {
|
|
77
|
+
return { data: null, error: error };
|
|
82
78
|
}
|
|
83
79
|
return { data: null, error: new StorageUnknownError('upload file error', error) };
|
|
84
80
|
}
|
|
@@ -92,77 +88,6 @@ export default class StorageFileApi {
|
|
|
92
88
|
async upload(path, fileBody, fileOptions) {
|
|
93
89
|
return this.uploadOrUpdate(path, fileBody, fileOptions);
|
|
94
90
|
}
|
|
95
|
-
/**
|
|
96
|
-
* Upload a file with a token generated from `createSignedUploadUrl`.
|
|
97
|
-
* @param path The file path, including the file name. Should be of the format `folder/subfolder/filename.png`. The bucket must already exist before attempting to upload.
|
|
98
|
-
* @param token The token generated from `createSignedUploadUrl`
|
|
99
|
-
* @param fileBody The body of the file to be stored in the bucket.
|
|
100
|
-
*/
|
|
101
|
-
async uploadToSignedUrl(path, token, fileBody, fileOptions) {
|
|
102
|
-
const cleanPath = this._removeEmptyFolders(path);
|
|
103
|
-
const _path = this._getFinalPath(cleanPath);
|
|
104
|
-
const url = new URL(this.url + `/object/upload/sign/${_path}`);
|
|
105
|
-
url.searchParams.set('token', token);
|
|
106
|
-
try {
|
|
107
|
-
let body;
|
|
108
|
-
const options = Object.assign({ upsert: DEFAULT_FILE_OPTIONS.upsert }, fileOptions);
|
|
109
|
-
const headers = Object.assign({}, this.headers);
|
|
110
|
-
if (typeof Blob !== 'undefined' && fileBody instanceof Blob) {
|
|
111
|
-
body = new FormData();
|
|
112
|
-
body.append('cacheControl', options.cacheControl);
|
|
113
|
-
body.append('', fileBody);
|
|
114
|
-
}
|
|
115
|
-
else if (typeof FormData !== 'undefined' && fileBody instanceof FormData) {
|
|
116
|
-
body = fileBody;
|
|
117
|
-
body.append('cacheControl', options.cacheControl);
|
|
118
|
-
}
|
|
119
|
-
else {
|
|
120
|
-
body = fileBody;
|
|
121
|
-
headers['cache-control'] = `max-age=${options.cacheControl}`;
|
|
122
|
-
headers['content-type'] = options.contentType;
|
|
123
|
-
}
|
|
124
|
-
const data = await put(this.fetch, url.toString(), body, { headers });
|
|
125
|
-
return {
|
|
126
|
-
data: { path: cleanPath, fullPath: data.Key },
|
|
127
|
-
error: null,
|
|
128
|
-
};
|
|
129
|
-
}
|
|
130
|
-
catch (error) {
|
|
131
|
-
if (isStorageError(error)) {
|
|
132
|
-
return { data: null, error };
|
|
133
|
-
}
|
|
134
|
-
return { data: null, error: new StorageUnknownError('upload file error', error) };
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
/**
|
|
138
|
-
* Creates a signed upload URL.
|
|
139
|
-
* Signed upload URLs can be used to upload files to the bucket without further authentication.
|
|
140
|
-
* They are valid for 2 hours.
|
|
141
|
-
* @param path The file path, including the current file name. For example `folder/image.png`.
|
|
142
|
-
* @param options.upsert If set to true, allows the file to be overwritten if it already exists.
|
|
143
|
-
*/
|
|
144
|
-
async createSignedUploadUrl(path, options) {
|
|
145
|
-
try {
|
|
146
|
-
let _path = this._getFinalPath(path);
|
|
147
|
-
const headers = Object.assign({}, this.headers);
|
|
148
|
-
// if (options?.upsert) {
|
|
149
|
-
// headers['x-upsert'] = 'true';
|
|
150
|
-
// }
|
|
151
|
-
const data = await post(this.fetch, `${this.url}/object/upload/sign/${_path}`, {}, { headers });
|
|
152
|
-
const url = new URL(this.url + data.url);
|
|
153
|
-
const token = url.searchParams.get('token');
|
|
154
|
-
if (!token) {
|
|
155
|
-
throw new StorageError('No token returned by API');
|
|
156
|
-
}
|
|
157
|
-
return { data: { signedUrl: url.toString(), path, token }, error: null };
|
|
158
|
-
}
|
|
159
|
-
catch (error) {
|
|
160
|
-
if (isStorageError(error)) {
|
|
161
|
-
return { data: null, error };
|
|
162
|
-
}
|
|
163
|
-
throw error;
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
91
|
/**
|
|
167
92
|
* Replaces an existing file at the specified path with a new one.
|
|
168
93
|
*
|
|
@@ -172,54 +97,6 @@ export default class StorageFileApi {
|
|
|
172
97
|
async update(path, fileBody, fileOptions) {
|
|
173
98
|
return this.uploadOrUpdate(path, fileBody, fileOptions);
|
|
174
99
|
}
|
|
175
|
-
/**
|
|
176
|
-
* Moves an existing file to a new path in the same bucket.
|
|
177
|
-
*
|
|
178
|
-
* @param fromPath The original file path, including the current file name. For example `folder/image.png`.
|
|
179
|
-
* @param toPath The new file path, including the new file name. For example `folder/image-new.png`.
|
|
180
|
-
* @param options The destination options.
|
|
181
|
-
*/
|
|
182
|
-
async move(fromPath, toPath, options) {
|
|
183
|
-
try {
|
|
184
|
-
const data = await post(this.fetch, `${this.url}/object/move`, {
|
|
185
|
-
bucketId: this.bucketId,
|
|
186
|
-
sourceKey: fromPath,
|
|
187
|
-
destinationKey: toPath,
|
|
188
|
-
destinationBucket: options === null || options === void 0 ? void 0 : options.destinationBucket,
|
|
189
|
-
}, { headers: this.headers });
|
|
190
|
-
return { data, error: null };
|
|
191
|
-
}
|
|
192
|
-
catch (error) {
|
|
193
|
-
if (isStorageError(error)) {
|
|
194
|
-
return { data: null, error };
|
|
195
|
-
}
|
|
196
|
-
throw error;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
/**
|
|
200
|
-
* Copies an existing file to a new path in the same bucket.
|
|
201
|
-
*
|
|
202
|
-
* @param fromPath The original file path, including the current file name. For example `folder/image.png`.
|
|
203
|
-
* @param toPath The new file path, including the new file name. For example `folder/image-copy.png`.
|
|
204
|
-
* @param options The destination options.
|
|
205
|
-
*/
|
|
206
|
-
async copy(fromPath, toPath, options) {
|
|
207
|
-
try {
|
|
208
|
-
const data = await post(this.fetch, `${this.url}/object/copy`, {
|
|
209
|
-
bucketId: this.bucketId,
|
|
210
|
-
sourceKey: fromPath,
|
|
211
|
-
destinationKey: toPath,
|
|
212
|
-
destinationBucket: options === null || options === void 0 ? void 0 : options.destinationBucket,
|
|
213
|
-
}, { headers: this.headers });
|
|
214
|
-
return { data: { path: data.Key }, error: null };
|
|
215
|
-
}
|
|
216
|
-
catch (error) {
|
|
217
|
-
if (isStorageError(error)) {
|
|
218
|
-
return { data: null, error };
|
|
219
|
-
}
|
|
220
|
-
throw error;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
100
|
/**
|
|
224
101
|
* Creates a signed URL. Use a signed URL to share a file for a fixed amount of time.
|
|
225
102
|
*
|
|
@@ -231,20 +108,14 @@ export default class StorageFileApi {
|
|
|
231
108
|
async createSignedUrl(path, expiresIn) {
|
|
232
109
|
try {
|
|
233
110
|
let _path = this._getFinalPath(path);
|
|
234
|
-
const res = await post(this.fetch, `${this.url}/object/sign/${_path}`, { expires_in: expiresIn }, { headers: this.headers });
|
|
235
|
-
if (isErrorReturned(res)) {
|
|
236
|
-
return {
|
|
237
|
-
data: null,
|
|
238
|
-
error: res,
|
|
239
|
-
};
|
|
240
|
-
}
|
|
111
|
+
const res = await post(this.fetch, `${this.url}/object/sign/${_path}`, { expires_in: toValidExpiresIn(expiresIn) }, { headers: this.headers });
|
|
241
112
|
return { data: res.data, error: null };
|
|
242
113
|
}
|
|
243
114
|
catch (error) {
|
|
244
|
-
if (isStorageError(error)) {
|
|
245
|
-
return { data: null, error };
|
|
115
|
+
if (isCustomError(error) || isStorageError(error)) {
|
|
116
|
+
return { data: null, error: error };
|
|
246
117
|
}
|
|
247
|
-
|
|
118
|
+
return { data: null, error: new StorageUnknownError('create signed url error', error) };
|
|
248
119
|
}
|
|
249
120
|
}
|
|
250
121
|
/**
|
|
@@ -253,26 +124,24 @@ export default class StorageFileApi {
|
|
|
253
124
|
* @param paths The file paths to be downloaded, including the current file names. For example `['folder/image.png', 'folder2/image2.png']`.
|
|
254
125
|
* @param expiresIn The number of seconds until the signed URLs expire. For example, `60` for URLs which are valid for one minute.
|
|
255
126
|
* @param options.download triggers the file as a download if set to true. Set this parameter as the name of the file if you want to trigger the download with a different filename.
|
|
127
|
+
*
|
|
128
|
+
*
|
|
129
|
+
* success: { error: "", path: "xxxx/xxxx.xx", signedURL: "https://xxxx"}
|
|
130
|
+
* failed: { error: "xxxx", path: "xxxx/xxxx.xx", signedURL: "" }
|
|
256
131
|
*/
|
|
257
132
|
async createSignedUrls(paths, expiresIn) {
|
|
258
133
|
try {
|
|
259
|
-
const res = await post(this.fetch, `${this.url}/object/sign/${this.bucketId}`, { expires_in: expiresIn, paths }, { headers: this.headers });
|
|
260
|
-
if (isErrorReturned(res)) {
|
|
261
|
-
return {
|
|
262
|
-
data: null,
|
|
263
|
-
error: res,
|
|
264
|
-
};
|
|
265
|
-
}
|
|
134
|
+
const res = await post(this.fetch, `${this.url}/object/sign/${this.bucketId}`, { expires_in: toValidExpiresIn(expiresIn), paths }, { headers: this.headers });
|
|
266
135
|
return {
|
|
267
136
|
data: res.data,
|
|
268
137
|
error: null,
|
|
269
138
|
};
|
|
270
139
|
}
|
|
271
140
|
catch (error) {
|
|
272
|
-
if (isStorageError(error)) {
|
|
273
|
-
return { data: null, error };
|
|
141
|
+
if (isCustomError(error) || isStorageError(error)) {
|
|
142
|
+
return { data: null, error: error };
|
|
274
143
|
}
|
|
275
|
-
|
|
144
|
+
return { data: null, error: new StorageUnknownError('create signed urls error', error) };
|
|
276
145
|
}
|
|
277
146
|
}
|
|
278
147
|
/**
|
|
@@ -300,84 +169,12 @@ export default class StorageFileApi {
|
|
|
300
169
|
return { data: resBody, error: null };
|
|
301
170
|
}
|
|
302
171
|
catch (error) {
|
|
303
|
-
if (isStorageError(error)) {
|
|
304
|
-
return { data: null, error };
|
|
172
|
+
if (isCustomError(error) || isStorageError(error)) {
|
|
173
|
+
return { data: null, error: error };
|
|
305
174
|
}
|
|
306
175
|
return { data: null, error: new StorageUnknownError('download file error', error) };
|
|
307
176
|
}
|
|
308
177
|
}
|
|
309
|
-
/**
|
|
310
|
-
* Retrieves the details of an existing file.
|
|
311
|
-
* @param path
|
|
312
|
-
*/
|
|
313
|
-
async info(path) {
|
|
314
|
-
const _path = this._getFinalPath(path);
|
|
315
|
-
try {
|
|
316
|
-
const data = await get(this.fetch, `${this.url}/object/info/${_path}`, {
|
|
317
|
-
headers: this.headers,
|
|
318
|
-
});
|
|
319
|
-
return { data: recursiveToCamel(data), error: null };
|
|
320
|
-
}
|
|
321
|
-
catch (error) {
|
|
322
|
-
if (isStorageError(error)) {
|
|
323
|
-
return { data: null, error };
|
|
324
|
-
}
|
|
325
|
-
throw error;
|
|
326
|
-
}
|
|
327
|
-
}
|
|
328
|
-
/**
|
|
329
|
-
* Checks the existence of a file.
|
|
330
|
-
* @param path
|
|
331
|
-
*/
|
|
332
|
-
async exists(path) {
|
|
333
|
-
const _path = this._getFinalPath(path);
|
|
334
|
-
try {
|
|
335
|
-
await head(this.fetch, `${this.url}/object/${_path}`, {
|
|
336
|
-
headers: this.headers,
|
|
337
|
-
});
|
|
338
|
-
return { data: true, error: null };
|
|
339
|
-
}
|
|
340
|
-
catch (error) {
|
|
341
|
-
if (isStorageError(error) && error instanceof StorageUnknownError) {
|
|
342
|
-
const originalError = error.originalError;
|
|
343
|
-
if ([400, 404].includes(originalError === null || originalError === void 0 ? void 0 : originalError.status)) {
|
|
344
|
-
return { data: false, error };
|
|
345
|
-
}
|
|
346
|
-
}
|
|
347
|
-
throw error;
|
|
348
|
-
}
|
|
349
|
-
}
|
|
350
|
-
/**
|
|
351
|
-
* A simple convenience function to get the URL for an asset in a public bucket. If you do not want to use this function, you can construct the public URL by concatenating the bucket URL with the path to the asset.
|
|
352
|
-
* This function does not verify if the bucket is public. If a public URL is created for a bucket which is not public, you will not be able to download the asset.
|
|
353
|
-
*
|
|
354
|
-
* @param path The path and name of the file to generate the public URL for. For example `folder/image.png`.
|
|
355
|
-
* @param options.download Triggers the file as a download if set to true. Set this parameter as the name of the file if you want to trigger the download with a different filename.
|
|
356
|
-
* @param options.transform Transform the asset before serving it to the client.
|
|
357
|
-
*/
|
|
358
|
-
getPublicUrl(path, options) {
|
|
359
|
-
const _path = this._getFinalPath(path);
|
|
360
|
-
const _queryString = [];
|
|
361
|
-
const downloadQueryParam = (options === null || options === void 0 ? void 0 : options.download)
|
|
362
|
-
? `download=${options.download === true ? '' : options.download}`
|
|
363
|
-
: '';
|
|
364
|
-
if (downloadQueryParam !== '') {
|
|
365
|
-
_queryString.push(downloadQueryParam);
|
|
366
|
-
}
|
|
367
|
-
const wantsTransformation = typeof (options === null || options === void 0 ? void 0 : options.transform) !== 'undefined';
|
|
368
|
-
const renderPath = wantsTransformation ? 'render/image' : 'object';
|
|
369
|
-
const transformationQuery = this.transformOptsToQueryString((options === null || options === void 0 ? void 0 : options.transform) || {});
|
|
370
|
-
if (transformationQuery !== '') {
|
|
371
|
-
_queryString.push(transformationQuery);
|
|
372
|
-
}
|
|
373
|
-
let queryString = _queryString.join('&');
|
|
374
|
-
if (queryString !== '') {
|
|
375
|
-
queryString = `?${queryString}`;
|
|
376
|
-
}
|
|
377
|
-
return {
|
|
378
|
-
data: { publicUrl: encodeURI(`${this.url}/${renderPath}/public/${_path}${queryString}`) },
|
|
379
|
-
};
|
|
380
|
-
}
|
|
381
178
|
/**
|
|
382
179
|
* Deletes files within the same bucket
|
|
383
180
|
*
|
|
@@ -389,8 +186,8 @@ export default class StorageFileApi {
|
|
|
389
186
|
return { data: res.data, error: null };
|
|
390
187
|
}
|
|
391
188
|
catch (error) {
|
|
392
|
-
if (isStorageError(error)) {
|
|
393
|
-
return { data: null, error };
|
|
189
|
+
if (isCustomError(error) || isStorageError(error)) {
|
|
190
|
+
return { data: null, error: error };
|
|
394
191
|
}
|
|
395
192
|
return { data: null, error: new StorageUnknownError('remove file error', error) };
|
|
396
193
|
}
|
|
@@ -409,10 +206,10 @@ export default class StorageFileApi {
|
|
|
409
206
|
return { data: res.data, error: null };
|
|
410
207
|
}
|
|
411
208
|
catch (error) {
|
|
412
|
-
if (isStorageError(error)) {
|
|
413
|
-
return { data: null, error };
|
|
209
|
+
if (isCustomError(error) || isStorageError(error)) {
|
|
210
|
+
return { data: null, error: error };
|
|
414
211
|
}
|
|
415
|
-
|
|
212
|
+
return { data: null, error: new StorageUnknownError('list file error', error) };
|
|
416
213
|
}
|
|
417
214
|
}
|
|
418
215
|
encodeMetadata(metadata) {
|
|
@@ -430,24 +227,5 @@ export default class StorageFileApi {
|
|
|
430
227
|
_removeEmptyFolders(path) {
|
|
431
228
|
return path.replace(/^\/|\/$/g, '').replace(/\/+/g, '/');
|
|
432
229
|
}
|
|
433
|
-
transformOptsToQueryString(transform) {
|
|
434
|
-
const params = [];
|
|
435
|
-
if (transform.width) {
|
|
436
|
-
params.push(`width=${transform.width}`);
|
|
437
|
-
}
|
|
438
|
-
if (transform.height) {
|
|
439
|
-
params.push(`height=${transform.height}`);
|
|
440
|
-
}
|
|
441
|
-
if (transform.resize) {
|
|
442
|
-
params.push(`resize=${transform.resize}`);
|
|
443
|
-
}
|
|
444
|
-
if (transform.format) {
|
|
445
|
-
params.push(`format=${transform.format}`);
|
|
446
|
-
}
|
|
447
|
-
if (transform.quality) {
|
|
448
|
-
params.push(`quality=${transform.quality}`);
|
|
449
|
-
}
|
|
450
|
-
return params.join('&');
|
|
451
|
-
}
|
|
452
230
|
}
|
|
453
231
|
//# sourceMappingURL=StorageFileApi.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StorageFileApi.js","sourceRoot":"","sources":["../../../src/packages/StorageFileApi.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"StorageFileApi.js","sourceRoot":"","sources":["../../../src/packages/StorageFileApi.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@data-loom/storage-js",
|
|
3
|
-
"version": "0.2.1-alpha.
|
|
3
|
+
"version": "0.2.1-alpha.4",
|
|
4
4
|
"description": "Dataloom service",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"service",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"test:types:watch": "run-s build && tsd --files 'test/**/*.test-d.ts' --watch"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@data-loom/node-fetch": "0.2.1-alpha.
|
|
36
|
+
"@data-loom/node-fetch": "0.2.1-alpha.4"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/jest": "^26.0.13",
|