opendal/services/vercel_artifacts/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(response: Response<Buffer>) -> Error {
26 let (parts, body) = response.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::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 message = String::from_utf8_lossy(&bs);
40
41 let mut err = Error::new(kind, message);
42
43 err = with_error_response_context(err, parts);
44
45 if retryable {
46 err = err.set_temporary();
47 }
48
49 err
50}