@daytonaio/sdk 0.175.0 → 0.178.0
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/cjs/CodeInterpreter.d.ts +3 -2
- package/cjs/CodeInterpreter.js.map +1 -1
- package/cjs/ComputerUse.d.ts +104 -2
- package/cjs/ComputerUse.js +851 -763
- package/cjs/ComputerUse.js.map +1 -1
- package/cjs/Daytona.d.ts +4 -3
- package/cjs/Daytona.js +429 -443
- package/cjs/Daytona.js.map +1 -1
- package/cjs/FileSystem.d.ts +2 -2
- package/cjs/FileSystem.js +491 -521
- package/cjs/FileSystem.js.map +1 -1
- package/cjs/Git.d.ts +2 -1
- package/cjs/Git.js +287 -310
- package/cjs/Git.js.map +1 -1
- package/cjs/LspServer.d.ts +2 -1
- package/cjs/LspServer.js +209 -226
- package/cjs/LspServer.js.map +1 -1
- package/cjs/ObjectStorage.js +170 -166
- package/cjs/ObjectStorage.js.map +1 -1
- package/cjs/Process.d.ts +4 -3
- package/cjs/Process.js +562 -600
- package/cjs/Process.js.map +1 -1
- package/cjs/PtyHandle.d.ts +2 -2
- package/cjs/PtyHandle.js +327 -338
- package/cjs/PtyHandle.js.map +1 -1
- package/cjs/Sandbox.d.ts +4 -3
- package/cjs/Sandbox.js +756 -821
- package/cjs/Sandbox.js.map +1 -1
- package/cjs/Snapshot.d.ts +3 -2
- package/cjs/Snapshot.js +203 -213
- package/cjs/Snapshot.js.map +1 -1
- package/cjs/Volume.d.ts +2 -1
- package/cjs/Volume.js +90 -92
- package/cjs/Volume.js.map +1 -1
- package/cjs/errors/DaytonaError.d.ts +2 -1
- package/cjs/errors/DaytonaError.js.map +1 -1
- package/cjs/index.d.ts +2 -2
- package/cjs/index.js +2 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/CodeInterpreter.d.ts +1 -1
- package/cjs/utils/Binary.js +14 -2
- package/cjs/utils/Binary.js.map +1 -1
- package/cjs/utils/otel.decorator.d.ts +7 -8
- package/cjs/utils/otel.decorator.js +24 -30
- package/cjs/utils/otel.decorator.js.map +1 -1
- package/esm/CodeInterpreter.d.ts +3 -2
- package/esm/CodeInterpreter.js.map +1 -1
- package/esm/ComputerUse.d.ts +104 -2
- package/esm/ComputerUse.js +857 -763
- package/esm/ComputerUse.js.map +1 -1
- package/esm/Daytona.d.ts +4 -3
- package/esm/Daytona.js +431 -444
- package/esm/Daytona.js.map +1 -1
- package/esm/FileSystem.d.ts +2 -2
- package/esm/FileSystem.js +493 -522
- package/esm/FileSystem.js.map +1 -1
- package/esm/Git.d.ts +2 -1
- package/esm/Git.js +289 -311
- package/esm/Git.js.map +1 -1
- package/esm/LspServer.d.ts +2 -1
- package/esm/LspServer.js +211 -227
- package/esm/LspServer.js.map +1 -1
- package/esm/ObjectStorage.js +172 -167
- package/esm/ObjectStorage.js.map +1 -1
- package/esm/Process.d.ts +4 -3
- package/esm/Process.js +564 -601
- package/esm/Process.js.map +1 -1
- package/esm/PtyHandle.d.ts +2 -2
- package/esm/PtyHandle.js +329 -339
- package/esm/PtyHandle.js.map +1 -1
- package/esm/Sandbox.d.ts +4 -3
- package/esm/Sandbox.js +759 -823
- package/esm/Sandbox.js.map +1 -1
- package/esm/Snapshot.d.ts +3 -2
- package/esm/Snapshot.js +206 -215
- package/esm/Snapshot.js.map +1 -1
- package/esm/Volume.d.ts +2 -1
- package/esm/Volume.js +92 -93
- package/esm/Volume.js.map +1 -1
- package/esm/errors/DaytonaError.d.ts +2 -1
- package/esm/errors/DaytonaError.js.map +1 -1
- package/esm/index.d.ts +2 -2
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/esm/types/CodeInterpreter.d.ts +1 -1
- package/esm/utils/Binary.js +14 -2
- package/esm/utils/Binary.js.map +1 -1
- package/esm/utils/otel.decorator.d.ts +7 -8
- package/esm/utils/otel.decorator.js +26 -32
- package/esm/utils/otel.decorator.js.map +1 -1
- package/package.json +3 -3
package/esm/FileSystem.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright 2025 Daytona Platforms Inc.
|
|
3
3
|
* SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
*/
|
|
5
|
-
import {
|
|
5
|
+
import { __esDecorate, __runInitializers } from "tslib";
|
|
6
6
|
import * as pathe from 'pathe';
|
|
7
7
|
import axios from 'axios';
|
|
8
8
|
import { dynamicImport } from './utils/Import.js';
|
|
@@ -21,551 +21,522 @@ function createFileDownloadError(error, errorDetails) {
|
|
|
21
21
|
*
|
|
22
22
|
* @class
|
|
23
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
|
-
throw createFileDownloadError(response[0].error, response[0].errorDetails);
|
|
24
|
+
let FileSystem = (() => {
|
|
25
|
+
let _instanceExtraInitializers = [];
|
|
26
|
+
let _createFolder_decorators;
|
|
27
|
+
let _deleteFile_decorators;
|
|
28
|
+
let _downloadFile_decorators;
|
|
29
|
+
let _downloadFileStream_decorators;
|
|
30
|
+
let _downloadFiles_decorators;
|
|
31
|
+
let _findFiles_decorators;
|
|
32
|
+
let _getFileDetails_decorators;
|
|
33
|
+
let _listFiles_decorators;
|
|
34
|
+
let _moveFiles_decorators;
|
|
35
|
+
let _replaceInFiles_decorators;
|
|
36
|
+
let _searchFiles_decorators;
|
|
37
|
+
let _setFilePermissions_decorators;
|
|
38
|
+
let _uploadFile_decorators;
|
|
39
|
+
let _uploadFileStream_decorators;
|
|
40
|
+
let _uploadFiles_decorators;
|
|
41
|
+
return class FileSystem {
|
|
42
|
+
static {
|
|
43
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
|
|
44
|
+
_createFolder_decorators = [WithInstrumentation()];
|
|
45
|
+
_deleteFile_decorators = [WithInstrumentation()];
|
|
46
|
+
_downloadFile_decorators = [WithInstrumentation()];
|
|
47
|
+
_downloadFileStream_decorators = [WithInstrumentation()];
|
|
48
|
+
_downloadFiles_decorators = [WithInstrumentation()];
|
|
49
|
+
_findFiles_decorators = [WithInstrumentation()];
|
|
50
|
+
_getFileDetails_decorators = [WithInstrumentation()];
|
|
51
|
+
_listFiles_decorators = [WithInstrumentation()];
|
|
52
|
+
_moveFiles_decorators = [WithInstrumentation()];
|
|
53
|
+
_replaceInFiles_decorators = [WithInstrumentation()];
|
|
54
|
+
_searchFiles_decorators = [WithInstrumentation()];
|
|
55
|
+
_setFilePermissions_decorators = [WithInstrumentation()];
|
|
56
|
+
_uploadFile_decorators = [WithInstrumentation()];
|
|
57
|
+
_uploadFileStream_decorators = [WithInstrumentation()];
|
|
58
|
+
_uploadFiles_decorators = [WithInstrumentation()];
|
|
59
|
+
__esDecorate(this, null, _createFolder_decorators, { kind: "method", name: "createFolder", static: false, private: false, access: { has: obj => "createFolder" in obj, get: obj => obj.createFolder }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
60
|
+
__esDecorate(this, null, _deleteFile_decorators, { kind: "method", name: "deleteFile", static: false, private: false, access: { has: obj => "deleteFile" in obj, get: obj => obj.deleteFile }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
61
|
+
__esDecorate(this, null, _downloadFile_decorators, { kind: "method", name: "downloadFile", static: false, private: false, access: { has: obj => "downloadFile" in obj, get: obj => obj.downloadFile }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
62
|
+
__esDecorate(this, null, _downloadFileStream_decorators, { kind: "method", name: "downloadFileStream", static: false, private: false, access: { has: obj => "downloadFileStream" in obj, get: obj => obj.downloadFileStream }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
63
|
+
__esDecorate(this, null, _downloadFiles_decorators, { kind: "method", name: "downloadFiles", static: false, private: false, access: { has: obj => "downloadFiles" in obj, get: obj => obj.downloadFiles }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
64
|
+
__esDecorate(this, null, _findFiles_decorators, { kind: "method", name: "findFiles", static: false, private: false, access: { has: obj => "findFiles" in obj, get: obj => obj.findFiles }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
65
|
+
__esDecorate(this, null, _getFileDetails_decorators, { kind: "method", name: "getFileDetails", static: false, private: false, access: { has: obj => "getFileDetails" in obj, get: obj => obj.getFileDetails }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
66
|
+
__esDecorate(this, null, _listFiles_decorators, { kind: "method", name: "listFiles", static: false, private: false, access: { has: obj => "listFiles" in obj, get: obj => obj.listFiles }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
67
|
+
__esDecorate(this, null, _moveFiles_decorators, { kind: "method", name: "moveFiles", static: false, private: false, access: { has: obj => "moveFiles" in obj, get: obj => obj.moveFiles }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
68
|
+
__esDecorate(this, null, _replaceInFiles_decorators, { kind: "method", name: "replaceInFiles", static: false, private: false, access: { has: obj => "replaceInFiles" in obj, get: obj => obj.replaceInFiles }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
69
|
+
__esDecorate(this, null, _searchFiles_decorators, { kind: "method", name: "searchFiles", static: false, private: false, access: { has: obj => "searchFiles" in obj, get: obj => obj.searchFiles }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
70
|
+
__esDecorate(this, null, _setFilePermissions_decorators, { kind: "method", name: "setFilePermissions", static: false, private: false, access: { has: obj => "setFilePermissions" in obj, get: obj => obj.setFilePermissions }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
71
|
+
__esDecorate(this, null, _uploadFile_decorators, { kind: "method", name: "uploadFile", static: false, private: false, access: { has: obj => "uploadFile" in obj, get: obj => obj.uploadFile }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
72
|
+
__esDecorate(this, null, _uploadFileStream_decorators, { kind: "method", name: "uploadFileStream", static: false, private: false, access: { has: obj => "uploadFileStream" in obj, get: obj => obj.uploadFileStream }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
73
|
+
__esDecorate(this, null, _uploadFiles_decorators, { kind: "method", name: "uploadFiles", static: false, private: false, access: { has: obj => "uploadFiles" in obj, get: obj => obj.uploadFiles }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
74
|
+
if (_metadata) Object.defineProperty(this, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
76
75
|
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
if (isNonStreamingRuntime) {
|
|
83
|
-
throw new DaytonaError('downloadFileStream is not supported in browser or serverless environments. Use downloadFile instead.');
|
|
76
|
+
clientConfig = __runInitializers(this, _instanceExtraInitializers);
|
|
77
|
+
apiClient;
|
|
78
|
+
constructor(clientConfig, apiClient) {
|
|
79
|
+
this.clientConfig = clientConfig;
|
|
80
|
+
this.apiClient = apiClient;
|
|
84
81
|
}
|
|
85
|
-
|
|
86
|
-
|
|
82
|
+
/**
|
|
83
|
+
* Create a new directory in the Sandbox with specified permissions.
|
|
84
|
+
*
|
|
85
|
+
* @param {string} path - Path where the directory should be created. Relative paths are resolved based on the sandbox working directory.
|
|
86
|
+
* @param {string} mode - Directory permissions in octal format (e.g. "755")
|
|
87
|
+
* @returns {Promise<void>}
|
|
88
|
+
*
|
|
89
|
+
* @example
|
|
90
|
+
* // Create a directory with standard permissions
|
|
91
|
+
* await fs.createFolder('app/data', '755');
|
|
92
|
+
*/
|
|
93
|
+
async createFolder(path, mode) {
|
|
94
|
+
const response = await this.apiClient.createFolder(path, mode);
|
|
95
|
+
return response.data;
|
|
87
96
|
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
97
|
+
/**
|
|
98
|
+
* Deletes a file or directory from the Sandbox.
|
|
99
|
+
*
|
|
100
|
+
* @param {string} path - Path to the file or directory to delete. Relative paths are resolved based on the sandbox working directory.
|
|
101
|
+
* @param {boolean} [recursive] - If the file is a directory, this must be true to delete it.
|
|
102
|
+
* @returns {Promise<void>}
|
|
103
|
+
*
|
|
104
|
+
* @example
|
|
105
|
+
* // Delete a file
|
|
106
|
+
* await fs.deleteFile('app/temp.log');
|
|
107
|
+
*/
|
|
108
|
+
async deleteFile(path, recursive) {
|
|
109
|
+
const response = await this.apiClient.deleteFile(path, recursive);
|
|
110
|
+
return response.data;
|
|
100
111
|
}
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
112
|
+
async downloadFile(src, dst, timeout = 30 * 60) {
|
|
113
|
+
const remotePath = src;
|
|
114
|
+
if (typeof dst !== 'string') {
|
|
115
|
+
if (dst) {
|
|
116
|
+
timeout = dst;
|
|
117
|
+
}
|
|
118
|
+
const response = await this.downloadFiles([{ source: remotePath }], timeout);
|
|
119
|
+
if (response[0].error) {
|
|
120
|
+
throw createFileDownloadError(response[0].error, response[0].errorDetails);
|
|
121
|
+
}
|
|
122
|
+
return response[0].result;
|
|
123
|
+
}
|
|
124
|
+
const response = await this.downloadFiles([{ source: remotePath, destination: dst }], timeout);
|
|
125
|
+
if (response[0].error) {
|
|
126
|
+
throw createFileDownloadError(response[0].error, response[0].errorDetails);
|
|
104
127
|
}
|
|
105
|
-
throw err;
|
|
106
128
|
}
|
|
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
|
-
|
|
129
|
+
async downloadFileStream(remotePath, timeoutOrOptions) {
|
|
130
|
+
const options = typeof timeoutOrOptions === 'number' ? { timeout: timeoutOrOptions } : (timeoutOrOptions ?? {});
|
|
131
|
+
const timeout = options.timeout ?? 30 * 60;
|
|
132
|
+
const isNonStreamingRuntime = RUNTIME === Runtime.BROWSER || RUNTIME === Runtime.SERVERLESS;
|
|
133
|
+
if (isNonStreamingRuntime) {
|
|
134
|
+
throw new DaytonaError('downloadFileStream is not supported in browser or serverless environments. Use downloadFile instead.');
|
|
135
|
+
}
|
|
136
|
+
if (options.signal?.aborted) {
|
|
137
|
+
throw new DaytonaError('Download cancelled');
|
|
138
|
+
}
|
|
139
|
+
const toDownloadCancelledError = () => new DaytonaError('Download cancelled');
|
|
140
|
+
const isCanceledError = (err) => {
|
|
141
|
+
const error = err;
|
|
142
|
+
return Boolean(axios.isCancel?.(err) || error?.name === 'CanceledError' || error?.code === 'ERR_CANCELED');
|
|
143
|
+
};
|
|
144
|
+
let response;
|
|
145
|
+
try {
|
|
146
|
+
response = await this.apiClient.downloadFiles({ paths: [remotePath] }, {
|
|
147
|
+
responseType: 'stream',
|
|
148
|
+
timeout: timeout * 1000,
|
|
149
|
+
signal: options.signal,
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
catch (err) {
|
|
153
|
+
if (options.signal?.aborted || isCanceledError(err)) {
|
|
154
|
+
throw toDownloadCancelledError();
|
|
132
155
|
}
|
|
133
|
-
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
156
|
+
throw err;
|
|
157
|
+
}
|
|
158
|
+
const responseStream = normalizeResponseStream(response.data);
|
|
159
|
+
const metadataMap = new Map();
|
|
160
|
+
metadataMap.set(remotePath, {});
|
|
161
|
+
return new Promise((resolve, reject) => {
|
|
162
|
+
let resolvedStream = null;
|
|
163
|
+
processDownloadFilesResponseWithBusboy(responseStream, response.headers, metadataMap, (_source, fileStream, totalBytes) => {
|
|
164
|
+
if (options.onProgress) {
|
|
165
|
+
const { Transform } = require('stream');
|
|
166
|
+
let bytesReceived = 0;
|
|
167
|
+
const progress = new Transform({
|
|
168
|
+
transform(chunk, _encoding, callback) {
|
|
169
|
+
bytesReceived += chunk.length;
|
|
170
|
+
options.onProgress({ bytesReceived, totalBytes });
|
|
171
|
+
callback(null, chunk);
|
|
172
|
+
},
|
|
173
|
+
});
|
|
174
|
+
fileStream.pipe(progress);
|
|
175
|
+
// busboy's teardown can emit 'error' on the file stream after 'end',
|
|
176
|
+
// even when every byte was delivered — ignore those late errors.
|
|
177
|
+
let fileStreamEnded = false;
|
|
178
|
+
fileStream.once('end', () => {
|
|
179
|
+
fileStreamEnded = true;
|
|
180
|
+
});
|
|
181
|
+
fileStream.on('error', (err) => {
|
|
182
|
+
if (fileStreamEnded)
|
|
183
|
+
return;
|
|
184
|
+
if (!progress.destroyed)
|
|
185
|
+
progress.destroy(err);
|
|
186
|
+
});
|
|
187
|
+
resolvedStream = progress;
|
|
140
188
|
}
|
|
141
189
|
else {
|
|
142
|
-
|
|
190
|
+
resolvedStream = fileStream;
|
|
143
191
|
}
|
|
192
|
+
resolve(resolvedStream);
|
|
193
|
+
})
|
|
194
|
+
.then(() => {
|
|
195
|
+
if (!resolvedStream) {
|
|
196
|
+
const metadata = metadataMap.get(remotePath);
|
|
197
|
+
if (metadata?.error) {
|
|
198
|
+
reject(createFileDownloadError(metadata.error, metadata.errorDetails));
|
|
199
|
+
}
|
|
200
|
+
else {
|
|
201
|
+
reject(new DaytonaError(`No file data received for: ${remotePath}`));
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
})
|
|
205
|
+
.catch((err) => {
|
|
206
|
+
const normalizedError = options.signal?.aborted || isCanceledError(err) ? toDownloadCancelledError() : err;
|
|
207
|
+
if (!resolvedStream) {
|
|
208
|
+
reject(normalizedError);
|
|
209
|
+
return;
|
|
210
|
+
}
|
|
211
|
+
const stream = resolvedStream;
|
|
212
|
+
if (stream.destroyed || stream.readableEnded) {
|
|
213
|
+
return;
|
|
214
|
+
}
|
|
215
|
+
stream.destroy(normalizedError instanceof Error ? normalizedError : new Error(String(normalizedError)));
|
|
216
|
+
});
|
|
217
|
+
});
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* Downloads multiple files from the Sandbox. If the files already exist locally, they will be overwritten.
|
|
221
|
+
*
|
|
222
|
+
* @param {FileDownloadRequest[]} files - Array of file download requests.
|
|
223
|
+
* @param {number} [timeoutSec] - Timeout for the download operation in seconds. 0 means no timeout.
|
|
224
|
+
* Default is 30 minutes.
|
|
225
|
+
* @returns {Promise<FileDownloadResponse[]>} Array of download results.
|
|
226
|
+
*
|
|
227
|
+
* @throws {DaytonaError} If the request itself fails (network issues, invalid request/response, etc.). Individual
|
|
228
|
+
* file download errors are returned in `FileDownloadResponse.error`. When the daemon provides structured
|
|
229
|
+
* per-file metadata, it is also available in `FileDownloadResponse.errorDetails`.
|
|
230
|
+
*
|
|
231
|
+
* @example
|
|
232
|
+
* // Download multiple files
|
|
233
|
+
* const results = await fs.downloadFiles([
|
|
234
|
+
* { source: 'tmp/data.json' },
|
|
235
|
+
* { source: 'tmp/config.json', destination: 'local_config.json' }
|
|
236
|
+
* ]);
|
|
237
|
+
* results.forEach(result => {
|
|
238
|
+
* if (result.error) {
|
|
239
|
+
* console.error(`Error downloading ${result.source}: ${result.error}`);
|
|
240
|
+
* } else if (result.result) {
|
|
241
|
+
* console.log(`Downloaded ${result.source} to ${result.result}`);
|
|
242
|
+
* }
|
|
243
|
+
* });
|
|
244
|
+
*/
|
|
245
|
+
async downloadFiles(files, timeoutSec = 30 * 60) {
|
|
246
|
+
if (files.length === 0)
|
|
247
|
+
return [];
|
|
248
|
+
const isNonStreamingRuntime = RUNTIME === Runtime.BROWSER || RUNTIME === Runtime.SERVERLESS;
|
|
249
|
+
// Prepare destinations and metadata
|
|
250
|
+
const metadataMap = new Map();
|
|
251
|
+
for (const f of files) {
|
|
252
|
+
metadataMap.set(f.source, { destination: f.destination });
|
|
253
|
+
if (f.destination) {
|
|
254
|
+
const fs = await dynamicImport('fs', 'Downloading files to local files is not supported: ');
|
|
255
|
+
await fs.promises.mkdir(pathe.dirname(f.destination), { recursive: true });
|
|
144
256
|
}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
reject(normalizedError);
|
|
150
|
-
return;
|
|
151
|
-
}
|
|
152
|
-
const stream = resolvedStream;
|
|
153
|
-
if (stream.destroyed || stream.readableEnded) {
|
|
154
|
-
return;
|
|
155
|
-
}
|
|
156
|
-
stream.destroy(normalizedError instanceof Error ? normalizedError : new Error(String(normalizedError)));
|
|
257
|
+
}
|
|
258
|
+
const response = await this.apiClient.downloadFiles({ paths: files.map((f) => f.source) }, {
|
|
259
|
+
responseType: isNonStreamingRuntime ? 'arraybuffer' : 'stream',
|
|
260
|
+
timeout: timeoutSec * 1000,
|
|
157
261
|
});
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
* Default is 30 minutes.
|
|
166
|
-
* @returns {Promise<FileDownloadResponse[]>} Array of download results.
|
|
167
|
-
*
|
|
168
|
-
* @throws {DaytonaError} If the request itself fails (network issues, invalid request/response, etc.). Individual
|
|
169
|
-
* file download errors are returned in `FileDownloadResponse.error`. When the daemon provides structured
|
|
170
|
-
* per-file metadata, it is also available in `FileDownloadResponse.errorDetails`.
|
|
171
|
-
*
|
|
172
|
-
* @example
|
|
173
|
-
* // Download multiple files
|
|
174
|
-
* const results = await fs.downloadFiles([
|
|
175
|
-
* { source: 'tmp/data.json' },
|
|
176
|
-
* { source: 'tmp/config.json', destination: 'local_config.json' }
|
|
177
|
-
* ]);
|
|
178
|
-
* results.forEach(result => {
|
|
179
|
-
* if (result.error) {
|
|
180
|
-
* console.error(`Error downloading ${result.source}: ${result.error}`);
|
|
181
|
-
* } else if (result.result) {
|
|
182
|
-
* console.log(`Downloaded ${result.source} to ${result.result}`);
|
|
183
|
-
* }
|
|
184
|
-
* });
|
|
185
|
-
*/
|
|
186
|
-
async downloadFiles(files, timeoutSec = 30 * 60) {
|
|
187
|
-
if (files.length === 0)
|
|
188
|
-
return [];
|
|
189
|
-
const isNonStreamingRuntime = RUNTIME === Runtime.BROWSER || RUNTIME === Runtime.SERVERLESS;
|
|
190
|
-
// Prepare destinations and metadata
|
|
191
|
-
const metadataMap = new Map();
|
|
192
|
-
for (const f of files) {
|
|
193
|
-
metadataMap.set(f.source, { destination: f.destination });
|
|
194
|
-
if (f.destination) {
|
|
195
|
-
const fs = await dynamicImport('fs', 'Downloading files to local files is not supported: ');
|
|
196
|
-
await fs.promises.mkdir(pathe.dirname(f.destination), { recursive: true });
|
|
262
|
+
const stream = normalizeResponseStream(response.data);
|
|
263
|
+
// Node.js path: use busboy for efficient streaming
|
|
264
|
+
if (isNonStreamingRuntime) {
|
|
265
|
+
await processDownloadFilesResponseWithBuffered(stream, response.headers, metadataMap);
|
|
266
|
+
}
|
|
267
|
+
else {
|
|
268
|
+
await processDownloadFilesResponseWithBusboy(stream, response.headers, metadataMap);
|
|
197
269
|
}
|
|
270
|
+
return files.map((f) => {
|
|
271
|
+
const metadata = metadataMap.get(f.source);
|
|
272
|
+
const error = metadata?.error || (!metadata?.result ? 'No data received for this file' : undefined);
|
|
273
|
+
return {
|
|
274
|
+
source: f.source,
|
|
275
|
+
result: error ? undefined : metadata.result,
|
|
276
|
+
error,
|
|
277
|
+
errorDetails: error ? metadata?.errorDetails : undefined,
|
|
278
|
+
};
|
|
279
|
+
});
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Searches for text patterns within files in the Sandbox.
|
|
283
|
+
*
|
|
284
|
+
* @param {string} path - Directory to search in. Relative paths are resolved based on the sandbox working directory.
|
|
285
|
+
* @param {string} pattern - Search pattern
|
|
286
|
+
* @returns {Promise<Array<Match>>} Array of matches with file and line information
|
|
287
|
+
*
|
|
288
|
+
* @example
|
|
289
|
+
* // Find all TODO comments in TypeScript files
|
|
290
|
+
* const matches = await fs.findFiles('app/src', 'TODO:');
|
|
291
|
+
* matches.forEach(match => {
|
|
292
|
+
* console.log(`${match.file}:${match.line}: ${match.content}`);
|
|
293
|
+
* });
|
|
294
|
+
*/
|
|
295
|
+
async findFiles(path, pattern) {
|
|
296
|
+
const response = await this.apiClient.findInFiles(path, pattern);
|
|
297
|
+
return response.data;
|
|
198
298
|
}
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
299
|
+
/**
|
|
300
|
+
* Retrieves detailed information about a file or directory.
|
|
301
|
+
*
|
|
302
|
+
* @param {string} path - Path to the file or directory. Relative paths are resolved based on the sandbox working directory.
|
|
303
|
+
* @returns {Promise<FileInfo>} Detailed file information including size, permissions, modification time
|
|
304
|
+
*
|
|
305
|
+
* @example
|
|
306
|
+
* // Get file details
|
|
307
|
+
* const info = await fs.getFileDetails('app/config.json');
|
|
308
|
+
* console.log(`Size: ${info.size}, Modified: ${info.modTime}`);
|
|
309
|
+
*/
|
|
310
|
+
async getFileDetails(path) {
|
|
311
|
+
const response = await this.apiClient.getFileInfo(path);
|
|
312
|
+
return response.data;
|
|
207
313
|
}
|
|
208
|
-
|
|
209
|
-
|
|
314
|
+
/**
|
|
315
|
+
* Lists contents of a directory in the Sandbox.
|
|
316
|
+
*
|
|
317
|
+
* @param {string} path - Directory path to list. Relative paths are resolved based on the sandbox working directory.
|
|
318
|
+
* @returns {Promise<FileInfo[]>} Array of file and directory information
|
|
319
|
+
*
|
|
320
|
+
* @example
|
|
321
|
+
* // List directory contents
|
|
322
|
+
* const files = await fs.listFiles('app/src');
|
|
323
|
+
* files.forEach(file => {
|
|
324
|
+
* console.log(`${file.name} (${file.size} bytes)`);
|
|
325
|
+
* });
|
|
326
|
+
*/
|
|
327
|
+
async listFiles(path) {
|
|
328
|
+
const response = await this.apiClient.listFiles(path);
|
|
329
|
+
return response.data;
|
|
210
330
|
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
331
|
+
/**
|
|
332
|
+
* Moves or renames a file or directory.
|
|
333
|
+
*
|
|
334
|
+
* @param {string} source - Source path. Relative paths are resolved based on the sandbox working directory.
|
|
335
|
+
* @param {string} destination - Destination path. Relative paths are resolved based on the sandbox working directory.
|
|
336
|
+
* @returns {Promise<void>}
|
|
337
|
+
*
|
|
338
|
+
* @example
|
|
339
|
+
* // Move a file to a new location
|
|
340
|
+
* await fs.moveFiles('app/temp/data.json', 'app/data/data.json');
|
|
341
|
+
*/
|
|
342
|
+
async moveFiles(source, destination) {
|
|
343
|
+
const response = await this.apiClient.moveFile(source, destination);
|
|
344
|
+
return response.data;
|
|
345
|
+
}
|
|
346
|
+
/**
|
|
347
|
+
* Replaces text content in multiple files.
|
|
348
|
+
*
|
|
349
|
+
* @param {string[]} files - Array of file paths to process. Relative paths are resolved based on the sandbox working directory.
|
|
350
|
+
* @param {string} pattern - Pattern to replace
|
|
351
|
+
* @param {string} newValue - Replacement text
|
|
352
|
+
* @returns {Promise<Array<ReplaceResult>>} Results of the replace operation for each file
|
|
353
|
+
*
|
|
354
|
+
* @example
|
|
355
|
+
* // Update version number across multiple files
|
|
356
|
+
* const results = await fs.replaceInFiles(
|
|
357
|
+
* ['app/package.json', 'app/version.ts'],
|
|
358
|
+
* '"version": "1.0.0"',
|
|
359
|
+
* '"version": "1.1.0"'
|
|
360
|
+
* );
|
|
361
|
+
*/
|
|
362
|
+
async replaceInFiles(files, pattern, newValue) {
|
|
363
|
+
const replaceRequest = {
|
|
364
|
+
files,
|
|
365
|
+
newValue,
|
|
366
|
+
pattern,
|
|
219
367
|
};
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
/**
|
|
223
|
-
* Searches for text patterns within files in the Sandbox.
|
|
224
|
-
*
|
|
225
|
-
* @param {string} path - Directory to search in. Relative paths are resolved based on the sandbox working directory.
|
|
226
|
-
* @param {string} pattern - Search pattern
|
|
227
|
-
* @returns {Promise<Array<Match>>} Array of matches with file and line information
|
|
228
|
-
*
|
|
229
|
-
* @example
|
|
230
|
-
* // Find all TODO comments in TypeScript files
|
|
231
|
-
* const matches = await fs.findFiles('app/src', 'TODO:');
|
|
232
|
-
* matches.forEach(match => {
|
|
233
|
-
* console.log(`${match.file}:${match.line}: ${match.content}`);
|
|
234
|
-
* });
|
|
235
|
-
*/
|
|
236
|
-
async findFiles(path, pattern) {
|
|
237
|
-
const response = await this.apiClient.findInFiles(path, pattern);
|
|
238
|
-
return response.data;
|
|
239
|
-
}
|
|
240
|
-
/**
|
|
241
|
-
* Retrieves detailed information about a file or directory.
|
|
242
|
-
*
|
|
243
|
-
* @param {string} path - Path to the file or directory. Relative paths are resolved based on the sandbox working directory.
|
|
244
|
-
* @returns {Promise<FileInfo>} Detailed file information including size, permissions, modification time
|
|
245
|
-
*
|
|
246
|
-
* @example
|
|
247
|
-
* // Get file details
|
|
248
|
-
* const info = await fs.getFileDetails('app/config.json');
|
|
249
|
-
* console.log(`Size: ${info.size}, Modified: ${info.modTime}`);
|
|
250
|
-
*/
|
|
251
|
-
async getFileDetails(path) {
|
|
252
|
-
const response = await this.apiClient.getFileInfo(path);
|
|
253
|
-
return response.data;
|
|
254
|
-
}
|
|
255
|
-
/**
|
|
256
|
-
* Lists contents of a directory in the Sandbox.
|
|
257
|
-
*
|
|
258
|
-
* @param {string} path - Directory path to list. Relative paths are resolved based on the sandbox working directory.
|
|
259
|
-
* @returns {Promise<FileInfo[]>} Array of file and directory information
|
|
260
|
-
*
|
|
261
|
-
* @example
|
|
262
|
-
* // List directory contents
|
|
263
|
-
* const files = await fs.listFiles('app/src');
|
|
264
|
-
* files.forEach(file => {
|
|
265
|
-
* console.log(`${file.name} (${file.size} bytes)`);
|
|
266
|
-
* });
|
|
267
|
-
*/
|
|
268
|
-
async listFiles(path) {
|
|
269
|
-
const response = await this.apiClient.listFiles(path);
|
|
270
|
-
return response.data;
|
|
271
|
-
}
|
|
272
|
-
/**
|
|
273
|
-
* Moves or renames a file or directory.
|
|
274
|
-
*
|
|
275
|
-
* @param {string} source - Source path. Relative paths are resolved based on the sandbox working directory.
|
|
276
|
-
* @param {string} destination - Destination path. Relative paths are resolved based on the sandbox working directory.
|
|
277
|
-
* @returns {Promise<void>}
|
|
278
|
-
*
|
|
279
|
-
* @example
|
|
280
|
-
* // Move a file to a new location
|
|
281
|
-
* await fs.moveFiles('app/temp/data.json', 'app/data/data.json');
|
|
282
|
-
*/
|
|
283
|
-
async moveFiles(source, destination) {
|
|
284
|
-
const response = await this.apiClient.moveFile(source, destination);
|
|
285
|
-
return response.data;
|
|
286
|
-
}
|
|
287
|
-
/**
|
|
288
|
-
* Replaces text content in multiple files.
|
|
289
|
-
*
|
|
290
|
-
* @param {string[]} files - Array of file paths to process. Relative paths are resolved based on the sandbox working directory.
|
|
291
|
-
* @param {string} pattern - Pattern to replace
|
|
292
|
-
* @param {string} newValue - Replacement text
|
|
293
|
-
* @returns {Promise<Array<ReplaceResult>>} Results of the replace operation for each file
|
|
294
|
-
*
|
|
295
|
-
* @example
|
|
296
|
-
* // Update version number across multiple files
|
|
297
|
-
* const results = await fs.replaceInFiles(
|
|
298
|
-
* ['app/package.json', 'app/version.ts'],
|
|
299
|
-
* '"version": "1.0.0"',
|
|
300
|
-
* '"version": "1.1.0"'
|
|
301
|
-
* );
|
|
302
|
-
*/
|
|
303
|
-
async replaceInFiles(files, pattern, newValue) {
|
|
304
|
-
const replaceRequest = {
|
|
305
|
-
files,
|
|
306
|
-
newValue,
|
|
307
|
-
pattern,
|
|
308
|
-
};
|
|
309
|
-
const response = await this.apiClient.replaceInFiles(replaceRequest);
|
|
310
|
-
return response.data;
|
|
311
|
-
}
|
|
312
|
-
/**
|
|
313
|
-
* Searches for files and directories by name pattern in the Sandbox.
|
|
314
|
-
*
|
|
315
|
-
* @param {string} path - Directory to search in. Relative paths are resolved based on the sandbox working directory.
|
|
316
|
-
* @param {string} pattern - File name pattern (supports globs)
|
|
317
|
-
* @returns {Promise<SearchFilesResponse>} Search results with matching files
|
|
318
|
-
*
|
|
319
|
-
* @example
|
|
320
|
-
* // Find all TypeScript files
|
|
321
|
-
* const result = await fs.searchFiles('app', '*.ts');
|
|
322
|
-
* result.files.forEach(file => console.log(file));
|
|
323
|
-
*/
|
|
324
|
-
async searchFiles(path, pattern) {
|
|
325
|
-
const response = await this.apiClient.searchFiles(path, pattern);
|
|
326
|
-
return response.data;
|
|
327
|
-
}
|
|
328
|
-
/**
|
|
329
|
-
* Sets permissions and ownership for a file or directory.
|
|
330
|
-
*
|
|
331
|
-
* @param {string} path - Path to the file or directory. Relative paths are resolved based on the sandbox working directory.
|
|
332
|
-
* @param {FilePermissionsParams} permissions - Permission settings
|
|
333
|
-
* @returns {Promise<void>}
|
|
334
|
-
*
|
|
335
|
-
* @example
|
|
336
|
-
* // Set file permissions and ownership
|
|
337
|
-
* await fs.setFilePermissions('app/script.sh', {
|
|
338
|
-
* owner: 'daytona',
|
|
339
|
-
* group: 'users',
|
|
340
|
-
* mode: '755' // Execute permission for shell script
|
|
341
|
-
* });
|
|
342
|
-
*/
|
|
343
|
-
async setFilePermissions(path, permissions) {
|
|
344
|
-
const response = await this.apiClient.setFilePermissions(path, permissions.owner, permissions.group, permissions.mode);
|
|
345
|
-
return response.data;
|
|
346
|
-
}
|
|
347
|
-
async uploadFile(src, dst, timeout = 30 * 60) {
|
|
348
|
-
await this.uploadFiles([{ source: src, destination: dst }], timeout);
|
|
349
|
-
}
|
|
350
|
-
/**
|
|
351
|
-
* Uploads a single file to the Sandbox using true streaming, with optional progress
|
|
352
|
-
* tracking and cancellation. Memory usage stays flat regardless of source size: the
|
|
353
|
-
* SDK pipes the source through a transform that counts bytes and forwards to the
|
|
354
|
-
* underlying multipart upload without buffering the whole payload. The HTTP layer
|
|
355
|
-
* uses chunked transfer encoding, so the source's natural EOF terminates the upload —
|
|
356
|
-
* no advance size is needed.
|
|
357
|
-
*
|
|
358
|
-
* @param {UploadSource} source - The data to upload. Accepts the same `Buffer | string`
|
|
359
|
-
* inputs as {@link FileSystem.uploadFile}, plus Node `Readable` streams and Web
|
|
360
|
-
* `ReadableStream` instances. When a string is passed, it is treated as a local
|
|
361
|
-
* file path and read in streaming chunks.
|
|
362
|
-
* @param {string} remotePath - Destination path in the Sandbox. Relative paths are
|
|
363
|
-
* resolved against the sandbox working directory.
|
|
364
|
-
* @param {UploadStreamOptions} [options] - Streaming options: AbortSignal, onProgress
|
|
365
|
-
* callback, timeout.
|
|
366
|
-
* @returns {Promise<void>}
|
|
367
|
-
*
|
|
368
|
-
* @example
|
|
369
|
-
* // Upload a 2 GB file with progress tracking and the ability to cancel
|
|
370
|
-
* import { createReadStream } from 'fs';
|
|
371
|
-
* const controller = new AbortController();
|
|
372
|
-
* await sandbox.fs.uploadFileStream(createReadStream('big.bin'), 'tmp/big.bin', {
|
|
373
|
-
* signal: controller.signal,
|
|
374
|
-
* onProgress: ({ bytesSent }) => console.log(`${bytesSent} bytes sent`),
|
|
375
|
-
* });
|
|
376
|
-
*/
|
|
377
|
-
async uploadFileStream(source, remotePath, options = {}) {
|
|
378
|
-
const isNonStreamingRuntime = RUNTIME === Runtime.DENO || RUNTIME === Runtime.BROWSER || RUNTIME === Runtime.SERVERLESS;
|
|
379
|
-
if (isNonStreamingRuntime) {
|
|
380
|
-
throw new DaytonaError('uploadFileStream is not supported in browser, Deno, or serverless runtimes. Use uploadFile instead.');
|
|
368
|
+
const response = await this.apiClient.replaceInFiles(replaceRequest);
|
|
369
|
+
return response.data;
|
|
381
370
|
}
|
|
382
|
-
|
|
383
|
-
|
|
371
|
+
/**
|
|
372
|
+
* Searches for files and directories by name pattern in the Sandbox.
|
|
373
|
+
*
|
|
374
|
+
* @param {string} path - Directory to search in. Relative paths are resolved based on the sandbox working directory.
|
|
375
|
+
* @param {string} pattern - File name pattern (supports globs)
|
|
376
|
+
* @returns {Promise<SearchFilesResponse>} Search results with matching files
|
|
377
|
+
*
|
|
378
|
+
* @example
|
|
379
|
+
* // Find all TypeScript files
|
|
380
|
+
* const result = await fs.searchFiles('app', '*.ts');
|
|
381
|
+
* result.files.forEach(file => console.log(file));
|
|
382
|
+
*/
|
|
383
|
+
async searchFiles(path, pattern) {
|
|
384
|
+
const response = await this.apiClient.searchFiles(path, pattern);
|
|
385
|
+
return response.data;
|
|
384
386
|
}
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
387
|
+
/**
|
|
388
|
+
* Sets permissions and ownership for a file or directory.
|
|
389
|
+
*
|
|
390
|
+
* @param {string} path - Path to the file or directory. Relative paths are resolved based on the sandbox working directory.
|
|
391
|
+
* @param {FilePermissionsParams} permissions - Permission settings
|
|
392
|
+
* @returns {Promise<void>}
|
|
393
|
+
*
|
|
394
|
+
* @example
|
|
395
|
+
* // Set file permissions and ownership
|
|
396
|
+
* await fs.setFilePermissions('app/script.sh', {
|
|
397
|
+
* owner: 'daytona',
|
|
398
|
+
* group: 'users',
|
|
399
|
+
* mode: '755' // Execute permission for shell script
|
|
400
|
+
* });
|
|
401
|
+
*/
|
|
402
|
+
async setFilePermissions(path, permissions) {
|
|
403
|
+
const response = await this.apiClient.setFilePermissions(path, permissions.owner, permissions.group, permissions.mode);
|
|
404
|
+
return response.data;
|
|
405
|
+
}
|
|
406
|
+
async uploadFile(src, dst, timeout = 30 * 60) {
|
|
407
|
+
await this.uploadFiles([{ source: src, destination: dst }], timeout);
|
|
402
408
|
}
|
|
403
|
-
|
|
409
|
+
/**
|
|
410
|
+
* Uploads a single file to the Sandbox using true streaming, with optional progress
|
|
411
|
+
* tracking and cancellation. Memory usage stays flat regardless of source size: the
|
|
412
|
+
* SDK pipes the source through a transform that counts bytes and forwards to the
|
|
413
|
+
* underlying multipart upload without buffering the whole payload. The HTTP layer
|
|
414
|
+
* uses chunked transfer encoding, so the source's natural EOF terminates the upload —
|
|
415
|
+
* no advance size is needed.
|
|
416
|
+
*
|
|
417
|
+
* @param {UploadSource} source - The data to upload. Accepts the same `Buffer | string`
|
|
418
|
+
* inputs as {@link FileSystem.uploadFile}, plus Node `Readable` streams and Web
|
|
419
|
+
* `ReadableStream` instances. When a string is passed, it is treated as a local
|
|
420
|
+
* file path and read in streaming chunks.
|
|
421
|
+
* @param {string} remotePath - Destination path in the Sandbox. Relative paths are
|
|
422
|
+
* resolved against the sandbox working directory.
|
|
423
|
+
* @param {UploadStreamOptions} [options] - Streaming options: AbortSignal, onProgress
|
|
424
|
+
* callback, timeout.
|
|
425
|
+
* @returns {Promise<void>}
|
|
426
|
+
*
|
|
427
|
+
* @example
|
|
428
|
+
* // Upload a 2 GB file with progress tracking and the ability to cancel
|
|
429
|
+
* import { createReadStream } from 'fs';
|
|
430
|
+
* const controller = new AbortController();
|
|
431
|
+
* await sandbox.fs.uploadFileStream(createReadStream('big.bin'), 'tmp/big.bin', {
|
|
432
|
+
* signal: controller.signal,
|
|
433
|
+
* onProgress: ({ bytesSent }) => console.log(`${bytesSent} bytes sent`),
|
|
434
|
+
* });
|
|
435
|
+
*/
|
|
436
|
+
async uploadFileStream(source, remotePath, options = {}) {
|
|
437
|
+
const isNonStreamingRuntime = RUNTIME === Runtime.DENO || RUNTIME === Runtime.BROWSER || RUNTIME === Runtime.SERVERLESS;
|
|
438
|
+
if (isNonStreamingRuntime) {
|
|
439
|
+
throw new DaytonaError('uploadFileStream is not supported in browser, Deno, or serverless runtimes. Use uploadFile instead.');
|
|
440
|
+
}
|
|
404
441
|
if (options.signal?.aborted) {
|
|
405
442
|
throw createAbortError(remotePath);
|
|
406
443
|
}
|
|
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
|
-
* source: Buffer.from('{"key": "value"}'),
|
|
432
|
-
* destination: '/tmp/config.json'
|
|
433
|
-
* }
|
|
434
|
-
* ];
|
|
435
|
-
* await fs.uploadFiles(files);
|
|
436
|
-
*/
|
|
437
|
-
async uploadFiles(files, timeout = 30 * 60) {
|
|
438
|
-
const isNonStreamingRuntime = RUNTIME === Runtime.DENO || RUNTIME === Runtime.BROWSER || RUNTIME === Runtime.SERVERLESS;
|
|
439
|
-
const FormDataClass = isNonStreamingRuntime
|
|
440
|
-
? FormData
|
|
441
|
-
: (await dynamicImport('form-data', 'Uploading files is not supported: '));
|
|
442
|
-
const form = new FormDataClass();
|
|
443
|
-
for (const [i, { source, destination }] of files.entries()) {
|
|
444
|
-
form.append(`files[${i}].path`, destination);
|
|
445
|
-
const payload = await this.makeFilePayload(source);
|
|
446
|
-
form.append(`files[${i}].file`, payload, destination);
|
|
447
|
-
}
|
|
448
|
-
if (isNonStreamingRuntime) {
|
|
449
|
-
const url = `${this.clientConfig.basePath}/files/bulk-upload`;
|
|
450
|
-
await fetch(url, {
|
|
451
|
-
method: 'POST',
|
|
452
|
-
headers: this.clientConfig.baseOptions.headers,
|
|
453
|
-
body: form,
|
|
454
|
-
signal: timeout ? AbortSignal.timeout(timeout * 1000) : undefined,
|
|
455
|
-
});
|
|
456
|
-
}
|
|
457
|
-
else {
|
|
458
|
-
await this.apiClient.uploadFiles({
|
|
459
|
-
data: form,
|
|
460
|
-
maxRedirects: 0,
|
|
461
|
-
timeout: timeout * 1000,
|
|
462
|
-
});
|
|
444
|
+
const timeout = options.timeout ?? 30 * 60;
|
|
445
|
+
const sourceStream = await coerceUploadSource(source);
|
|
446
|
+
const tracked = wrapWithUploadProgress(sourceStream, options.onProgress, options.signal);
|
|
447
|
+
const FormDataClass = (await dynamicImport('form-data', 'Uploading files is not supported: '));
|
|
448
|
+
const form = new FormDataClass();
|
|
449
|
+
form.append('files[0].path', remotePath);
|
|
450
|
+
// No knownLength: form-data falls back to chunked transfer encoding, which the
|
|
451
|
+
// daemon's MultipartReader handles transparently. The source's EOF terminates
|
|
452
|
+
// the upload — no advance byte count needed.
|
|
453
|
+
form.append('files[0].file', tracked, { filename: remotePath });
|
|
454
|
+
try {
|
|
455
|
+
await this.apiClient.uploadFiles({
|
|
456
|
+
data: form,
|
|
457
|
+
maxRedirects: 0,
|
|
458
|
+
timeout: timeout * 1000,
|
|
459
|
+
signal: options.signal,
|
|
460
|
+
});
|
|
461
|
+
}
|
|
462
|
+
catch (err) {
|
|
463
|
+
if (options.signal?.aborted) {
|
|
464
|
+
throw createAbortError(remotePath);
|
|
465
|
+
}
|
|
466
|
+
throw err;
|
|
467
|
+
}
|
|
463
468
|
}
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
469
|
+
/**
|
|
470
|
+
* Uploads multiple files to the Sandbox. If files already exist at the destination paths,
|
|
471
|
+
* they will be overwritten.
|
|
472
|
+
*
|
|
473
|
+
* @param {FileUpload[]} files - Array of files to upload.
|
|
474
|
+
* @param {number} [timeout] - Timeout for the upload operation in seconds. 0 means no timeout.
|
|
475
|
+
* Default is 30 minutes.
|
|
476
|
+
* @returns {Promise<void>}
|
|
477
|
+
*
|
|
478
|
+
* @example
|
|
479
|
+
* // Upload multiple text files
|
|
480
|
+
* const files = [
|
|
481
|
+
* {
|
|
482
|
+
* source: Buffer.from('Content of file 1'),
|
|
483
|
+
* destination: '/tmp/file1.txt'
|
|
484
|
+
* },
|
|
485
|
+
* {
|
|
486
|
+
* source: 'app/data/file2.txt',
|
|
487
|
+
* destination: '/tmp/file2.txt'
|
|
488
|
+
* },
|
|
489
|
+
* {
|
|
490
|
+
* source: Buffer.from('{"key": "value"}'),
|
|
491
|
+
* destination: '/tmp/config.json'
|
|
492
|
+
* }
|
|
493
|
+
* ];
|
|
494
|
+
* await fs.uploadFiles(files);
|
|
495
|
+
*/
|
|
496
|
+
async uploadFiles(files, timeout = 30 * 60) {
|
|
497
|
+
const isNonStreamingRuntime = RUNTIME === Runtime.DENO || RUNTIME === Runtime.BROWSER || RUNTIME === Runtime.SERVERLESS;
|
|
498
|
+
const FormDataClass = isNonStreamingRuntime
|
|
499
|
+
? FormData
|
|
500
|
+
: (await dynamicImport('form-data', 'Uploading files is not supported: '));
|
|
501
|
+
const form = new FormDataClass();
|
|
502
|
+
for (const [i, { source, destination }] of files.entries()) {
|
|
503
|
+
form.append(`files[${i}].path`, destination);
|
|
504
|
+
const payload = await this.makeFilePayload(source);
|
|
505
|
+
form.append(`files[${i}].file`, payload, destination);
|
|
506
|
+
}
|
|
507
|
+
if (isNonStreamingRuntime) {
|
|
508
|
+
const url = `${this.clientConfig.basePath}/files/bulk-upload`;
|
|
509
|
+
await fetch(url, {
|
|
510
|
+
method: 'POST',
|
|
511
|
+
headers: this.clientConfig.baseOptions.headers,
|
|
512
|
+
body: form,
|
|
513
|
+
signal: timeout ? AbortSignal.timeout(timeout * 1000) : undefined,
|
|
514
|
+
});
|
|
515
|
+
}
|
|
516
|
+
else {
|
|
517
|
+
await this.apiClient.uploadFiles({
|
|
518
|
+
data: form,
|
|
519
|
+
maxRedirects: 0,
|
|
520
|
+
timeout: timeout * 1000,
|
|
521
|
+
});
|
|
522
|
+
}
|
|
470
523
|
}
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
524
|
+
async makeFilePayload(source) {
|
|
525
|
+
// String = file path
|
|
526
|
+
if (typeof source === 'string') {
|
|
527
|
+
const fs = await dynamicImport('fs', 'Uploading file from local file system is not supported: ');
|
|
528
|
+
return fs.createReadStream(source);
|
|
529
|
+
}
|
|
530
|
+
// Blob
|
|
531
|
+
if (RUNTIME === Runtime.BROWSER || RUNTIME === Runtime.SERVERLESS || RUNTIME === Runtime.DENO) {
|
|
532
|
+
// Use .slice() to ensure we have a concrete ArrayBuffer, not ArrayBufferLike
|
|
533
|
+
return new Blob([source.slice()], { type: 'application/octet-stream' });
|
|
534
|
+
}
|
|
535
|
+
// Readable stream
|
|
536
|
+
const stream = await dynamicImport('stream', 'Uploading file is not supported: ');
|
|
537
|
+
return stream.Readable.from(source);
|
|
475
538
|
}
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
__decorate([
|
|
482
|
-
WithInstrumentation(),
|
|
483
|
-
__metadata("design:type", Function),
|
|
484
|
-
__metadata("design:paramtypes", [String, String]),
|
|
485
|
-
__metadata("design:returntype", Promise)
|
|
486
|
-
], FileSystem.prototype, "createFolder", null);
|
|
487
|
-
__decorate([
|
|
488
|
-
WithInstrumentation(),
|
|
489
|
-
__metadata("design:type", Function),
|
|
490
|
-
__metadata("design:paramtypes", [String, Boolean]),
|
|
491
|
-
__metadata("design:returntype", Promise)
|
|
492
|
-
], FileSystem.prototype, "deleteFile", null);
|
|
493
|
-
__decorate([
|
|
494
|
-
WithInstrumentation(),
|
|
495
|
-
__metadata("design:type", Function),
|
|
496
|
-
__metadata("design:paramtypes", [String, Object, Number]),
|
|
497
|
-
__metadata("design:returntype", Promise)
|
|
498
|
-
], FileSystem.prototype, "downloadFile", null);
|
|
499
|
-
__decorate([
|
|
500
|
-
WithInstrumentation(),
|
|
501
|
-
__metadata("design:type", Function),
|
|
502
|
-
__metadata("design:paramtypes", [String, Object]),
|
|
503
|
-
__metadata("design:returntype", Promise)
|
|
504
|
-
], FileSystem.prototype, "downloadFileStream", null);
|
|
505
|
-
__decorate([
|
|
506
|
-
WithInstrumentation(),
|
|
507
|
-
__metadata("design:type", Function),
|
|
508
|
-
__metadata("design:paramtypes", [Array, Number]),
|
|
509
|
-
__metadata("design:returntype", Promise)
|
|
510
|
-
], FileSystem.prototype, "downloadFiles", null);
|
|
511
|
-
__decorate([
|
|
512
|
-
WithInstrumentation(),
|
|
513
|
-
__metadata("design:type", Function),
|
|
514
|
-
__metadata("design:paramtypes", [String, String]),
|
|
515
|
-
__metadata("design:returntype", Promise)
|
|
516
|
-
], FileSystem.prototype, "findFiles", null);
|
|
517
|
-
__decorate([
|
|
518
|
-
WithInstrumentation(),
|
|
519
|
-
__metadata("design:type", Function),
|
|
520
|
-
__metadata("design:paramtypes", [String]),
|
|
521
|
-
__metadata("design:returntype", Promise)
|
|
522
|
-
], FileSystem.prototype, "getFileDetails", null);
|
|
523
|
-
__decorate([
|
|
524
|
-
WithInstrumentation(),
|
|
525
|
-
__metadata("design:type", Function),
|
|
526
|
-
__metadata("design:paramtypes", [String]),
|
|
527
|
-
__metadata("design:returntype", Promise)
|
|
528
|
-
], FileSystem.prototype, "listFiles", null);
|
|
529
|
-
__decorate([
|
|
530
|
-
WithInstrumentation(),
|
|
531
|
-
__metadata("design:type", Function),
|
|
532
|
-
__metadata("design:paramtypes", [String, String]),
|
|
533
|
-
__metadata("design:returntype", Promise)
|
|
534
|
-
], FileSystem.prototype, "moveFiles", null);
|
|
535
|
-
__decorate([
|
|
536
|
-
WithInstrumentation(),
|
|
537
|
-
__metadata("design:type", Function),
|
|
538
|
-
__metadata("design:paramtypes", [Array, String, String]),
|
|
539
|
-
__metadata("design:returntype", Promise)
|
|
540
|
-
], FileSystem.prototype, "replaceInFiles", null);
|
|
541
|
-
__decorate([
|
|
542
|
-
WithInstrumentation(),
|
|
543
|
-
__metadata("design:type", Function),
|
|
544
|
-
__metadata("design:paramtypes", [String, String]),
|
|
545
|
-
__metadata("design:returntype", Promise)
|
|
546
|
-
], FileSystem.prototype, "searchFiles", null);
|
|
547
|
-
__decorate([
|
|
548
|
-
WithInstrumentation(),
|
|
549
|
-
__metadata("design:type", Function),
|
|
550
|
-
__metadata("design:paramtypes", [String, Object]),
|
|
551
|
-
__metadata("design:returntype", Promise)
|
|
552
|
-
], FileSystem.prototype, "setFilePermissions", null);
|
|
553
|
-
__decorate([
|
|
554
|
-
WithInstrumentation(),
|
|
555
|
-
__metadata("design:type", Function),
|
|
556
|
-
__metadata("design:paramtypes", [Object, String, Number]),
|
|
557
|
-
__metadata("design:returntype", Promise)
|
|
558
|
-
], FileSystem.prototype, "uploadFile", null);
|
|
559
|
-
__decorate([
|
|
560
|
-
WithInstrumentation(),
|
|
561
|
-
__metadata("design:type", Function),
|
|
562
|
-
__metadata("design:paramtypes", [Object, String, Object]),
|
|
563
|
-
__metadata("design:returntype", Promise)
|
|
564
|
-
], FileSystem.prototype, "uploadFileStream", null);
|
|
565
|
-
__decorate([
|
|
566
|
-
WithInstrumentation(),
|
|
567
|
-
__metadata("design:type", Function),
|
|
568
|
-
__metadata("design:paramtypes", [Array, Number]),
|
|
569
|
-
__metadata("design:returntype", Promise)
|
|
570
|
-
], FileSystem.prototype, "uploadFiles", null);
|
|
539
|
+
};
|
|
540
|
+
})();
|
|
541
|
+
export { FileSystem };
|
|
571
542
|
//# sourceMappingURL=FileSystem.js.map
|