Added dependency on mime
This commit is contained in:
parent
93fe1e0cda
commit
cd99466266
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -805,6 +805,7 @@ dependencies = [
|
|||||||
"diesel-crud-derive",
|
"diesel-crud-derive",
|
||||||
"diesel-crud-trait",
|
"diesel-crud-trait",
|
||||||
"into-response-derive",
|
"into-response-derive",
|
||||||
|
"mime",
|
||||||
"nom",
|
"nom",
|
||||||
"read-files",
|
"read-files",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -24,6 +24,7 @@ homepage = { workspace = true }
|
|||||||
axum = { version = "0.7", optional = true, features = ["multipart"] }
|
axum = { version = "0.7", optional = true, features = ["multipart"] }
|
||||||
tower = { version = "0.5", optional = true }
|
tower = { version = "0.5", optional = true }
|
||||||
tower-http = { version = "0.5", optional = true, features = ["trace", "cors", "normalize-path"] }
|
tower-http = { version = "0.5", optional = true, features = ["trace", "cors", "normalize-path"] }
|
||||||
|
mime = { version = "0.3.17", optional = true }
|
||||||
# Async
|
# Async
|
||||||
tokio = { version = "1.39", optional = true, features = ["fs"] }
|
tokio = { version = "1.39", optional = true, features = ["fs"] }
|
||||||
tokio-util = { version = "0.7", optional = true, features = ["io"] }
|
tokio-util = { version = "0.7", optional = true, features = ["io"] }
|
||||||
@ -57,7 +58,7 @@ diesel-async = "0.5"
|
|||||||
derive_more = "1.0"
|
derive_more = "1.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
axum = ["dep:axum", "dep:tower", "dep:tower-http", "dep:thiserror", "dep:tracing", "dep:tracing-subscriber", "dep:tokio"]
|
axum = ["dep:axum", "dep:tower", "dep:tower-http", "dep:thiserror", "dep:tracing", "dep:tracing-subscriber", "dep:tokio", "dep:mime"]
|
||||||
diesel = ["dep:diesel-crud-trait"]
|
diesel = ["dep:diesel-crud-trait"]
|
||||||
io = ["dep:tokio", "dep:tokio-util"]
|
io = ["dep:tokio", "dep:tokio-util"]
|
||||||
iter = []
|
iter = []
|
||||||
|
1
examples/multipart_file/Cargo.lock
generated
1
examples/multipart_file/Cargo.lock
generated
@ -310,6 +310,7 @@ version = "1.4.3"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"axum",
|
"axum",
|
||||||
"derive_more",
|
"derive_more",
|
||||||
|
"mime",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tower 0.5.0",
|
"tower 0.5.0",
|
||||||
|
@ -6,57 +6,22 @@ use axum::{
|
|||||||
},
|
},
|
||||||
response::IntoResponse,
|
response::IntoResponse,
|
||||||
};
|
};
|
||||||
|
use mime::Mime;
|
||||||
|
use std::str::FromStr;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
#[derive(PartialEq, Eq, Ord, PartialOrd, Hash, Debug, Clone, Copy)]
|
|
||||||
pub enum ContentType {
|
|
||||||
Json,
|
|
||||||
Form,
|
|
||||||
Multipart,
|
|
||||||
Pdf,
|
|
||||||
Html,
|
|
||||||
Unknown,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<&str> for ContentType {
|
|
||||||
fn from(content_type: &str) -> Self {
|
|
||||||
match content_type {
|
|
||||||
"application/json" => ContentType::Json,
|
|
||||||
"application/x-www-form-urlencoded" => ContentType::Form,
|
|
||||||
"multipart/form-data" => ContentType::Multipart,
|
|
||||||
"application/pdf" => ContentType::Pdf,
|
|
||||||
"text/html" => ContentType::Html,
|
|
||||||
_ => ContentType::Unknown,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<String> for ContentType {
|
|
||||||
fn from(content_type: String) -> Self {
|
|
||||||
ContentType::from(content_type.as_str())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<Option<&str>> for ContentType {
|
|
||||||
fn from(content_type: Option<&str>) -> Self {
|
|
||||||
content_type
|
|
||||||
.map(ContentType::from)
|
|
||||||
.unwrap_or(ContentType::Unknown)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
pub struct File {
|
pub struct File {
|
||||||
pub filename: String,
|
pub filename: String,
|
||||||
pub bytes: Vec<u8>,
|
pub bytes: Vec<u8>,
|
||||||
pub content_type: ContentType,
|
pub content_type: Mime,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl File {
|
impl File {
|
||||||
pub fn new(
|
pub fn new(
|
||||||
filename: impl Into<String>,
|
filename: impl Into<String>,
|
||||||
bytes: impl Into<Vec<u8>>,
|
bytes: impl Into<Vec<u8>>,
|
||||||
content_type: impl Into<ContentType>,
|
content_type: impl Into<Mime>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
Self {
|
Self {
|
||||||
filename: filename.into(),
|
filename: filename.into(),
|
||||||
@ -70,7 +35,9 @@ impl File {
|
|||||||
.file_name()
|
.file_name()
|
||||||
.ok_or(MultipartFileRejection::MissingFilename)?
|
.ok_or(MultipartFileRejection::MissingFilename)?
|
||||||
.to_string();
|
.to_string();
|
||||||
let content_type: ContentType = field.content_type().into();
|
let content_type = Mime::from_str(field.content_type().ok_or_else(|| {
|
||||||
|
MultipartFileRejection::FieldError("Missing or illegal content type".to_string())
|
||||||
|
})?)?;
|
||||||
let bytes = field.bytes().await?;
|
let bytes = field.bytes().await?;
|
||||||
Ok(File::new(filename, bytes, content_type))
|
Ok(File::new(filename, bytes, content_type))
|
||||||
}
|
}
|
||||||
@ -93,6 +60,8 @@ pub enum MultipartFileRejection {
|
|||||||
MultipartRejection(#[from] MultipartRejection),
|
MultipartRejection(#[from] MultipartRejection),
|
||||||
#[error("Field error: {0}")]
|
#[error("Field error: {0}")]
|
||||||
FieldError(String),
|
FieldError(String),
|
||||||
|
#[error(transparent)]
|
||||||
|
FromStrError(#[from] mime::FromStrError),
|
||||||
#[error("No files found")]
|
#[error("No files found")]
|
||||||
NoFiles,
|
NoFiles,
|
||||||
#[error("Expected one file, got several")]
|
#[error("Expected one file, got several")]
|
||||||
@ -130,6 +99,9 @@ impl IntoResponse for MultipartFileRejection {
|
|||||||
MultipartFileRejection::BodyError(error) => {
|
MultipartFileRejection::BodyError(error) => {
|
||||||
(axum::http::StatusCode::BAD_REQUEST, error).into_response()
|
(axum::http::StatusCode::BAD_REQUEST, error).into_response()
|
||||||
}
|
}
|
||||||
|
MultipartFileRejection::FromStrError(error) => {
|
||||||
|
(axum::http::StatusCode::BAD_REQUEST, error.to_string()).into_response()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user