cycles-quartz/cli/src/handler/init.rs

62 lines
1.8 KiB
Rust
Raw Normal View History

2024-08-08 23:47:02 +00:00
use std::path::PathBuf;
use async_trait::async_trait;
2024-08-08 23:47:02 +00:00
use cargo_generate::{generate, GenerateArgs, TemplatePath, Vcs};
use tokio::fs;
use tracing::trace;
use crate::{
config::Config,
error::Error,
handler::Handler,
request::init::InitRequest,
response::{init::InitResponse, Response},
};
#[async_trait]
impl Handler for InitRequest {
type Error = Error;
2024-08-02 19:19:07 +00:00
type Response = Response;
async fn handle(self, config: Config) -> Result<Self::Response, Self::Error> {
trace!("initializing directory structure...");
2024-08-08 23:47:02 +00:00
let root_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("..");
let parent = self
.name
.parent()
.map(|p| p.to_path_buf())
.expect("path already validated");
fs::create_dir_all(&parent)
.await
.map_err(|e| Error::GenericErr(e.to_string()))?;
let file_name = self
.name
.file_name()
.and_then(|f| f.to_str())
.expect("path already validated");
2024-08-08 23:47:02 +00:00
let wasm_pack_args = GenerateArgs {
name: Some(file_name.to_string()),
destination: Some(config.app_dir.join(parent)),
overwrite: true,
2024-08-08 23:47:02 +00:00
vcs: Some(Vcs::Git),
template_path: TemplatePath {
// git: Some("git@github.com:informalsystems/cycles-quartz.git".to_string()), // TODO: replace with public http address when open-sourced
path: Some(root_dir.join("apps/transfers").display().to_string()),
..TemplatePath::default()
},
..GenerateArgs::default()
};
let result_dir = generate(wasm_pack_args)
.expect("something went wrong!")
.display()
.to_string();
Ok(InitResponse { result_dir }.into())
}
}