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