mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 19:30:57 +01:00
126 lines
3.4 KiB
Rust
126 lines
3.4 KiB
Rust
use crate::{error::Error, storage::StorageImpl};
|
|
use actix_web::{
|
|
http::header::{CONTENT_ENCODING, CONTENT_TYPE},
|
|
HttpResponse,
|
|
};
|
|
use fs_err::tokio as fs;
|
|
use pesde::{names::PackageName, source::version_id::VersionId};
|
|
use std::{
|
|
fmt::Display,
|
|
path::{Path, PathBuf},
|
|
};
|
|
|
|
#[derive(Debug)]
|
|
pub struct FSStorage {
|
|
pub root: PathBuf,
|
|
}
|
|
|
|
async fn read_file_to_response(path: &Path, content_type: &str) -> Result<HttpResponse, Error> {
|
|
Ok(match fs::read(path).await {
|
|
Ok(contents) => HttpResponse::Ok()
|
|
.append_header((CONTENT_TYPE, content_type))
|
|
.append_header((CONTENT_ENCODING, "gzip"))
|
|
.body(contents),
|
|
Err(e) if e.kind() == std::io::ErrorKind::NotFound => HttpResponse::NotFound().finish(),
|
|
Err(e) => return Err(e.into()),
|
|
})
|
|
}
|
|
|
|
impl StorageImpl for FSStorage {
|
|
async fn store_package(
|
|
&self,
|
|
package_name: &PackageName,
|
|
version: &VersionId,
|
|
contents: Vec<u8>,
|
|
) -> Result<(), Error> {
|
|
let (scope, name) = package_name.as_str();
|
|
|
|
let path = self
|
|
.root
|
|
.join(scope)
|
|
.join(name)
|
|
.join(version.version().to_string())
|
|
.join(version.target().to_string());
|
|
fs::create_dir_all(&path).await?;
|
|
|
|
fs::write(path.join("pkg.tar.gz"), &contents).await?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn get_package(
|
|
&self,
|
|
package_name: &PackageName,
|
|
version: &VersionId,
|
|
) -> Result<HttpResponse, Error> {
|
|
let (scope, name) = package_name.as_str();
|
|
|
|
let path = self
|
|
.root
|
|
.join(scope)
|
|
.join(name)
|
|
.join(version.version().to_string())
|
|
.join(version.target().to_string());
|
|
|
|
read_file_to_response(&path.join("pkg.tar.gz"), "application/gzip").await
|
|
}
|
|
|
|
async fn store_readme(
|
|
&self,
|
|
package_name: &PackageName,
|
|
version: &VersionId,
|
|
contents: Vec<u8>,
|
|
) -> Result<(), Error> {
|
|
let (scope, name) = package_name.as_str();
|
|
|
|
let path = self
|
|
.root
|
|
.join(scope)
|
|
.join(name)
|
|
.join(version.version().to_string())
|
|
.join(version.target().to_string());
|
|
fs::create_dir_all(&path).await?;
|
|
|
|
fs::write(path.join("readme.gz"), &contents).await?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn get_readme(
|
|
&self,
|
|
package_name: &PackageName,
|
|
version: &VersionId,
|
|
) -> Result<HttpResponse, Error> {
|
|
let (scope, name) = package_name.as_str();
|
|
|
|
let path = self
|
|
.root
|
|
.join(scope)
|
|
.join(name)
|
|
.join(version.version().to_string())
|
|
.join(version.target().to_string());
|
|
|
|
read_file_to_response(&path.join("readme.gz"), "text/plain").await
|
|
}
|
|
|
|
async fn store_doc(&self, doc_hash: String, contents: Vec<u8>) -> Result<(), Error> {
|
|
let path = self.root.join("Doc");
|
|
fs::create_dir_all(&path).await?;
|
|
|
|
fs::write(path.join(format!("{doc_hash}.gz")), &contents).await?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn get_doc(&self, doc_hash: &str) -> Result<HttpResponse, Error> {
|
|
let path = self.root.join("Doc");
|
|
|
|
read_file_to_response(&path.join(format!("{doc_hash}.gz")), "text/plain").await
|
|
}
|
|
}
|
|
|
|
impl Display for FSStorage {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(f, "FS")
|
|
}
|
|
}
|