opendal/services/pcloud/delete.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 super::core::*;
19use super::error::{parse_error, PcloudError};
20use crate::raw::*;
21use crate::*;
22use bytes::Buf;
23use http::StatusCode;
24use std::sync::Arc;
25
26pub struct PcloudDeleter {
27 core: Arc<PcloudCore>,
28}
29
30impl PcloudDeleter {
31 pub fn new(core: Arc<PcloudCore>) -> Self {
32 Self { core }
33 }
34}
35
36impl oio::OneShotDelete for PcloudDeleter {
37 async fn delete_once(&self, path: String, _: OpDelete) -> Result<()> {
38 let resp = if path.ends_with('/') {
39 self.core.delete_folder(&path).await?
40 } else {
41 self.core.delete_file(&path).await?
42 };
43
44 let status = resp.status();
45
46 match status {
47 StatusCode::OK => {
48 let bs = resp.into_body();
49 let resp: PcloudError =
50 serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
51 let result = resp.result;
52
53 // pCloud returns 2005 or 2009 if the file or folder is not found
54 if result != 0 && result != 2005 && result != 2009 {
55 return Err(Error::new(ErrorKind::Unexpected, format!("{resp:?}")));
56 }
57
58 Ok(())
59 }
60 _ => Err(parse_error(resp)),
61 }
62 }
63}