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
use std::{
num::{ParseFloatError, ParseIntError},
string::FromUtf8Error,
};
use actix_multipart::MultipartError;
use actix_web::{
error::{PayloadError, ResponseError},
http::StatusCode,
HttpResponse,
};
#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error("Error parsing payload")]
Payload(#[from] PayloadError),
#[error("Error in multipart creation")]
Multipart(MultipartError),
#[error("Failed to parse field")]
ParseField(#[from] FromUtf8Error),
#[error("Failed to parse int")]
ParseInt(#[from] ParseIntError),
#[error("Failed to parse float")]
ParseFloat(#[from] ParseFloatError),
#[error("Bad Content-Type")]
ContentType,
#[error("Bad Content-Disposition")]
ContentDisposition,
#[error("Failed to parse field name")]
Field,
#[error("Too many fields in request")]
FieldCount,
#[error("Field too large")]
FieldSize,
#[error("Found field with unexpected name or type")]
FieldType,
#[error("Failed to parse filename")]
Filename,
#[error("Too many files in request")]
FileCount,
#[error("File too large")]
FileSize,
}
impl From<MultipartError> for Error {
fn from(m: MultipartError) -> Self {
Error::Multipart(m)
}
}
impl ResponseError for Error {
fn status_code(&self) -> StatusCode {
match *self {
Error::Payload(ref e) => e.status_code(),
_ => StatusCode::BAD_REQUEST,
}
}
fn error_response(&self) -> HttpResponse {
match *self {
Error::Payload(ref e) => e.error_response(),
Error::Multipart(_)
| Error::ParseField(_)
| Error::ParseInt(_)
| Error::ParseFloat(_) => HttpResponse::BadRequest().finish(),
Error::ContentType
| Error::ContentDisposition
| Error::Field
| Error::FieldCount
| Error::FieldSize
| Error::FieldType
| Error::Filename
| Error::FileCount
| Error::FileSize => HttpResponse::BadRequest().finish(),
}
}
}