mirror of
https://github.com/minio/minio-rs.git
synced 2025-12-06 15:26:51 +08:00
* fix: deprecated elided_lifetimes_in_associated_constant * fix warnings * update: example file-file-uploader
77 lines
2.2 KiB
Rust
77 lines
2.2 KiB
Rust
use log::{error, info};
|
|
use minio::s3::args::{BucketExistsArgs, MakeBucketArgs, UploadObjectArgs};
|
|
use minio::s3::client::Client;
|
|
use minio::s3::creds::StaticProvider;
|
|
use minio::s3::http::BaseUrl;
|
|
use std::path::Path;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
|
|
env_logger::init(); // Note: set environment variable RUST_LOG="INFO" to log info and higher
|
|
|
|
//let base_url = "https://play.min.io".parse::<BaseUrl>()?;
|
|
let base_url: BaseUrl = "http://192.168.178.227:9000".parse::<BaseUrl>()?;
|
|
|
|
info!("Trying to connect to MinIO at: `{:?}`", base_url);
|
|
|
|
let static_provider = StaticProvider::new(
|
|
"Q3AM3UQ867SPQQA43P2F",
|
|
"zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG",
|
|
None,
|
|
);
|
|
|
|
let client = Client::new(
|
|
base_url.clone(),
|
|
Some(Box::new(static_provider)),
|
|
None,
|
|
None,
|
|
)
|
|
.unwrap();
|
|
|
|
let bucket_name: &str = "asiatrip";
|
|
|
|
// Check 'bucket_name' bucket exist or not.
|
|
let exists: bool = client
|
|
.bucket_exists(&BucketExistsArgs::new(&bucket_name).unwrap())
|
|
.await
|
|
.unwrap();
|
|
|
|
// Make 'bucket_name' bucket if not exist.
|
|
if !exists {
|
|
client
|
|
.make_bucket(&MakeBucketArgs::new(&bucket_name).unwrap())
|
|
.await
|
|
.unwrap();
|
|
}
|
|
|
|
// File we are going to upload to the bucket
|
|
let filename: &Path = Path::new("/home/user/Photos/asiaphotos.zip");
|
|
|
|
// Name of the object that will be stored in the bucket
|
|
let object_name: &str = "asiaphotos-2015.zip";
|
|
|
|
info!("filename {}", &filename.to_str().unwrap());
|
|
|
|
// Check if the file exists
|
|
let file_exists: bool = filename.exists();
|
|
if !file_exists {
|
|
error!("File `{}` does not exist!", filename.display());
|
|
()
|
|
}
|
|
|
|
// Upload 'filename' as 'object_name' to bucket 'bucket_name'.
|
|
client
|
|
.upload_object(
|
|
&mut UploadObjectArgs::new(&bucket_name, &object_name, &filename.to_str().unwrap())
|
|
.unwrap(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
|
|
info!(
|
|
"file `{}` is successfully uploaded as object `{object_name}` to bucket `{bucket_name}`.",
|
|
filename.display()
|
|
);
|
|
Ok(())
|
|
}
|