diff --git a/src/build.tsx b/src/build.tsx index 737d79e..9619d5a 100644 --- a/src/build.tsx +++ b/src/build.tsx @@ -10,6 +10,62 @@ if (environment == "dev") { if (!fs.existsSync("out")) fs.mkdirSync("out"); +// List Objects from S3 bucket + +import { S3Client, ListObjectsV2Command } from "@aws-sdk/client-s3"; + +const S3 = new S3Client({ + region: "auto", + endpoint: `${process.env.ENDPOINT}`, + credentials: { + accessKeyId: `${process.env.ACCESS_KEY_ID}`, + secretAccessKey: `${process.env.SECRET_ACCESS_KEY}`, + }, +}); + +let items: string[] = []; + +async function listAllObjects(bucketName: string, prefix: string) { + let isTruncated: boolean = true; + let continuationToken: string = ""; + + while (isTruncated) { + const params = { + Bucket: bucketName, + Prefix: prefix, + ContinuationToken: continuationToken, + }; + + const response = await S3.send(new ListObjectsV2Command(params)); + if (response && response.Contents) { + response.Contents.forEach((item) => { + if (item.Key != undefined) { + const ext = item.Key.split(".")[item.Key.split(".").length - 1]; + if (["png", "jpg", "mp4", "jpeg"].includes(ext.toLowerCase())) { + items.push(item.Key); + } + } + }); + isTruncated = response.IsTruncated as boolean; + continuationToken = response.NextContinuationToken as string; + } + } +} + +if (!fs.existsSync(".cache")) fs.mkdirSync(".cache"); +if (!fs.existsSync(".cache/objects.json")) { + log.info("Listing all objects in S3 bucket . . ."); + await listAllObjects(process.env.BUCKET as string, "red_panda"); + fs.writeFileSync(".cache/objects.json", JSON.stringify({ items })); + log.info(`Total: ${items.length}`); +} else { + log.info("Using S3 Bucket cache . . ."); + items = JSON.parse( + fs.readFileSync(".cache/objects.json", { encoding: "utf-8" }) + )["items"]; + log.info(`Total: ${items.length}`); +} + import { renderToString } from "react-dom/server"; import fs from "fs"; function App(props: {}) { @@ -17,7 +73,11 @@ function App(props: {}) {
- {environment == "dev" ? : ""} + {environment == "dev" ? ( + + ) : ( + "" + )}