use std::fmt::Debug;
use std::fmt::Formatter;
use std::sync::Arc;
use bytes::Buf;
use http::Response;
use http::StatusCode;
use log::debug;
use super::core::*;
use super::error::parse_error;
use super::error::PcloudError;
use super::lister::PcloudLister;
use super::writer::PcloudWriter;
use super::writer::PcloudWriters;
use crate::raw::*;
use crate::services::PcloudConfig;
use crate::*;
impl Configurator for PcloudConfig {
type Builder = PcloudBuilder;
fn into_builder(self) -> Self::Builder {
PcloudBuilder {
config: self,
http_client: None,
}
}
}
#[doc = include_str!("docs.md")]
#[derive(Default)]
pub struct PcloudBuilder {
config: PcloudConfig,
http_client: Option<HttpClient>,
}
impl Debug for PcloudBuilder {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let mut d = f.debug_struct("PcloudBuilder");
d.field("config", &self.config);
d.finish_non_exhaustive()
}
}
impl PcloudBuilder {
pub fn root(mut self, root: &str) -> Self {
self.config.root = if root.is_empty() {
None
} else {
Some(root.to_string())
};
self
}
pub fn endpoint(mut self, endpoint: &str) -> Self {
self.config.endpoint = endpoint.to_string();
self
}
pub fn username(mut self, username: &str) -> Self {
self.config.username = if username.is_empty() {
None
} else {
Some(username.to_string())
};
self
}
pub fn password(mut self, password: &str) -> Self {
self.config.password = if password.is_empty() {
None
} else {
Some(password.to_string())
};
self
}
pub fn http_client(mut self, client: HttpClient) -> Self {
self.http_client = Some(client);
self
}
}
impl Builder for PcloudBuilder {
const SCHEME: Scheme = Scheme::Pcloud;
type Config = PcloudConfig;
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);
if self.config.endpoint.is_empty() {
return Err(Error::new(ErrorKind::ConfigInvalid, "endpoint is empty")
.with_operation("Builder::build")
.with_context("service", Scheme::Pcloud));
}
debug!("backend use endpoint {}", &self.config.endpoint);
let username = match &self.config.username {
Some(username) => Ok(username.clone()),
None => Err(Error::new(ErrorKind::ConfigInvalid, "username is empty")
.with_operation("Builder::build")
.with_context("service", Scheme::Pcloud)),
}?;
let password = match &self.config.password {
Some(password) => Ok(password.clone()),
None => Err(Error::new(ErrorKind::ConfigInvalid, "password is empty")
.with_operation("Builder::build")
.with_context("service", Scheme::Pcloud)),
}?;
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::Pcloud)
})?
};
Ok(PcloudBackend {
core: Arc::new(PcloudCore {
root,
endpoint: self.config.endpoint.clone(),
username,
password,
client,
}),
})
}
}
#[derive(Debug, Clone)]
pub struct PcloudBackend {
core: Arc<PcloudCore>,
}
impl Access for PcloudBackend {
type Reader = HttpBody;
type Writer = PcloudWriters;
type Lister = oio::PageLister<PcloudLister>;
type BlockingReader = ();
type BlockingWriter = ();
type BlockingLister = ();
fn info(&self) -> Arc<AccessorInfo> {
let mut am = AccessorInfo::default();
am.set_scheme(Scheme::Pcloud)
.set_root(&self.core.root)
.set_native_capability(Capability {
stat: true,
create_dir: true,
read: true,
write: true,
delete: true,
rename: true,
copy: true,
list: true,
shared: true,
..Default::default()
});
am.into()
}
async fn create_dir(&self, path: &str, _: OpCreateDir) -> Result<RpCreateDir> {
self.core.ensure_dir_exists(path).await?;
Ok(RpCreateDir::default())
}
async fn stat(&self, path: &str, _args: OpStat) -> Result<RpStat> {
let resp = self.core.stat(path).await?;
let status = resp.status();
match status {
StatusCode::OK => {
let bs = resp.into_body();
let resp: StatResponse =
serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
let result = resp.result;
if result == 2010 || result == 2055 || result == 2002 {
return Err(Error::new(ErrorKind::NotFound, format!("{resp:?}")));
}
if result != 0 {
return Err(Error::new(ErrorKind::Unexpected, format!("{resp:?}")));
}
if let Some(md) = resp.metadata {
let md = parse_stat_metadata(md);
return md.map(RpStat::new);
}
Err(Error::new(ErrorKind::Unexpected, format!("{resp:?}")))
}
_ => Err(parse_error(resp)),
}
}
async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> {
let link = self.core.get_file_link(path).await?;
let resp = self.core.download(&link, args.range()).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 write(&self, path: &str, _args: OpWrite) -> Result<(RpWrite, Self::Writer)> {
let writer = PcloudWriter::new(self.core.clone(), path.to_string());
let w = oio::OneShotWriter::new(writer);
Ok((RpWrite::default(), w))
}
async fn delete(&self, path: &str, _: OpDelete) -> Result<RpDelete> {
let resp = if path.ends_with('/') {
self.core.delete_folder(path).await?
} else {
self.core.delete_file(path).await?
};
let status = resp.status();
match status {
StatusCode::OK => {
let bs = resp.into_body();
let resp: PcloudError =
serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
let result = resp.result;
if result != 0 && result != 2005 && result != 2009 {
return Err(Error::new(ErrorKind::Unexpected, format!("{resp:?}")));
}
Ok(RpDelete::default())
}
_ => Err(parse_error(resp)),
}
}
async fn list(&self, path: &str, _args: OpList) -> Result<(RpList, Self::Lister)> {
let l = PcloudLister::new(self.core.clone(), path);
Ok((RpList::default(), oio::PageLister::new(l)))
}
async fn copy(&self, from: &str, to: &str, _args: OpCopy) -> Result<RpCopy> {
self.core.ensure_dir_exists(to).await?;
let resp = if from.ends_with('/') {
self.core.copy_folder(from, to).await?
} else {
self.core.copy_file(from, to).await?
};
let status = resp.status();
match status {
StatusCode::OK => {
let bs = resp.into_body();
let resp: PcloudError =
serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
let result = resp.result;
if result == 2009 || result == 2010 || result == 2055 || result == 2002 {
return Err(Error::new(ErrorKind::NotFound, format!("{resp:?}")));
}
if result != 0 {
return Err(Error::new(ErrorKind::Unexpected, format!("{resp:?}")));
}
Ok(RpCopy::default())
}
_ => Err(parse_error(resp)),
}
}
async fn rename(&self, from: &str, to: &str, _args: OpRename) -> Result<RpRename> {
self.core.ensure_dir_exists(to).await?;
let resp = if from.ends_with('/') {
self.core.rename_folder(from, to).await?
} else {
self.core.rename_file(from, to).await?
};
let status = resp.status();
match status {
StatusCode::OK => {
let bs = resp.into_body();
let resp: PcloudError =
serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
let result = resp.result;
if result == 2009 || result == 2010 || result == 2055 || result == 2002 {
return Err(Error::new(ErrorKind::NotFound, format!("{resp:?}")));
}
if result != 0 {
return Err(Error::new(ErrorKind::Unexpected, format!("{resp:?}")));
}
Ok(RpRename::default())
}
_ => Err(parse_error(resp)),
}
}
}