diff options
Diffstat (limited to 'includes/agewarning.inc')
-rw-r--r-- | includes/agewarning.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/includes/agewarning.inc b/includes/agewarning.inc new file mode 100644 index 0000000..a7ab501 --- /dev/null +++ b/includes/agewarning.inc @@ -0,0 +1,19 @@ +<?php + +function showWarning($name, $id, $system) { + $ntfy = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true)["ntfy"]; + + file_get_contents('https://' . $ntfy["server"] . '/' . $ntfy['topic'], false, stream_context_create([ + 'http' => [ + 'method' => 'POST', + 'header' => + "Content-Type: text/plain\r\n" . + "Title: ⚠️ $name does not have an age or birth year set\r\n" . + "Priority: max\r\n" . + "Tags: switch\r\n" . + "Actions: view, Edit on Cold Haze, https://ponies.equestria.horse/-/metadata/" . ($system === "gdapd" ? "raindrops" : "cloudburst") . "/" . $id . "/, clear=true\r\n" . + "Authorization: Basic " . base64_encode($ntfy["user"] . ":" . $ntfy["password"]), + 'content' => "To make sure they still appear on the fronting schedule after March 1st, they need to set an age or birth year now." + ] + ])); +}
\ No newline at end of file |