opendal/services/oss/
error.rs1use bytes::Buf;
19use http::Response;
20use http::StatusCode;
21use quick_xml::de;
22use serde::Deserialize;
23
24use crate::raw::*;
25use crate::*;
26
27#[derive(Default, Debug, Deserialize)]
29#[serde(default, rename_all = "PascalCase")]
30struct OssError {
31 code: String,
32 message: String,
33 request_id: String,
34 host_id: String,
35}
36
37pub(super) fn parse_error(resp: Response<Buffer>) -> Error {
39 let (parts, body) = resp.into_parts();
40 let bs = body.to_bytes();
41
42 let (kind, retryable) = match parts.status {
43 StatusCode::NOT_FOUND => (ErrorKind::NotFound, false),
44 StatusCode::FORBIDDEN => (ErrorKind::PermissionDenied, false),
45 StatusCode::PRECONDITION_FAILED | StatusCode::NOT_MODIFIED | StatusCode::CONFLICT => {
46 (ErrorKind::ConditionNotMatch, false)
47 }
48 StatusCode::INTERNAL_SERVER_ERROR
49 | StatusCode::BAD_GATEWAY
50 | StatusCode::SERVICE_UNAVAILABLE
51 | StatusCode::GATEWAY_TIMEOUT => (ErrorKind::Unexpected, true),
52 _ => (ErrorKind::Unexpected, false),
53 };
54
55 let message = match de::from_reader::<_, OssError>(bs.clone().reader()) {
56 Ok(oss_err) => format!("{oss_err:?}"),
57 Err(_) => String::from_utf8_lossy(&bs).into_owned(),
58 };
59
60 let mut err = Error::new(kind, message);
61
62 err = with_error_response_context(err, parts);
63
64 if retryable {
65 err = err.set_temporary();
66 }
67
68 err
69}
70
71#[cfg(test)]
72mod tests {
73 use super::*;
74
75 #[test]
77 fn test_parse_error() {
78 let bs = bytes::Bytes::from(
79 r#"
80<?xml version="1.0" ?>
81<Error xmlns="http://doc.oss-cn-hangzhou.aliyuncs.com">
82 <Code>
83 AccessDenied
84 </Code>
85 <Message>
86 Query-string authentication requires the Signature, Expires and OSSAccessKeyId parameters
87 </Message>
88 <RequestId>
89 1D842BC54255****
90 </RequestId>
91 <HostId>
92 oss-cn-hangzhou.aliyuncs.com
93 </HostId>
94</Error>
95"#,
96 );
97
98 let out: OssError = de::from_reader(bs.reader()).expect("must success");
99 println!("{out:?}");
100
101 assert_eq!(out.code, "AccessDenied");
102 assert_eq!(out.message, "Query-string authentication requires the Signature, Expires and OSSAccessKeyId parameters");
103 assert_eq!(out.request_id, "1D842BC54255****");
104 assert_eq!(out.host_id, "oss-cn-hangzhou.aliyuncs.com");
105 }
106}