2023-10-22 14:40:59 -04:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2023-10-22 13:44:03 -04:00
|
|
|
use crate::blog_post::BlogPost;
|
2023-10-20 19:13:22 -04:00
|
|
|
use crate::cli::parameters::BuildArgs;
|
|
|
|
use crate::config::Config;
|
2023-10-22 13:44:03 -04:00
|
|
|
use crate::error::CustomError;
|
2023-10-20 20:16:22 -04:00
|
|
|
use walkdir::WalkDir;
|
2023-10-20 19:13:22 -04:00
|
|
|
|
2023-10-22 13:44:03 -04:00
|
|
|
pub(crate) async fn build_site(args: BuildArgs) -> Result<(), CustomError> {
|
2023-10-20 20:16:22 -04:00
|
|
|
let config = Config::load_from_file(args.config).await?;
|
2023-10-22 13:44:03 -04:00
|
|
|
let root_directory = config.get_root_directory().to_owned();
|
2023-10-22 14:40:59 -04:00
|
|
|
let output_directory = get_output_directory(&config).await?;
|
2023-10-22 13:44:03 -04:00
|
|
|
let post_directories = WalkDir::new(config.get_posts_directory())
|
2023-10-20 20:16:22 -04:00
|
|
|
.into_iter()
|
|
|
|
.filter(|e| match e {
|
2023-10-22 13:44:03 -04:00
|
|
|
Ok(entry) if entry.depth() == 1 && entry.file_type().is_dir() => true,
|
|
|
|
Ok(_) => false,
|
2023-10-20 20:16:22 -04:00
|
|
|
Err(_) => true,
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
2023-10-22 13:44:03 -04:00
|
|
|
let load_jobs = post_directories
|
2023-10-20 20:16:22 -04:00
|
|
|
.into_iter()
|
|
|
|
.map(walkdir::DirEntry::into_path)
|
2023-10-22 13:44:03 -04:00
|
|
|
.map(|path| tokio::spawn(BlogPost::load_blog_post(root_directory.clone(), path)));
|
2023-10-22 13:50:11 -04:00
|
|
|
let mut blog_posts = Vec::new();
|
|
|
|
for job in load_jobs {
|
|
|
|
blog_posts.push(job.await??);
|
|
|
|
}
|
|
|
|
println!("{:?}", blog_posts);
|
2023-10-22 13:44:03 -04:00
|
|
|
Ok(())
|
2023-10-20 20:16:22 -04:00
|
|
|
}
|
2023-10-22 14:40:59 -04:00
|
|
|
|
|
|
|
/// Delete everything inside the output directory and return the path to that directory.
|
|
|
|
async fn get_output_directory(config: &Config) -> Result<PathBuf, CustomError> {
|
|
|
|
let output_directory = config.get_output_directory();
|
|
|
|
if !output_directory.exists() {
|
|
|
|
tokio::fs::create_dir(&output_directory).await?;
|
|
|
|
} else {
|
|
|
|
let mut existing_entries = tokio::fs::read_dir(&output_directory).await?;
|
|
|
|
while let Some(entry) = existing_entries.next_entry().await? {
|
|
|
|
let file_type = entry.file_type().await?;
|
|
|
|
if file_type.is_dir() {
|
|
|
|
tokio::fs::remove_dir_all(entry.path()).await?;
|
|
|
|
} else {
|
|
|
|
tokio::fs::remove_file(entry.path()).await?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(output_directory)
|
|
|
|
}
|