2023-01-07 13:57:19 +00:00
|
|
|
use std::{fs, path::Path};
|
|
|
|
|
2023-01-10 15:17:19 +00:00
|
|
|
use {
|
|
|
|
askama::Template,
|
|
|
|
color_eyre::{eyre::eyre, Result},
|
|
|
|
serde::Deserialize,
|
|
|
|
};
|
2023-01-07 13:57:19 +00:00
|
|
|
|
|
|
|
mod filters;
|
|
|
|
|
|
|
|
#[derive(Debug, Template)]
|
|
|
|
#[template(path = "video.html")]
|
|
|
|
pub struct VideoTemplate {
|
|
|
|
pub page_title: String,
|
|
|
|
pub rendered_markdown: String,
|
|
|
|
pub speedrun: Option<SpeedrunData>,
|
|
|
|
pub video_id: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
|
|
struct VideoData {
|
|
|
|
pub id: String,
|
|
|
|
pub page_title: String,
|
|
|
|
pub speedrun: Option<SpeedrunData>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
|
|
pub struct SpeedrunData {
|
|
|
|
pub chapters: Option<Vec<(String, String)>>,
|
|
|
|
pub entry: String,
|
|
|
|
pub leaderboard: String,
|
2023-01-08 11:45:53 +00:00
|
|
|
pub mods: Option<Vec<String>>,
|
2023-01-07 13:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn write_all(public_dir: &Path) -> Result<()> {
|
|
|
|
let video_datas = {
|
|
|
|
let mut data = vec![];
|
|
|
|
|
|
|
|
for dir in ["2022"] {
|
|
|
|
for file in fs::read_dir(format!("source/video/{dir}"))? {
|
|
|
|
let file_path = file?.path();
|
|
|
|
if file_path.extension().unwrap() != "md" {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-01-08 11:51:04 +00:00
|
|
|
let file_contents = fs::read_to_string(&file_path)?;
|
2023-01-07 13:57:19 +00:00
|
|
|
let (video_data, markdown) =
|
2023-01-08 11:43:58 +00:00
|
|
|
match toml_frontmatter::parse::<VideoData>(&file_contents) {
|
|
|
|
Ok(parsed) => parsed,
|
|
|
|
Err(error) => {
|
2023-01-08 11:51:04 +00:00
|
|
|
println!("{:?} {}", file_path.file_name().unwrap(), error);
|
2023-01-08 11:43:58 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
2023-01-07 13:57:19 +00:00
|
|
|
data.push((video_data, markdown.to_string()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
data
|
|
|
|
};
|
|
|
|
|
2023-01-10 15:17:19 +00:00
|
|
|
let video_dir = public_dir.join("v");
|
|
|
|
let expected_video_count = video_datas.len();
|
|
|
|
|
2023-01-07 13:57:19 +00:00
|
|
|
for (video_data, markdown) in video_datas {
|
2023-01-10 15:17:19 +00:00
|
|
|
let video_dir = video_dir.join(&video_data.id.to_lowercase());
|
2023-01-07 13:57:19 +00:00
|
|
|
fs::create_dir_all(&video_dir)?;
|
|
|
|
|
|
|
|
let template = VideoTemplate {
|
|
|
|
page_title: video_data.page_title,
|
|
|
|
rendered_markdown: comrak::markdown_to_html(
|
|
|
|
&markdown,
|
|
|
|
&Default::default(),
|
|
|
|
),
|
|
|
|
speedrun: video_data.speedrun,
|
|
|
|
video_id: video_data.id,
|
|
|
|
};
|
2023-01-09 14:43:05 +00:00
|
|
|
|
|
|
|
fs::write(
|
|
|
|
video_dir.join("index.html"),
|
|
|
|
crate::minify::html(template.render()?)?,
|
|
|
|
)?;
|
2023-01-07 13:57:19 +00:00
|
|
|
}
|
|
|
|
|
2023-01-10 15:17:19 +00:00
|
|
|
let actual_video_count = fs::read_dir(video_dir)?.count();
|
|
|
|
if expected_video_count != actual_video_count {
|
|
|
|
return Err(eyre!(
|
|
|
|
"Expected {} videos, found {}",
|
|
|
|
expected_video_count,
|
|
|
|
actual_video_count
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2023-01-07 13:57:19 +00:00
|
|
|
Ok(())
|
|
|
|
}
|