opendal/services/ghac/
error.rs1use crate::raw::*;
19use crate::*;
20use http::Response;
21use http::StatusCode;
22
23pub(super) fn parse_error(resp: Response<Buffer>) -> Error {
25 let (parts, body) = resp.into_parts();
26
27 let (kind, retryable) = match parts.status {
28 StatusCode::NOT_FOUND | StatusCode::NO_CONTENT => (ErrorKind::NotFound, false),
29 StatusCode::CONFLICT => (ErrorKind::AlreadyExists, false),
30 StatusCode::FORBIDDEN => (ErrorKind::PermissionDenied, false),
31 StatusCode::TOO_MANY_REQUESTS => (ErrorKind::RateLimited, true),
32 StatusCode::INTERNAL_SERVER_ERROR
33 | StatusCode::BAD_GATEWAY
34 | StatusCode::SERVICE_UNAVAILABLE
35 | StatusCode::GATEWAY_TIMEOUT => (ErrorKind::Unexpected, true),
36 _ => (ErrorKind::Unexpected, false),
37 };
38
39 let bs = body.to_bytes();
40 let message = String::from_utf8_lossy(&bs);
41
42 let mut err = Error::new(kind, message);
43
44 err = with_error_response_context(err, parts);
45
46 if retryable {
47 err = err.set_temporary();
48 }
49
50 err
51}