Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add S3 bucket management and file upload/download features #2

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

faizakram
Copy link
Owner

@faizakram faizakram commented Sep 4, 2024

Overview

This pull request introduces new features for managing AWS S3 buckets and enhances the application's file handling capabilities.

Key Features

  1. File Upload to S3:

    • Adds functionality to upload files to an S3 bucket with the option to make the file publicly accessible.
    • Supports uploading files using a REST endpoint that accepts multipart file uploads.
    • Includes error handling and logging for successful and failed uploads.
  2. File Download from S3:

    • Implements functionality to download files from an S3 bucket as a stream.
    • Provides a REST endpoint to facilitate file downloads by key.
    • Ensures efficient memory usage by streaming the file directly to the client.
  3. S3 Bucket Management:

    • Implements functionality to create S3 buckets through a REST endpoint.
    • Adds a service class for bucket creation with error handling for conflicts and permissions.
  4. List S3 Buckets with Regions:

    • Implements a new service method to fetch and display S3 bucket names with their respective regions.
    • Adds a REST endpoint to return the list of buckets along with their regions.
    • Utilizes the AWS SDK to retrieve bucket location constraints and map them to AWS regions.
    • Includes error handling for scenarios where the bucket region is not accessible or available.

Also provides S3 file management capabilities, including:

  • Downloading all files from a specific bucket as a ZIP archive.
  • Moving files from one S3 bucket to another.

Benefits

  • Enhances the application's file management capabilities within AWS S3.
  • Provides robust solutions for both uploading and downloading files.
  • Improves bucket management by allowing creation and retrieval of buckets with their regions.

Testing

  • Unit tests have been added for all new services and endpoints.
  • Manual testing has been performed to verify file upload, download, bucket creation, and listing functionalities.

Checklist

  • Code changes have been reviewed.
  • All tests are passing.
  • Documentation has been updated.
  • No new dependencies are conflicting.

Additional Context

N/A

IIPL\14261 added 2 commits September 4, 2024 21:33
Implement file download functionality from S3 as a stream
 - Added AWS SDK dependency for S3.
 - Configured S3Client bean for AWS S3 interaction.
 - Implemented S3Service for creating S3 buckets.
 - Created S3Controller to handle bucket creation requests via REST API.
@faizakram
Copy link
Owner Author

  1. S3 Bucket Management:
    • Implements functionality to create S3 buckets through a REST endpoint.
    • Adds a service class for bucket creation with error handling for conflicts and permissions.

@faizakram faizakram changed the title Implement file upload and download functionality for S3 Add S3 bucket management and file upload/download features Sep 14, 2024
- Implemented a new service method to fetch and display S3 bucket names with their respective regions.
- Added a REST endpoint to return the list of buckets along with their regions.
- Utilized AWS SDK to retrieve bucket location constraints and map them to AWS regions.
- Included error handling for scenarios where the bucket region is not accessible or available.
@faizakram faizakram added documentation Improvements or additions to documentation enhancement New feature or request labels Sep 16, 2024
IIPL\14261 added 2 commits September 17, 2024 11:33
- Downloading a single file from an S3 bucket.
- Downloading all files from a specific bucket as a ZIP archive.
- Moving files from one S3 bucket to another.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant