aws/destroy/destroyS3.js

  1. /**
  2. * Exports an async function that tears down the S3 bucket
  3. * @module destroyS3
  4. */
  5. const { S3Client, ListObjectVersionsCommand, DeleteObjectsCommand, DeleteBucketCommand } = require("@aws-sdk/client-s3");
  6. const logger = require("../../utils/logger")("dev");
  7. /**
  8. * List all the objects versions from a S3 bucket
  9. * @param {S3Client} s3 This is the S3 Client
  10. * @param {String} bucketName This is the name of the S3 bucket
  11. * @returns {Array} This is the list of object versions
  12. * @throws Will throw an error if S3 client fails to execute its command
  13. */
  14. const listBucketObjects = async (s3, bucketName) => {
  15. const params = {
  16. Bucket: bucketName
  17. };
  18. const command = new ListObjectVersionsCommand(params);
  19. try {
  20. const {Versions} = await s3.send(command);
  21. logger.debugSuccess(`Successfully retrieved bucket objects from: ${bucketName}`);
  22. return Versions;
  23. } catch (err) {
  24. logger.debugError("Error", err);
  25. throw new Error(err);
  26. }
  27. }
  28. /**
  29. * Deletes S3 bucket objects
  30. * @param {S3Client} s3 This is the S3 Client
  31. * @param {Array} versions This is the list of object versions
  32. * @param {String} bucketName This is the S3 bucket name
  33. * @throws Will throw an error if S3 client fails to execute its command
  34. */
  35. const deleteBucketObjects = async (s3, versions, bucketName) => {
  36. const params = {
  37. Bucket: bucketName,
  38. Delete: {
  39. Objects: versions
  40. }
  41. }
  42. const command = new DeleteObjectsCommand(params);
  43. try {
  44. await s3.send(command);
  45. logger.debugSuccess(`Successfully deleted bucket objects from: ${bucketName}`);
  46. } catch (err) {
  47. logger.debugError("Error", err);
  48. throw new Error(err);
  49. }
  50. }
  51. /**
  52. * Deletes a S3 bucket
  53. * @param {S3Client} s3 This is the S3 Client
  54. * @param {String} bucketName This is the S3 bucket name
  55. * @throws Will throw an error if S3 client fails to execute its command
  56. */
  57. const deleteBucket = async (s3, bucketName) => {
  58. const params = {
  59. Bucket: bucketName,
  60. "force_destroy": true
  61. }
  62. const command = new DeleteBucketCommand(params);
  63. try {
  64. await s3.send(command);
  65. logger.debugSuccess(`Successfully deleted bucket: ${bucketName}`);
  66. } catch (err) {
  67. logger.debugError("Error", err);
  68. throw new Error(err);
  69. }
  70. }
  71. /**
  72. * Exports destroyS3
  73. * @param {String} region This is the region of where this AWS service is deployed
  74. * @param {String} bucketName This is the name of the S3 bucket
  75. */
  76. module.exports = async (region, bucketName) => {
  77. const s3 = new S3Client({ region });
  78. const versions = await listBucketObjects(s3, bucketName);
  79. await deleteBucketObjects(s3, versions, bucketName);
  80. await deleteBucket(s3, bucketName);
  81. };