6 releases

0.2.3 Mar 11, 2024
0.2.2 May 12, 2022
0.2.1 Jun 16, 2021
0.1.1 Jun 2, 2021

#65 in #s3

Download history 4/week @ 2024-02-18 5/week @ 2024-02-25 194/week @ 2024-03-10 15/week @ 2024-03-17 1/week @ 2024-03-24 21/week @ 2024-03-31

231 downloads per month

MIT/Apache

26KB
457 lines

Simple AWS S3

Provides the simple way to work with AWS S3. This package use

This package is developing while waiting the fully supported from aws-sdk from Amazon.

Document:

https://docs.rs/simple-aws-s3

Usage/Examples:

Please see examples directory.

LICENSE

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in simple-aws-s3 by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

lib.rs:

Simple AWS S3

Provides the simple way to work with AWS S3. It use reqwest to execute the reqwest.

This package is developing while waiting the fully supported from aws-sdk from Amazon.

Features:

  • Post Presigned (Upload from browser)
  • Get Presigned (Download from browser)
  • Bucket Operations:
  • Object Operations:
    • Head Object (Retrieve Information of an Object)
    • Delete Object

Examples:

use chrono::Duration; use reqwest::multipart::{Form, Part}; use reqwest::StatusCode; use simple_aws_s3::{PostPresignedInfo, S3};

// Before run this example, please replace s3 config below by your config. const ACCESS_KEY: &str = "AKIAIOSFODNN7EXAMPLE"; const SECRET_KEY: &str = "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"; const REGION: &str = "us-east-1"; const ENDPOINT: &str = "s3.amazonaws.com"; const BUCKET: &str = "examplebucket";

#tokio::main async fn main() { let s3 = S3::new(BUCKET, REGION, ENDPOINT, ACCESS_KEY, SECRET_KEY);

 let key = String::from("text.txt");
 let content = "Hello world";

 // Upload by Post Presigned
 let PostPresignedInfo { upload_url, params } = s3
     .generate_presigned_post(
         key.clone(),
         "plain/text",
         10485760,
         Duration::seconds(3600),
         None,
     )
     .unwrap();
 let mut form = Form::new();
 for (key, value) in params {
     form = form.text(key, value);
 }
 let part = Part::text(content).mime_str("plain/text").unwrap();
 form = form.part("file", part);
 let res = reqwest::Client::new()
     .post(&upload_url)
     .multipart(form)
     .send()
     .await
     .unwrap();
 assert_eq!(res.status(), StatusCode::NO_CONTENT);

 // Download by Query Param (Get Presigned)
 let download_url = s3.generate_presigned_get(&key, 3600).unwrap();
 let res = reqwest::Client::new()
     .get(&download_url)
     .send()
     .await
     .unwrap();
 assert_eq!(res.status(), StatusCode::OK);
 assert_eq!(res.text().await.unwrap(), content);

}

Dependencies

~6–20MB
~294K SLoC