opendal/services/ghac/
error.rs

1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements.  See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership.  The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License.  You may obtain a copy of the License at
8//
9//   http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied.  See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18use crate::raw::*;
19use crate::*;
20use http::Response;
21use http::StatusCode;
22
23/// Parse error response into Error.
24pub(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}