refresh_json: add option to skip weekly events

This commit is contained in:
FliegendeWurst 2022-07-26 22:03:52 +02:00
parent 1a5272b7ba
commit 1a36ba5c1d

View File

@ -1,8 +1,9 @@
use std::{error::Error, fs};
use std::{env, error::Error, fs};
static WEEKLY: &'static str = include_str!("../../events_weekly.json");
fn main() {
let args = env::args().skip(1).collect::<Vec<_>>();
let url = "http://nixos.fritz.box:12783/custom/event_alerts";
if let Ok(json) = get_json(url) {
@ -11,7 +12,11 @@ fn main() {
buf += "\"events\": ";
buf += &json;
buf += ",";
buf += WEEKLY;
if args.len() >= 1 && args[0] == "--no-weekly" {
buf += r#""weekly": []"#;
} else {
buf += WEEKLY;
}
buf += "}";
fs::write("events.json", buf.as_bytes()).unwrap();
}
@ -19,4 +24,4 @@ fn main() {
fn get_json(url: &str) -> Result<String, Box<dyn Error>> {
Ok(ureq::get(url).call()?.into_string()?)
}
}