Skip to content

Commit

Permalink
Merge pull request #678 from fukumasuya/fix/issue677
Browse files Browse the repository at this point in the history
fix(s3-plugin): Use ContinuationToken to get all objects recursively
  • Loading branch information
Quramy authored Mar 5, 2024
2 parents cf3ba8c + 508cd51 commit 3e676c7
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions packages/reg-publish-s3-plugin/src/s3-publisher-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
GetObjectCommand,
GetObjectCommandOutput,
ListObjectsV2Command,
ListObjectsV2CommandInput,
ListObjectsV2Output,
ObjectCannedACL,
PutObjectCommand,
Expand Down Expand Up @@ -153,34 +154,23 @@ export class S3PublisherPlugin extends AbstractPublisher implements PublisherPlu
}

protected listItems(lastKey: string, prefix: string): Promise<ObjectListResult> {
interface S3ListObjectsOptions {
Bucket: string;
Prefix: string;
MaxKeys: number;
Marker?: string;
}
const options: S3ListObjectsOptions = {
const options: ListObjectsV2CommandInput = {
Bucket: this._pluginConfig.bucketName,
Prefix: prefix,
MaxKeys: 1000,
};
if (lastKey) {
options.Marker = lastKey;
options.ContinuationToken = lastKey;
}

return new Promise<ObjectListResult>((resolve, reject) => {
this._s3client
.send(new ListObjectsV2Command(options))
.then((result: ListObjectsV2Output) => {
let nextMarker: string | undefined;
if (result.Contents && result.Contents.length > 0 && result.IsTruncated) {
nextMarker = result.Contents[result.Contents.length - 1].Key;
}

resolve({
isTruncated: result.IsTruncated,
contents: !result.Contents ? [] : result.Contents.map(f => ({ key: f.Key })),
nextMarker,
nextMarker: result.NextContinuationToken,
} as ObjectListResult);
})
.catch(err => reject(err));
Expand Down

0 comments on commit 3e676c7

Please sign in to comment.