use std::fmt::Debug;
use std::fmt::Formatter;
use std::sync::Arc;
use bytes::Buf;
use chrono::Utc;
use http::header;
use http::Request;
use http::Response;
use http::StatusCode;
use log::debug;
use tokio::sync::Mutex;
use super::core::*;
use super::error::parse_error;
use super::lister::AliyunDriveLister;
use super::lister::AliyunDriveParent;
use super::writer::AliyunDriveWriter;
use crate::raw::*;
use crate::services::AliyunDriveConfig;
use crate::*;
impl Configurator for AliyunDriveConfig {
type Builder = AliyunDriveBuilder;
fn into_builder(self) -> Self::Builder {
AliyunDriveBuilder {
config: self,
http_client: None,
}
}
}
#[doc = include_str!("docs.md")]
#[derive(Default)]
pub struct AliyunDriveBuilder {
config: AliyunDriveConfig,
http_client: Option<HttpClient>,
}
impl Debug for AliyunDriveBuilder {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let mut d = f.debug_struct("AliyunDriveBuilder");
d.field("config", &self.config);
d.finish_non_exhaustive()
}
}
impl AliyunDriveBuilder {
pub fn root(mut self, root: &str) -> Self {
self.config.root = if root.is_empty() {
None
} else {
Some(root.to_string())
};
self
}
pub fn access_token(mut self, access_token: &str) -> Self {
self.config.access_token = Some(access_token.to_string());
self
}
pub fn client_id(mut self, client_id: &str) -> Self {
self.config.client_id = Some(client_id.to_string());
self
}
pub fn client_secret(mut self, client_secret: &str) -> Self {
self.config.client_secret = Some(client_secret.to_string());
self
}
pub fn refresh_token(mut self, refresh_token: &str) -> Self {
self.config.refresh_token = Some(refresh_token.to_string());
self
}
pub fn drive_type(mut self, drive_type: &str) -> Self {
self.config.drive_type = drive_type.to_string();
self
}
pub fn http_client(mut self, client: HttpClient) -> Self {
self.http_client = Some(client);
self
}
}
impl Builder for AliyunDriveBuilder {
const SCHEME: Scheme = Scheme::AliyunDrive;
type Config = AliyunDriveConfig;
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);
let client = if let Some(client) = self.http_client {
client
} else {
HttpClient::new().map_err(|err| {
err.with_operation("Builder::build")
.with_context("service", Scheme::AliyunDrive)
})?
};
let sign = match self.config.access_token.clone() {
Some(access_token) if !access_token.is_empty() => {
AliyunDriveSign::Access(access_token)
}
_ => match (
self.config.client_id.clone(),
self.config.client_secret.clone(),
self.config.refresh_token.clone(),
) {
(Some(client_id), Some(client_secret), Some(refresh_token)) if
!client_id.is_empty() && !client_secret.is_empty() && !refresh_token.is_empty() => {
AliyunDriveSign::Refresh(client_id, client_secret, refresh_token, None, 0)
}
_ => return Err(Error::new(
ErrorKind::ConfigInvalid,
"access_token and a set of client_id, client_secret, and refresh_token are both missing.")
.with_operation("Builder::build")
.with_context("service", Scheme::AliyunDrive)),
},
};
let drive_type = match self.config.drive_type.as_str() {
"" | "default" => DriveType::Default,
"resource" => DriveType::Resource,
"backup" => DriveType::Backup,
_ => {
return Err(Error::new(
ErrorKind::ConfigInvalid,
"drive_type is invalid.",
))
}
};
debug!("backend use drive_type {:?}", drive_type);
Ok(AliyunDriveBackend {
core: Arc::new(AliyunDriveCore {
endpoint: "https://openapi.alipan.com".to_string(),
root,
drive_type,
signer: Arc::new(Mutex::new(AliyunDriveSigner {
drive_id: None,
sign,
})),
client,
dir_lock: Arc::new(Mutex::new(())),
}),
})
}
}
#[derive(Clone, Debug)]
pub struct AliyunDriveBackend {
core: Arc<AliyunDriveCore>,
}
impl Access for AliyunDriveBackend {
type Reader = HttpBody;
type Writer = AliyunDriveWriter;
type Lister = oio::PageLister<AliyunDriveLister>;
type BlockingReader = ();
type BlockingWriter = ();
type BlockingLister = ();
fn info(&self) -> Arc<AccessorInfo> {
let mut am = AccessorInfo::default();
am.set_scheme(Scheme::AliyunDrive)
.set_root(&self.core.root)
.set_native_capability(Capability {
stat: true,
create_dir: true,
read: true,
write: true,
write_can_multi: true,
write_multi_min_size: Some(100 * 1024),
write_multi_max_size: if cfg!(target_pointer_width = "64") {
Some(5 * 1024 * 1024 * 1024)
} else {
Some(usize::MAX)
},
delete: true,
copy: true,
rename: true,
list: true,
list_with_limit: true,
shared: true,
..Default::default()
});
am.into()
}
async fn create_dir(&self, path: &str, _args: 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> {
if from == to {
return Ok(RpRename::default());
}
let res = self.core.get_by_path(from).await?;
let file: AliyunDriveFile =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
match self.core.get_by_path(to).await {
Err(err) if err.kind() == ErrorKind::NotFound => {}
Err(err) => return Err(err),
Ok(res) => {
let file: AliyunDriveFile =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
self.core.delete_path(&file.file_id).await?;
}
};
let parent_file_id = self.core.ensure_dir_exists(get_parent(to)).await?;
self.core.move_path(&file.file_id, &parent_file_id).await?;
let from_name = get_basename(from);
let to_name = get_basename(to);
if from_name != to_name {
self.core.update_path(&file.file_id, to_name).await?;
}
Ok(RpRename::default())
}
async fn copy(&self, from: &str, to: &str, _args: OpCopy) -> Result<RpCopy> {
if from == to {
return Ok(RpCopy::default());
}
let res = self.core.get_by_path(from).await?;
let file: AliyunDriveFile =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
match self.core.get_by_path(to).await {
Err(err) if err.kind() == ErrorKind::NotFound => {}
Err(err) => return Err(err),
Ok(res) => {
let file: AliyunDriveFile =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
self.core.delete_path(&file.file_id).await?;
}
};
let parent_path = get_parent(to);
let parent_file_id = self.core.ensure_dir_exists(parent_path).await?;
let auto_rename = file.parent_file_id == parent_file_id;
let res = self
.core
.copy_path(&file.file_id, &parent_file_id, auto_rename)
.await?;
let file: CopyResponse =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
let file_id = file.file_id;
let from_name = get_basename(from);
let to_name = get_basename(to);
if from_name != to_name {
self.core.update_path(&file_id, to_name).await?;
}
Ok(RpCopy::default())
}
async fn stat(&self, path: &str, _args: OpStat) -> Result<RpStat> {
let res = self.core.get_by_path(path).await?;
let file: AliyunDriveFile =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
if file.path_type == "folder" {
let meta = Metadata::new(EntryMode::DIR).with_last_modified(
file.updated_at
.parse::<chrono::DateTime<Utc>>()
.map_err(|e| {
Error::new(ErrorKind::Unexpected, "parse last modified time").set_source(e)
})?,
);
return Ok(RpStat::new(meta));
}
let mut meta = Metadata::new(EntryMode::FILE).with_last_modified(
file.updated_at
.parse::<chrono::DateTime<Utc>>()
.map_err(|e| {
Error::new(ErrorKind::Unexpected, "parse last modified time").set_source(e)
})?,
);
if let Some(v) = file.size {
meta = meta.with_content_length(v);
}
if let Some(v) = file.content_type {
meta = meta.with_content_type(v);
}
Ok(RpStat::new(meta))
}
async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> {
let res = self.core.get_by_path(path).await?;
let file: AliyunDriveFile =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
let download_url = self.core.get_download_url(&file.file_id).await?;
let req = Request::get(&download_url)
.header(header::RANGE, args.range().to_header())
.body(Buffer::new())
.map_err(new_request_build_error)?;
let resp = self.core.client.fetch(req).await?;
let status = resp.status();
match status {
StatusCode::OK | StatusCode::PARTIAL_CONTENT => {
Ok((RpRead::default(), 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 delete(&self, path: &str, _args: OpDelete) -> Result<RpDelete> {
let res = match self.core.get_by_path(path).await {
Ok(output) => Some(output),
Err(err) if err.kind() == ErrorKind::NotFound => None,
Err(err) => return Err(err),
};
if let Some(res) = res {
let file: AliyunDriveFile =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
self.core.delete_path(&file.file_id).await?;
}
Ok(RpDelete::default())
}
async fn list(&self, path: &str, args: OpList) -> Result<(RpList, Self::Lister)> {
let parent = match self.core.get_by_path(path).await {
Err(err) if err.kind() == ErrorKind::NotFound => None,
Err(err) => return Err(err),
Ok(res) => {
let file: AliyunDriveFile =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
Some(AliyunDriveParent {
file_id: file.file_id,
path: path.to_string(),
updated_at: file.updated_at,
})
}
};
let l = AliyunDriveLister::new(self.core.clone(), parent, args.limit());
Ok((RpList::default(), oio::PageLister::new(l)))
}
async fn write(&self, path: &str, args: OpWrite) -> Result<(RpWrite, Self::Writer)> {
let parent_path = get_parent(path);
let parent_file_id = self.core.ensure_dir_exists(parent_path).await?;
match self.core.get_by_path(path).await {
Err(err) if err.kind() == ErrorKind::NotFound => {}
Err(err) => return Err(err),
Ok(res) => {
let file: AliyunDriveFile =
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
self.core.delete_path(&file.file_id).await?;
}
};
let writer =
AliyunDriveWriter::new(self.core.clone(), &parent_file_id, get_basename(path), args);
Ok((RpWrite::default(), writer))
}
}