blob: 3bcb4d2683a913a0720aa342cd8c2c8d48e4671e [file]
// 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::fmt::Debug;
use std::sync::Arc;
use bytes::Buf;
use http::Response;
use http::StatusCode;
use log::debug;
use super::YANDEX_DISK_SCHEME;
use super::config::YandexDiskConfig;
use super::core::*;
use super::deleter::YandexDiskDeleter;
use super::error::parse_error;
use super::lister::YandexDiskLister;
use super::writer::YandexDiskWriter;
use super::writer::YandexDiskWriters;
use opendal_core::raw::*;
use opendal_core::*;
/// [YandexDisk](https://360.yandex.com/disk/) services support.
#[doc = include_str!("docs.md")]
#[derive(Default)]
pub struct YandexDiskBuilder {
pub(super) config: YandexDiskConfig,
}
impl Debug for YandexDiskBuilder {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("YandexDiskBuilder")
.field("config", &self.config)
.finish_non_exhaustive()
}
}
impl YandexDiskBuilder {
/// Set root of this backend.
///
/// All operations will happen under this root.
pub fn root(mut self, root: &str) -> Self {
self.config.root = if root.is_empty() {
None
} else {
Some(root.to_string())
};
self
}
/// yandex disk oauth access_token.
/// The valid token will looks like `y0_XXXXXXqihqIWAADLWwAAAAD3IXXXXXX0gtVeSPeIKM0oITMGhXXXXXX`.
/// We can fetch the debug token from <https://yandex.com/dev/disk/poligon>.
/// To use it in production, please register an app at <https://oauth.yandex.com> instead.
pub fn access_token(mut self, access_token: &str) -> Self {
self.config.access_token = access_token.to_string();
self
}
}
impl Builder for YandexDiskBuilder {
type Config = YandexDiskConfig;
/// Builds the backend and returns the result of YandexDiskBackend.
fn build(self) -> Result<impl Access> {
debug!("backend build started: {:?}", &self);
let root = normalize_root(&self.config.root.clone().unwrap_or_default());
debug!("backend use root {}", &root);
// Handle oauth access_token.
if self.config.access_token.is_empty() {
return Err(
Error::new(ErrorKind::ConfigInvalid, "access_token is empty")
.with_operation("Builder::build")
.with_context("service", YANDEX_DISK_SCHEME),
);
}
Ok(YandexDiskBackend {
core: Arc::new(YandexDiskCore {
info: {
let am = AccessorInfo::default();
am.set_scheme(YANDEX_DISK_SCHEME)
.set_root(&root)
.set_native_capability(Capability {
stat: true,
create_dir: true,
read: true,
write: true,
write_can_empty: true,
delete: true,
rename: true,
copy: true,
list: true,
list_with_limit: true,
shared: true,
..Default::default()
});
am.into()
},
root,
access_token: self.config.access_token.clone(),
}),
})
}
}
/// Backend for YandexDisk services.
#[derive(Debug, Clone)]
pub struct YandexDiskBackend {
core: Arc<YandexDiskCore>,
}
impl Access for YandexDiskBackend {
type Reader = HttpBody;
type Writer = YandexDiskWriters;
type Lister = oio::PageLister<YandexDiskLister>;
type Deleter = oio::OneShotDeleter<YandexDiskDeleter>;
fn info(&self) -> Arc<AccessorInfo> {
self.core.info.clone()
}
async fn create_dir(&self, path: &str, _: OpCreateDir) -> Result<RpCreateDir> {
self.core.ensure_dir_exists(path).await?;
Ok(RpCreateDir::default())
}
async fn rename(&self, from: &str, to: &str, _args: OpRename) -> Result<RpRename> {
self.core.ensure_dir_exists(to).await?;
let resp = self.core.move_object(from, to).await?;
let status = resp.status();
match status {
StatusCode::OK | StatusCode::CREATED => Ok(RpRename::default()),
_ => Err(parse_error(resp)),
}
}
async fn copy(&self, from: &str, to: &str, _args: OpCopy) -> Result<RpCopy> {
self.core.ensure_dir_exists(to).await?;
let resp = self.core.copy(from, to).await?;
let status = resp.status();
match status {
StatusCode::OK | StatusCode::CREATED => Ok(RpCopy::default()),
_ => Err(parse_error(resp)),
}
}
async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> {
let resp = self.core.download(path, args.range()).await?;
let status = resp.status();
match status {
StatusCode::OK | StatusCode::PARTIAL_CONTENT => Ok((RpRead::new(), resp.into_body())),
_ => {
let (part, mut body) = resp.into_parts();
let buf = body.to_buffer().await?;
Err(parse_error(Response::from_parts(part, buf)))
}
}
}
async fn stat(&self, path: &str, _args: OpStat) -> Result<RpStat> {
let resp = self.core.metainformation(path, None, None).await?;
let status = resp.status();
match status {
StatusCode::OK => {
let bs = resp.into_body();
let mf: MetainformationResponse =
serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
parse_info(mf).map(RpStat::new)
}
_ => Err(parse_error(resp)),
}
}
async fn write(&self, path: &str, _args: OpWrite) -> Result<(RpWrite, Self::Writer)> {
let writer = YandexDiskWriter::new(self.core.clone(), path.to_string());
let w = oio::OneShotWriter::new(writer);
Ok((RpWrite::default(), w))
}
async fn delete(&self) -> Result<(RpDelete, Self::Deleter)> {
Ok((
RpDelete::default(),
oio::OneShotDeleter::new(YandexDiskDeleter::new(self.core.clone())),
))
}
async fn list(&self, path: &str, args: OpList) -> Result<(RpList, Self::Lister)> {
let l = YandexDiskLister::new(self.core.clone(), path, args.limit());
Ok((RpList::default(), oio::PageLister::new(l)))
}
}