2023-10-14 05:19:09 +02:00
|
|
|
|
|
|
|
use std::{fs, path::PathBuf, ffi::OsStr, process::Command};
|
|
|
|
|
2023-10-13 16:10:47 +02:00
|
|
|
use css_minify::optimizations::{Minifier, Level};
|
|
|
|
|
2023-10-14 05:19:09 +02:00
|
|
|
fn asset_path(asset: &PathBuf) -> PathBuf {
|
|
|
|
let mut path = asset.components().take(1).collect::<PathBuf>();
|
|
|
|
path.push(asset.components().last().unwrap());
|
|
|
|
path
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extfilter(valid: String, x: Option<&OsStr>) -> bool {
|
|
|
|
if x.is_none() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
let ext = x.clone().unwrap().to_str().unwrap().to_string();
|
|
|
|
ext == valid
|
|
|
|
}
|
|
|
|
|
2023-10-29 10:13:27 +01:00
|
|
|
fn system(cmd: &str, args: &[&str]) -> String {
|
|
|
|
let out = Command::new(cmd)
|
|
|
|
.args(args)
|
|
|
|
.output()
|
|
|
|
.unwrap();
|
2023-10-29 10:25:33 +01:00
|
|
|
|
|
|
|
if out.stderr.len() != 0 {
|
|
|
|
panic!("Got this while running {cmd} with \"{}\": {}", args.join(" "), String::from_utf8(out.stderr).unwrap())
|
|
|
|
}
|
|
|
|
|
2023-10-29 10:13:27 +01:00
|
|
|
String::from_utf8(out.stdout).unwrap()
|
|
|
|
}
|
|
|
|
|
2023-10-13 16:10:47 +02:00
|
|
|
fn main() {
|
2023-10-20 16:49:21 +02:00
|
|
|
|
|
|
|
println!("cargo:rerun-if-changed=static/assets");
|
|
|
|
|
2023-10-13 16:10:47 +02:00
|
|
|
let assets = fs::read_dir("static/assets").unwrap();
|
|
|
|
let assets = assets
|
|
|
|
.map(|x| x.unwrap().path())
|
|
|
|
.filter(|x| x.extension().is_some())
|
|
|
|
.collect::<Vec<PathBuf>>();
|
|
|
|
|
2023-10-14 05:19:09 +02:00
|
|
|
let styles = assets
|
|
|
|
.iter()
|
|
|
|
.filter(|x| {
|
|
|
|
extfilter("css".into(), x.extension())
|
|
|
|
})
|
|
|
|
.collect::<Vec<&PathBuf>>();
|
|
|
|
|
|
|
|
let scripts = assets
|
|
|
|
.iter()
|
|
|
|
.filter(|x| {
|
|
|
|
extfilter("js".into(), x.extension())
|
|
|
|
})
|
|
|
|
.collect::<Vec<&PathBuf>>();
|
|
|
|
|
|
|
|
styles.iter().for_each(|asset| {
|
2023-10-13 16:10:47 +02:00
|
|
|
let bundled = Minifier::default().minify(
|
|
|
|
String::from_utf8(fs::read(asset).unwrap()).unwrap().as_str(),
|
|
|
|
Level::Zero
|
|
|
|
).unwrap();
|
|
|
|
|
2023-10-14 05:19:09 +02:00
|
|
|
fs::write(asset_path(asset), bundled).unwrap();
|
|
|
|
});
|
|
|
|
|
|
|
|
scripts.iter().for_each(|asset| {
|
|
|
|
Command::new("uglifyjs")
|
|
|
|
.arg("-c")
|
|
|
|
.arg(asset)
|
|
|
|
.arg("-o")
|
|
|
|
.arg(asset_path(asset))
|
|
|
|
.spawn()
|
|
|
|
.unwrap();
|
2023-10-29 10:11:38 +01:00
|
|
|
});
|
|
|
|
|
2023-10-29 10:13:27 +01:00
|
|
|
let commit = system("git", &["rev-parse", "HEAD"]);
|
2023-10-29 10:25:53 +01:00
|
|
|
let branch = system("git", &["rev-parse", "--abbrev-ref", "HEAD"]);
|
2023-10-29 10:14:58 +01:00
|
|
|
|
2023-10-29 10:11:38 +01:00
|
|
|
println!("cargo:rustc-env=COMMIT_HASH={commit}");
|
2023-10-29 10:14:58 +01:00
|
|
|
println!("cargo:rustc-env=COMMIT_BRANCH={branch}");
|
2023-10-13 16:10:47 +02:00
|
|
|
}
|