feat: with assets
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-11-28 10:12:19 +01:00
parent 67803d315c
commit 320ff343e6
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
2 changed files with 58 additions and 0 deletions

View File

@ -403,6 +403,7 @@ pub mod architecture {
mod apt;
mod apt_ca_certificates;
mod assets;
mod cargo_binstall;
mod cargo_clean;
mod clap_sanity_test;
@ -412,6 +413,7 @@ mod sqlx;
pub mod extensions {
pub use super::apt::*;
pub use super::apt_ca_certificates::*;
pub use super::assets::*;
pub use super::cargo_binstall::*;
pub use super::cargo_clean::*;
pub use super::clap_sanity_test::*;

View File

@ -0,0 +1,56 @@
use std::{path::PathBuf, sync::Arc};
use async_trait::async_trait;
use dagger_sdk::{Container, HostDirectoryOpts, HostDirectoryOptsBuilder};
use crate::dagger_middleware::DaggerMiddleware;
use super::RustService;
pub struct Assets {
client: dagger_sdk::Query,
assets: Vec<PathBuf>,
}
impl Assets {
pub fn new(client: dagger_sdk::Query) -> Self {
Self {
client,
assets: Vec::default(),
}
}
fn with_folders(mut self, folders: impl IntoIterator<Item = impl Into<PathBuf>>) -> Self {
let mut folders = folders.into_iter().map(|f| f.into()).collect::<Vec<_>>();
self.assets.append(&mut folders);
self
}
}
#[async_trait]
impl DaggerMiddleware for Assets {
async fn handle(&self, container: Container) -> eyre::Result<Container> {
let container = self.assets.iter().fold(container, |container, asset_path| {
let rel_path = asset_path.display().to_string();
let path = self.client.host().directory(&rel_path);
container.with_directory(&rel_path, path)
});
Ok(container)
}
}
pub trait AssetsExt {
fn with_assets(&mut self, folders: impl IntoIterator<Item = impl Into<PathBuf>>) -> &mut Self {
self
}
}
impl AssetsExt for RustService {
fn with_assets(&mut self, folders: impl IntoIterator<Item = impl Into<PathBuf>>) -> &mut Self {
self.with_stage(super::RustServiceStage::AfterPackage(Arc::new(
Assets::new(self.client.clone()).with_folders(folders),
)))
}
}