| // 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 http::StatusCode; |
| use log::debug; |
| |
| use super::HTTP_SCHEME; |
| use super::config::HttpConfig; |
| use super::core::HttpCore; |
| use super::core::parse_error; |
| use super::reader::*; |
| use opendal_core::raw::*; |
| use opendal_core::*; |
| |
| /// HTTP Read-only service support like [Nginx](https://www.nginx.com/) and [Caddy](https://caddyserver.com/). |
| #[doc = include_str!("docs.md")] |
| #[derive(Default)] |
| pub struct HttpBuilder { |
| pub(super) config: HttpConfig, |
| } |
| |
| impl Debug for HttpBuilder { |
| fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| f.debug_struct("HttpBuilder") |
| .field("config", &self.config) |
| .finish_non_exhaustive() |
| } |
| } |
| |
| impl HttpBuilder { |
| /// Set endpoint for http backend. |
| /// |
| /// For example: `https://example.com` |
| pub fn endpoint(mut self, endpoint: &str) -> Self { |
| self.config.endpoint = if endpoint.is_empty() { |
| None |
| } else { |
| Some(endpoint.to_string()) |
| }; |
| |
| self |
| } |
| |
| /// set username for http backend |
| /// |
| /// default: no username |
| pub fn username(mut self, username: &str) -> Self { |
| if !username.is_empty() { |
| self.config.username = Some(username.to_owned()); |
| } |
| self |
| } |
| |
| /// set password for http backend |
| /// |
| /// default: no password |
| pub fn password(mut self, password: &str) -> Self { |
| if !password.is_empty() { |
| self.config.password = Some(password.to_owned()); |
| } |
| self |
| } |
| |
| /// set bearer token for http backend |
| /// |
| /// default: no access token |
| pub fn token(mut self, token: &str) -> Self { |
| if !token.is_empty() { |
| self.config.token = Some(token.to_string()); |
| } |
| self |
| } |
| |
| /// Set root path of http backend. |
| pub fn root(mut self, root: &str) -> Self { |
| self.config.root = if root.is_empty() { |
| None |
| } else { |
| Some(root.to_string()) |
| }; |
| |
| self |
| } |
| } |
| |
| impl Builder for HttpBuilder { |
| type Config = HttpConfig; |
| |
| fn build(self) -> Result<impl Service> { |
| debug!("backend build started: {:?}", &self); |
| |
| let endpoint = match &self.config.endpoint { |
| Some(v) => v, |
| None => { |
| return Err(Error::new(ErrorKind::ConfigInvalid, "endpoint is empty") |
| .with_context("service", HTTP_SCHEME)); |
| } |
| }; |
| |
| let root = normalize_root(&self.config.root.unwrap_or_default()); |
| debug!("backend use root {root}"); |
| |
| let mut auth = None; |
| if let Some(username) = &self.config.username { |
| auth = Some(format_authorization_by_basic( |
| username, |
| self.config.password.as_deref().unwrap_or_default(), |
| )?); |
| } |
| if let Some(token) = &self.config.token { |
| auth = Some(format_authorization_by_bearer(token)?) |
| } |
| |
| let info = ServiceInfo::new(HTTP_SCHEME, &root, ""); |
| let capability = Capability { |
| stat: true, |
| stat_with_if_match: true, |
| stat_with_if_none_match: true, |
| stat_with_if_modified_since: true, |
| stat_with_if_unmodified_since: true, |
| |
| read: true, |
| read_with_suffix: true, |
| |
| read_with_if_match: true, |
| read_with_if_none_match: true, |
| read_with_if_modified_since: true, |
| read_with_if_unmodified_since: true, |
| |
| presign: auth.is_none(), |
| presign_read: auth.is_none(), |
| presign_stat: auth.is_none(), |
| |
| shared: true, |
| |
| ..Default::default() |
| }; |
| |
| let accessor_info = info; |
| |
| let core = Arc::new(HttpCore { |
| info: accessor_info, |
| capability, |
| endpoint: endpoint.to_string(), |
| root, |
| authorization: auth, |
| }); |
| |
| Ok(HttpBackend { core }) |
| } |
| } |
| |
| /// HttpBackend implements [`Service`] for read-only HTTP directory listings and files. |
| #[derive(Clone, Debug)] |
| pub struct HttpBackend { |
| pub(crate) core: Arc<HttpCore>, |
| } |
| |
| impl Service for HttpBackend { |
| type Reader = oio::StreamReader<HttpReader>; |
| type Writer = (); |
| type Lister = (); |
| type Deleter = (); |
| type Copier = (); |
| |
| fn info(&self) -> ServiceInfo { |
| self.core.info.clone() |
| } |
| |
| fn capability(&self) -> Capability { |
| self.core.capability |
| } |
| |
| async fn create_dir( |
| &self, |
| _ctx: &OperationContext, |
| _path: &str, |
| _args: OpCreateDir, |
| ) -> Result<RpCreateDir> { |
| Err(Error::new( |
| ErrorKind::Unsupported, |
| "operation is not supported", |
| )) |
| } |
| |
| async fn stat(&self, ctx: &OperationContext, path: &str, args: OpStat) -> Result<RpStat> { |
| // Stat root always returns a DIR. |
| if path == "/" { |
| return Ok(RpStat::new(Metadata::new(EntryMode::DIR))); |
| } |
| |
| let resp = self.core.http_head(ctx, path, &args).await?; |
| |
| let status = resp.status(); |
| |
| match status { |
| StatusCode::OK => parse_into_metadata(path, resp.headers()).map(RpStat::new), |
| // HTTP Server like nginx could return FORBIDDEN if auto-index |
| // is not enabled, we should ignore them. |
| StatusCode::NOT_FOUND | StatusCode::FORBIDDEN if path.ends_with('/') => { |
| Ok(RpStat::new(Metadata::new(EntryMode::DIR))) |
| } |
| _ => Err(parse_error(resp)), |
| } |
| } |
| fn read(&self, ctx: &OperationContext, path: &str, args: OpRead) -> Result<Self::Reader> { |
| let output: oio::StreamReader<HttpReader> = { |
| Ok(oio::StreamReader::new(HttpReader::new( |
| self.clone(), |
| ctx.clone(), |
| path, |
| args, |
| ))) |
| }?; |
| |
| Ok(output) |
| } |
| |
| fn write(&self, _ctx: &OperationContext, _path: &str, _args: OpWrite) -> Result<Self::Writer> { |
| Err(Error::new( |
| ErrorKind::Unsupported, |
| "operation is not supported", |
| )) |
| } |
| |
| fn delete(&self, _ctx: &OperationContext) -> Result<Self::Deleter> { |
| Err(Error::new( |
| ErrorKind::Unsupported, |
| "operation is not supported", |
| )) |
| } |
| |
| fn list(&self, _ctx: &OperationContext, _path: &str, _args: OpList) -> Result<Self::Lister> { |
| Err(Error::new( |
| ErrorKind::Unsupported, |
| "operation is not supported", |
| )) |
| } |
| |
| fn copy( |
| &self, |
| _ctx: &OperationContext, |
| _from: &str, |
| _to: &str, |
| _args: OpCopy, |
| _opts: OpCopier, |
| ) -> Result<Self::Copier> { |
| Err(Error::new( |
| ErrorKind::Unsupported, |
| "operation is not supported", |
| )) |
| } |
| |
| async fn rename( |
| &self, |
| _ctx: &OperationContext, |
| _from: &str, |
| _to: &str, |
| _args: OpRename, |
| ) -> Result<RpRename> { |
| Err(Error::new( |
| ErrorKind::Unsupported, |
| "operation is not supported", |
| )) |
| } |
| |
| async fn presign( |
| &self, |
| _ctx: &OperationContext, |
| path: &str, |
| args: OpPresign, |
| ) -> Result<RpPresign> { |
| if self.core.has_authorization() { |
| return Err(Error::new( |
| ErrorKind::Unsupported, |
| "Http doesn't support presigned request on backend with authorization", |
| )); |
| } |
| |
| let req = match args.operation() { |
| PresignOperation::Stat(v) => self.core.http_head_request(path, v)?, |
| PresignOperation::Read(range, v) => self.core.http_get_request(path, *range, v)?, |
| _ => { |
| return Err(Error::new( |
| ErrorKind::Unsupported, |
| "Http doesn't support presigned write", |
| )); |
| } |
| }; |
| |
| let (parts, _) = req.into_parts(); |
| |
| Ok(RpPresign::new(PresignedRequest::new( |
| parts.method, |
| parts.uri, |
| parts.headers, |
| ))) |
| } |
| } |