active-storage 0.1.1

Active Storage facilitates uploading files to a cloud storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
use std::{
    path::{Path, PathBuf},
    str::FromStr,
    time::SystemTime,
};

use async_trait::async_trait;
use aws_sdk_s3::{
    config::Credentials,
    error::SdkError,
    primitives::ByteStream,
    types::{Delete, ObjectIdentifier},
    Client,
};
use aws_types::region::Region;

use super::{Driver, DriverError, DriverResult};
use crate::contents::Contents;

/// Configuration parameters for initializing an `AwsS3` driver instance.
pub struct Config {
    /// The name of the S3 bucket .
    pub bucket: String,
    /// The AWS region where the S3 bucket is located.
    pub region: String,
    /// Optional credentials for authenticating with the AWS S3 service.
    pub credentials: Option<ClientCredentials>,
}

/// Credentials for authenticating with the AWS S3 service.
pub struct ClientCredentials {
    pub access_key: String,
    pub secret_key: String,
    pub session_token: Option<String>,
}

/// The `AwsS3` struct represents an S3-based implementation of the `Driver`
/// trait.
///
/// It provides methods for interacting with files and directories on Amazon S3.
#[derive(Clone)]
#[allow(clippy::module_name_repetitions)]
pub struct AwsS3 {
    /// The S3 client used for communication with the AWS service.
    client: Client,
    /// The name of the S3 bucket.
    bucket: String,
}

impl AwsS3 {
    /// Create a new instance of `AwsS3` with the provided configuration.
    ///
    /// # Returns
    ///
    /// A `Result` containing the initialized `AwsS3`.
    #[must_use]
    pub fn new(config: Config) -> Self {
        let mut client_builder = aws_sdk_s3::Config::builder()
            .force_path_style(true)
            .region(Region::new(config.region));

        if let Some(credentials) = config.credentials {
            let cred = Credentials::new(
                credentials.access_key,
                credentials.secret_key,
                credentials.session_token,
                None,
                "active-store",
            );

            client_builder = client_builder.credentials_provider(cred);
        }

        Self {
            bucket: config.bucket,
            client: Client::from_conf(client_builder.build()),
        }
    }

    /// Creates a new `AwsS3` instance with the provided S3 client and bucket
    /// name.
    #[must_use]
    pub fn with_client(client: Client, bucket: &str) -> Self {
        Self {
            client,
            bucket: bucket.to_string(),
        }
    }

    /// Get all files in a specified path on S3.
    ///
    /// # Errors
    ///
    /// Returns an error if there is an issue listing s3 data.
    ///
    /// # Returns
    ///
    /// A `Result` containing a vector of `PathBuf` representing the file paths,
    /// or an error.
    async fn get_all_files_in_path(&self, path: &Path) -> DriverResult<Vec<std::path::PathBuf>> {
        let mut paths = Vec::new();
        let request = self
            .client
            .list_objects_v2()
            .bucket(&self.bucket)
            .prefix(format!(
                "{}/",
                path.to_str().ok_or(DriverError::InvalidPath)?
            ));

        let mut response = request.into_paginator().send();

        while let Some(result) = response.next().await {
            let contents = match result {
                Ok(result) => result.contents.unwrap_or_default(),
                Err(error) => return Err(error.into()),
            };

            paths.extend(
                contents
                    .iter()
                    .filter_map(|content| content.key())
                    .map(|s| PathBuf::from_str(s).unwrap()),
            );
        }

        Ok(paths)
    }
}

#[async_trait]
impl Driver for AwsS3 {
    /// Reads the contents of a file at the specified path within the AWS S3
    /// storage.
    ///
    /// # Errors
    ///
    /// Returns an error if there is an issue reading from the file or decoding
    /// its contents.
    async fn read(&self, path: &Path) -> DriverResult<Vec<u8>> {
        let request = match self
            .client
            .get_object()
            .bucket(&self.bucket)
            .key(path.to_str().ok_or(DriverError::InvalidPath)?)
            .send()
            .await
        {
            Ok(request) => request,
            Err(error) => {
                return Err(error.into());
            }
        };

        Ok(Contents::from_bytestream(request.body)
            .await
            .map_err(|_| DriverError::DecodeError)?
            .into())
    }

    /// Checks if a file exists at the specified path within the AWS S3 storage.
    ///
    /// If the path does not point to a file, the method returns `Ok(false)`.
    /// Otherwise, it checks if the file exists and returns the result.
    ///
    /// # Errors
    ///
    /// Returns an error if there is an issue checking the existence of the
    /// file.
    async fn file_exists(&self, path: &Path) -> DriverResult<bool> {
        let request = self
            .client
            .head_object()
            .bucket(&self.bucket)
            .key(path.to_str().ok_or(DriverError::InvalidPath)?)
            .send()
            .await;

        match request {
            Ok(_) => Ok(true),
            Err(SdkError::ServiceError(error)) => {
                if error.err().is_not_found() {
                    return Ok(false);
                }

                Err(SdkError::ServiceError(error).into())
            }
            Err(e) => Err(e.into()),
        }
    }

    /// Writes the provided content to a file at the specified path within the
    /// AWS S3 storage.
    ///
    /// If the directory structure leading to the file does not exist, it
    /// creates the necessary directories.
    ///
    /// # Errors
    ///
    /// Returns an error if there is any issue creating directories or writing
    /// to the file
    async fn write(&self, path: &Path, content: Vec<u8>) -> DriverResult<()> {
        match self
            .client
            .put_object()
            .bucket(&self.bucket)
            .key(path.to_str().ok_or(DriverError::InvalidPath)?)
            .body(ByteStream::from(content))
            .send()
            .await
        {
            Ok(_put) => Ok(()),
            Err(error) => Err(error.into()),
        }
    }

    /// Deletes the file at the specified path within the AWS S3 storage.
    ///
    /// # Errors
    ///
    /// Returns an error if the file does not exist or if there is any issue
    /// deleting the file.
    ///
    /// If the file does not exist, the error variant
    /// `DriverError::ResourceNotFound` is returned.
    async fn delete(&self, path: &Path) -> DriverResult<()> {
        if !self.file_exists(path).await? {
            return Err(DriverError::ResourceNotFound);
        }

        if let Err(err) = self
            .client
            .delete_object()
            .bucket(&self.bucket)
            .key(path.to_str().ok_or(DriverError::InvalidPath)?)
            .send()
            .await
        {
            return Err(err.into());
        }

        Ok(())
    }

    /// Deletes all the files under the given path within the AWS S3 storage.
    ///
    /// # Errors
    ///
    /// Returns an error if the directory does not exist or if there is any
    /// issue deleting the directory.
    ///
    /// If the files not found under the given path, the error variant
    /// `DriverError::DirectoryNotFound` is returned.
    async fn delete_directory(&self, path: &Path) -> DriverResult<()> {
        let paths_to_delete = self.get_all_files_in_path(path).await?;

        if paths_to_delete.is_empty() {
            return Err(DriverError::ResourceNotFound);
        }

        if let Err(err) = self
            .client
            .delete_objects()
            .bucket(&self.bucket)
            .delete(
                Delete::builder()
                    .set_objects(Some(
                        paths_to_delete
                            .iter()
                            .map(|path| {
                                ObjectIdentifier::builder()
                                    .key(path.to_str().unwrap().to_string())
                                    .build()
                                    .unwrap()
                            })
                            .collect(),
                    ))
                    .build()
                    .unwrap(),
            )
            .send()
            .await
        {
            return Err(err.into());
        }

        Ok(())
    }

    /// Retrieves the last modification time of the file at the specified path
    /// within the AWS S3 storage. # Errors
    ///
    /// Returns an error if the file does not exist or if there is any issue
    /// retrieving the last modification time.
    ///
    /// If the file does not exist, the error variant
    /// `DriverError::ResourceNotFound` is returned.
    async fn last_modified(&self, path: &Path) -> DriverResult<SystemTime> {
        let response = self
            .client
            .head_object()
            .bucket(&self.bucket)
            .key(path.to_str().ok_or(DriverError::InvalidPath)?)
            .send()
            .await;

        match response {
            Ok(response) => Ok(SystemTime::try_from(
                response
                    .last_modified
                    .ok_or(DriverError::Any("last modify is missing".into()))?,
            )
            .map_err(Box::from)?),
            Err(e) => Err(e.into()),
        }
    }
}

// Errors conventions
type AwsApiError<T> = aws_smithy_runtime_api::client::result::SdkError<
    T,
    aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>;

impl From<AwsApiError<aws_sdk_s3::operation::get_object::GetObjectError>> for DriverError {
    fn from(kind: AwsApiError<aws_sdk_s3::operation::get_object::GetObjectError>) -> Self {
        match kind {
            aws_smithy_runtime_api::client::result::SdkError::ConstructionFailure(_)
            | aws_smithy_runtime_api::client::result::SdkError::TimeoutError(_)
            | aws_smithy_runtime_api::client::result::SdkError::DispatchFailure(_) => {
                Self::Network()
            }
            aws_smithy_runtime_api::client::result::SdkError::ResponseError(err) => {
                let raw = err.raw();
                if raw.status().as_u16() == 404 {
                    Self::ResourceNotFound
                } else {
                    Self::Network()
                }
            }
            aws_smithy_runtime_api::client::result::SdkError::ServiceError(err) => {
                match err.err() {
                    aws_sdk_s3::operation::get_object::GetObjectError::NoSuchKey(_) => {
                        Self::ResourceNotFound
                    }
                    _ => Self::Any(err.err().to_string().into()),
                }
            }
            _ => Self::Any(Box::new(kind) as Box<_>),
        }
    }
}

impl From<AwsApiError<aws_sdk_s3::operation::head_object::HeadObjectError>> for DriverError {
    fn from(kind: AwsApiError<aws_sdk_s3::operation::head_object::HeadObjectError>) -> Self {
        match kind {
            aws_smithy_runtime_api::client::result::SdkError::ConstructionFailure(_)
            | aws_smithy_runtime_api::client::result::SdkError::TimeoutError(_)
            | aws_smithy_runtime_api::client::result::SdkError::DispatchFailure(_) => {
                Self::Network()
            }
            aws_smithy_runtime_api::client::result::SdkError::ResponseError(err) => {
                let raw = err.raw();
                if raw.status().as_u16() == 404 {
                    Self::ResourceNotFound
                } else {
                    Self::Network()
                }
            }
            aws_smithy_runtime_api::client::result::SdkError::ServiceError(err) => {
                match err.err() {
                    aws_sdk_s3::operation::head_object::HeadObjectError::NotFound(_) => {
                        Self::ResourceNotFound
                    }
                    _ => Self::Any(err.err().to_string().into()),
                }
            }
            _ => Self::Any(Box::new(kind)),
        }
    }
}

impl From<AwsApiError<aws_sdk_s3::operation::put_object::PutObjectError>> for DriverError {
    fn from(kind: AwsApiError<aws_sdk_s3::operation::put_object::PutObjectError>) -> Self {
        match kind {
            aws_smithy_runtime_api::client::result::SdkError::ConstructionFailure(_)
            | aws_smithy_runtime_api::client::result::SdkError::TimeoutError(_)
            | aws_smithy_runtime_api::client::result::SdkError::DispatchFailure(_) => {
                Self::Network()
            }
            aws_smithy_runtime_api::client::result::SdkError::ResponseError(err) => {
                let raw = err.raw();
                if raw.status().as_u16() == 404 {
                    Self::ResourceNotFound
                } else {
                    Self::Network()
                }
            }
            aws_smithy_runtime_api::client::result::SdkError::ServiceError(err) => {
                Self::Any(err.err().to_string().into())
            }
            _ => Self::Any(Box::new(kind)),
        }
    }
}

impl From<AwsApiError<aws_sdk_s3::operation::delete_object::DeleteObjectError>> for DriverError {
    fn from(kind: AwsApiError<aws_sdk_s3::operation::delete_object::DeleteObjectError>) -> Self {
        match kind {
            aws_smithy_runtime_api::client::result::SdkError::ConstructionFailure(_)
            | aws_smithy_runtime_api::client::result::SdkError::TimeoutError(_)
            | aws_smithy_runtime_api::client::result::SdkError::DispatchFailure(_) => {
                Self::Network()
            }
            aws_smithy_runtime_api::client::result::SdkError::ResponseError(err) => {
                let raw = err.raw();
                if raw.status().as_u16() == 404 {
                    Self::ResourceNotFound
                } else {
                    Self::Network()
                }
            }
            aws_smithy_runtime_api::client::result::SdkError::ServiceError(err) => {
                Self::Any(err.err().to_string().into())
            }
            _ => Self::Any(Box::new(kind)),
        }
    }
}

impl From<AwsApiError<aws_sdk_s3::operation::delete_objects::DeleteObjectsError>> for DriverError {
    fn from(kind: AwsApiError<aws_sdk_s3::operation::delete_objects::DeleteObjectsError>) -> Self {
        match kind {
            aws_smithy_runtime_api::client::result::SdkError::ConstructionFailure(_)
            | aws_smithy_runtime_api::client::result::SdkError::TimeoutError(_)
            | aws_smithy_runtime_api::client::result::SdkError::DispatchFailure(_) => {
                Self::Network()
            }
            aws_smithy_runtime_api::client::result::SdkError::ResponseError(err) => {
                let raw = err.raw();
                if raw.status().as_u16() == 404 {
                    Self::ResourceNotFound
                } else {
                    Self::Network()
                }
            }
            aws_smithy_runtime_api::client::result::SdkError::ServiceError(err) => {
                Self::Any(err.err().to_string().into())
            }
            _ => Self::Any(Box::new(kind)),
        }
    }
}

impl From<AwsApiError<aws_sdk_s3::operation::list_objects_v2::ListObjectsV2Error>> for DriverError {
    fn from(kind: AwsApiError<aws_sdk_s3::operation::list_objects_v2::ListObjectsV2Error>) -> Self {
        match kind {
            aws_smithy_runtime_api::client::result::SdkError::ConstructionFailure(_)
            | aws_smithy_runtime_api::client::result::SdkError::TimeoutError(_)
            | aws_smithy_runtime_api::client::result::SdkError::DispatchFailure(_) => {
                Self::Network()
            }
            aws_smithy_runtime_api::client::result::SdkError::ResponseError(err) => {
                let raw = err.raw();
                if raw.status().as_u16() == 404 {
                    Self::ResourceNotFound
                } else {
                    Self::Network()
                }
            }
            aws_smithy_runtime_api::client::result::SdkError::ServiceError(err) => {
                match err.err() {
                    aws_sdk_s3::operation::list_objects_v2::ListObjectsV2Error::NoSuchBucket(_) => {
                        Self::ResourceNotFound
                    }
                    _ => Self::Any(err.err().to_string().into()),
                }
            }
            _ => Self::Any(Box::new(kind)),
        }
    }
}