You've already forked AstralRinth
forked from xxxOFFxxx/AstralRinth
* typos :help_me: * (part 1/?) massive cleanup to make the code more Rust-ic and cut down heap allocations. * (part 2/?) massive cleanup to make the code more Rust-ic and cut down heap allocations. * (part 3/?) cut down some pretty major heap allocations here - more Bytes and BytesMuts, less Vec<u8>s also I don't really understand why you need to `to_vec` when you don't really use it again afterwards * (part 4/?) deduplicate error handling in backblaze logic * (part 5/?) fixes, cleanups, refactors, and reformatting * (part 6/?) cleanups and refactors * remove loads of `as_str` in types that already are `Display` * Revert "remove loads of `as_str` in types that already are `Display`" This reverts commit 4f974310cfb167ceba03001d81388db4f0fbb509. * reformat and move routes util to the util module * use streams * Run prepare + formatting issues Co-authored-by: Jai A <jaiagr+gpg@pm.me> Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
64 lines
1.5 KiB
Rust
64 lines
1.5 KiB
Rust
use async_trait::async_trait;
|
|
use thiserror::Error;
|
|
|
|
mod backblaze;
|
|
mod mock;
|
|
mod s3_host;
|
|
|
|
pub use backblaze::BackblazeHost;
|
|
use bytes::Bytes;
|
|
pub use mock::MockHost;
|
|
use s3::creds::AwsCredsError;
|
|
use s3::S3Error;
|
|
pub use s3_host::S3Host;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum FileHostingError {
|
|
#[error("Error while accessing the data from backblaze")]
|
|
HttpError(#[from] reqwest::Error),
|
|
#[error("Backblaze error: {0}")]
|
|
BackblazeError(serde_json::Value),
|
|
#[error("S3 error: {0}")]
|
|
S3Error(#[from] S3Error),
|
|
#[error("S3 Authentication error: {0}")]
|
|
S3CredentialsError(#[from] AwsCredsError),
|
|
#[error("File system error in file hosting: {0}")]
|
|
FileSystemError(#[from] std::io::Error),
|
|
#[error("Invalid Filename")]
|
|
InvalidFilename,
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct UploadFileData {
|
|
pub file_id: String,
|
|
pub file_name: String,
|
|
pub content_length: u32,
|
|
pub content_sha512: String,
|
|
pub content_sha1: String,
|
|
pub content_md5: Option<String>,
|
|
pub content_type: String,
|
|
pub upload_timestamp: u64,
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct DeleteFileData {
|
|
pub file_id: String,
|
|
pub file_name: String,
|
|
}
|
|
|
|
#[async_trait]
|
|
pub trait FileHost {
|
|
async fn upload_file(
|
|
&self,
|
|
content_type: &str,
|
|
file_name: &str,
|
|
file_bytes: Bytes,
|
|
) -> Result<UploadFileData, FileHostingError>;
|
|
|
|
async fn delete_file_version(
|
|
&self,
|
|
file_id: &str,
|
|
file_name: &str,
|
|
) -> Result<DeleteFileData, FileHostingError>;
|
|
}
|