mirror of
https://github.com/FliegendeWurst/raspi-oled.git
synced 2024-11-09 13:40:36 +00:00
refresh_json: add option to skip weekly events
This commit is contained in:
parent
1a5272b7ba
commit
1a36ba5c1d
@ -1,8 +1,9 @@
|
|||||||
use std::{error::Error, fs};
|
use std::{env, error::Error, fs};
|
||||||
|
|
||||||
static WEEKLY: &'static str = include_str!("../../events_weekly.json");
|
static WEEKLY: &'static str = include_str!("../../events_weekly.json");
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
let args = env::args().skip(1).collect::<Vec<_>>();
|
||||||
let url = "http://nixos.fritz.box:12783/custom/event_alerts";
|
let url = "http://nixos.fritz.box:12783/custom/event_alerts";
|
||||||
|
|
||||||
if let Ok(json) = get_json(url) {
|
if let Ok(json) = get_json(url) {
|
||||||
@ -11,7 +12,11 @@ fn main() {
|
|||||||
buf += "\"events\": ";
|
buf += "\"events\": ";
|
||||||
buf += &json;
|
buf += &json;
|
||||||
buf += ",";
|
buf += ",";
|
||||||
buf += WEEKLY;
|
if args.len() >= 1 && args[0] == "--no-weekly" {
|
||||||
|
buf += r#""weekly": []"#;
|
||||||
|
} else {
|
||||||
|
buf += WEEKLY;
|
||||||
|
}
|
||||||
buf += "}";
|
buf += "}";
|
||||||
fs::write("events.json", buf.as_bytes()).unwrap();
|
fs::write("events.json", buf.as_bytes()).unwrap();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user