| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| |
| use std::sync::Arc; |
| |
| use http::Response; |
| use http::StatusCode; |
| |
| use opendal_core::raw::*; |
| use opendal_core::*; |
| |
| use super::core::OneDriveCore; |
| use super::deleter::OneDriveDeleter; |
| use super::error::parse_error; |
| use super::lister::OneDriveLister; |
| use super::writer::OneDriveWriter; |
| |
| #[derive(Clone, Debug)] |
| pub struct OnedriveBackend { |
| pub core: Arc<OneDriveCore>, |
| } |
| |
| impl Access for OnedriveBackend { |
| type Reader = HttpBody; |
| type Writer = oio::OneShotWriter<OneDriveWriter>; |
| type Lister = oio::PageLister<OneDriveLister>; |
| type Deleter = oio::OneShotDeleter<OneDriveDeleter>; |
| |
| fn info(&self) -> Arc<AccessorInfo> { |
| self.core.info.clone() |
| } |
| |
| async fn create_dir(&self, path: &str, _args: OpCreateDir) -> Result<RpCreateDir> { |
| if path == "/" { |
| // skip, the root path exists in the personal OneDrive. |
| return Ok(RpCreateDir::default()); |
| } |
| |
| let response = self.core.onedrive_create_dir(path).await?; |
| match response.status() { |
| StatusCode::CREATED | StatusCode::OK => Ok(RpCreateDir::default()), |
| _ => Err(parse_error(response)), |
| } |
| } |
| |
| async fn stat(&self, path: &str, args: OpStat) -> Result<RpStat> { |
| let meta = self.core.onedrive_stat(path, args).await?; |
| |
| Ok(RpStat::new(meta)) |
| } |
| |
| async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> { |
| let response = self.core.onedrive_get_content(path, &args).await?; |
| match response.status() { |
| StatusCode::OK | StatusCode::PARTIAL_CONTENT => { |
| Ok((RpRead::default(), response.into_body())) |
| } |
| _ => { |
| let (part, mut body) = response.into_parts(); |
| let buf = body.to_buffer().await?; |
| Err(parse_error(Response::from_parts(part, buf))) |
| } |
| } |
| } |
| |
| async fn write(&self, path: &str, args: OpWrite) -> Result<(RpWrite, Self::Writer)> { |
| Ok(( |
| RpWrite::default(), |
| oio::OneShotWriter::new(OneDriveWriter::new( |
| self.core.clone(), |
| args, |
| path.to_string(), |
| )), |
| )) |
| } |
| |
| async fn delete(&self) -> Result<(RpDelete, Self::Deleter)> { |
| Ok(( |
| RpDelete::default(), |
| oio::OneShotDeleter::new(OneDriveDeleter::new(self.core.clone())), |
| )) |
| } |
| |
| async fn copy(&self, from: &str, to: &str, _args: OpCopy) -> Result<RpCopy> { |
| let monitor_url = self.core.initialize_copy(from, to).await?; |
| self.core.wait_until_complete(monitor_url).await?; |
| Ok(RpCopy::default()) |
| } |
| |
| async fn rename(&self, from: &str, to: &str, _args: OpRename) -> Result<RpRename> { |
| if from == to { |
| return Ok(RpRename::default()); |
| } |
| |
| self.core.onedrive_move(from, to).await?; |
| |
| Ok(RpRename::default()) |
| } |
| |
| async fn list(&self, path: &str, args: OpList) -> Result<(RpList, Self::Lister)> { |
| let l = OneDriveLister::new(path.to_string(), self.core.clone(), &args); |
| Ok((RpList::default(), oio::PageLister::new(l))) |
| } |
| } |