-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuploadFile.js
More file actions
179 lines (159 loc) · 4.43 KB
/
uploadFile.js
File metadata and controls
179 lines (159 loc) · 4.43 KB
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
const fs = require("fs");
const {
S3Client,
PutObjectCommand,
CreateMultipartUploadCommand,
CompleteMultipartUploadCommand,
AbortMultipartUploadCommand,
} = require("@aws-sdk/client-s3");
const mime = require("mime-types");
const S3_MIN_PART_SIZE = 5 * 1024 * 1024; // 5 MB
async function uploadFile(client, bucketName, prefix, key, filePath) {
const fileSize = fs.statSync(filePath).size;
const fullKey = prefix ? `${prefix}/${key}` : key;
const mimeType = mime.lookup(filePath);
console.log("🚀 ~ uploadFile ~ mimeType:", mimeType);
if (fileSize <= S3_MIN_PART_SIZE) {
// Single-part upload
console.log(`Uploading ${key} as a single object (${fileSize} bytes)...`);
await uploadSinglePart(client, bucketName, fullKey, filePath, mimeType);
} else {
// Multipart upload
console.log(
`Uploading ${key} using multipart upload (${fileSize} bytes)...`
);
await uploadMultipart(
client,
bucketName,
fullKey,
filePath,
fileSize,
mimeType
);
}
}
async function uploadSinglePart(
client,
bucketName,
key,
filePath,
contentType
) {
try {
const fileStream = fs.createReadStream(filePath);
const command = new PutObjectCommand({
Bucket: bucketName,
Key: key,
Body: fileStream,
ContentType: contentType,
});
await client.send(command);
console.log(`File "${key}" uploaded successfully to "${bucketName}".`);
} catch (error) {
console.error(`Error uploading file "${key}":`, error);
}
}
async function uploadMultipart(
client,
bucketName,
key,
filePath,
fileSize,
contentType
) {
const chunkSize = S3_MIN_PART_SIZE;
const fileStream = fs.createReadStream(filePath, {
highWaterMark: chunkSize,
});
const uploadId = await startMultipartUpload(client, bucketName, key);
const parts = [];
let partNumber = 1;
let uploadedBytes = 0;
try {
for await (const chunk of fileStream) {
let success = false;
let attempts = 0;
let ETag = null;
while (!success && attempts < 3) {
// Retry up to 3 times if needed
try {
const uploadPartParams = {
Bucket: bucketName,
Key: key,
PartNumber: partNumber,
UploadId: uploadId,
Body: chunk,
ContentType: contentType,
};
const response = await client.send(
new CreateMultipartUploadCommand(uploadPartParams)
);
ETag = response.ETag;
success = true;
} catch (err) {
console.error(
`Error uploading part ${partNumber}, attempt ${attempts + 1}:`,
err
);
attempts++;
await new Promise((resolve) => setTimeout(resolve, 2000)); // Wait before retry
}
}
if (!ETag) {
throw new Error(`Failed to upload part ${partNumber} after 3 attempts`);
}
parts.push({ PartNumber: partNumber, ETag });
uploadedBytes += chunk.length;
const progress = ((uploadedBytes / fileSize) * 100).toFixed(2);
console.log(`Progress: ${progress}% (Part ${partNumber})`);
partNumber++;
}
await completeMultipartUpload(client, bucketName, key, uploadId, parts);
console.log(`File "${key}" uploaded successfully using multipart upload.`);
} catch (error) {
console.error("Error uploading file:", error);
await abortMultipartUpload(client, bucketName, key, uploadId);
}
}
async function startMultipartUpload(client, bucketName, key) {
const command = new CreateMultipartUploadCommand({
Bucket: bucketName,
Key: key,
});
const { UploadId } = await client.send(command);
return UploadId;
}
async function completeMultipartUpload(
client,
bucketName,
key,
uploadId,
parts
) {
console.log(
"Completing Multipart Upload with Parts:",
JSON.stringify(parts, null, 2)
);
const command = new CompleteMultipartUploadCommand({
Bucket: bucketName,
Key: key,
UploadId: uploadId,
MultipartUpload: { Parts: parts },
});
return client.send(command);
}
async function abortMultipartUpload(client, bucketName, key, uploadId) {
console.log(`Aborting multipart upload for ${key}`);
const command = new AbortMultipartUploadCommand({
Bucket: bucketName,
Key: key,
UploadId: uploadId,
});
return client.send(command);
}
// Export the functions for use in other files
module.exports = {
uploadFile,
uploadSinglePart,
uploadMultipart,
};