mirror of
https://github.com/fafhrd91/actix-web
synced 2025-01-19 14:14:41 +01:00
68 lines
1.9 KiB
Rust
68 lines
1.9 KiB
Rust
//! Error and Result module
|
|
use actix_web::error::{ParseError, PayloadError};
|
|
use actix_web::http::StatusCode;
|
|
use actix_web::ResponseError;
|
|
use derive_more::{Display, Error, From};
|
|
|
|
/// A set of errors that can occur during parsing multipart streams
|
|
#[non_exhaustive]
|
|
#[derive(Debug, Display, From, Error)]
|
|
pub enum MultipartError {
|
|
/// Content-Disposition header is not found or is not equal to "form-data".
|
|
///
|
|
/// According to [RFC 7578 §4.2](https://datatracker.ietf.org/doc/html/rfc7578#section-4.2) a
|
|
/// Content-Disposition header must always be present and equal to "form-data".
|
|
#[display(fmt = "No Content-Disposition `form-data` header")]
|
|
NoContentDisposition,
|
|
|
|
/// Content-Type header is not found
|
|
#[display(fmt = "No Content-Type header found")]
|
|
NoContentType,
|
|
|
|
/// Can not parse Content-Type header
|
|
#[display(fmt = "Can not parse Content-Type header")]
|
|
ParseContentType,
|
|
|
|
/// Multipart boundary is not found
|
|
#[display(fmt = "Multipart boundary is not found")]
|
|
Boundary,
|
|
|
|
/// Nested multipart is not supported
|
|
#[display(fmt = "Nested multipart is not supported")]
|
|
Nested,
|
|
|
|
/// Multipart stream is incomplete
|
|
#[display(fmt = "Multipart stream is incomplete")]
|
|
Incomplete,
|
|
|
|
/// Error during field parsing
|
|
#[display(fmt = "{}", _0)]
|
|
Parse(ParseError),
|
|
|
|
/// Payload error
|
|
#[display(fmt = "{}", _0)]
|
|
Payload(PayloadError),
|
|
|
|
/// Not consumed
|
|
#[display(fmt = "Multipart stream is not consumed")]
|
|
NotConsumed,
|
|
}
|
|
|
|
/// Return `BadRequest` for `MultipartError`
|
|
impl ResponseError for MultipartError {
|
|
fn status_code(&self) -> StatusCode {
|
|
StatusCode::BAD_REQUEST
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_multipart_error() {
|
|
let resp = MultipartError::Boundary.error_response();
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
}
|
|
}
|