opendal/services/onedrive/
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        // The OneDrive service replaces resources.
32        // However, the Onedrive doesn't have Strong Read-After-Write properties,
33        // the concurrent requests to create directories might result in errors.
34        //
35        // Running behavior tests can yield HTTP 409 Conflict because of the consistency guarantee.
36        //
37        // Read more about `REPLACE_EXISTING_ITEM_WHEN_CONFLICT` in `graph_model.rs`.
38        StatusCode::CONFLICT => (ErrorKind::AlreadyExists, true),
39        StatusCode::FORBIDDEN => (ErrorKind::PermissionDenied, false),
40        StatusCode::INTERNAL_SERVER_ERROR
41        | StatusCode::BAD_GATEWAY
42        | StatusCode::SERVICE_UNAVAILABLE
43        | StatusCode::GATEWAY_TIMEOUT => (ErrorKind::Unexpected, true),
44        StatusCode::NOT_MODIFIED | StatusCode::PRECONDITION_FAILED => {
45            (ErrorKind::ConditionNotMatch, false)
46        }
47        _ => (ErrorKind::Unexpected, false),
48    };
49
50    let message = String::from_utf8_lossy(&bs);
51
52    let mut err = Error::new(kind, message);
53
54    err = with_error_response_context(err, parts);
55
56    if retryable {
57        err = err.set_temporary();
58    }
59
60    err
61}