summaryrefslogtreecommitdiff
path: root/includes/util/agewarning.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/util/agewarning.inc')
-rw-r--r--includes/util/agewarning.inc35
1 files changed, 0 insertions, 35 deletions
diff --git a/includes/util/agewarning.inc b/includes/util/agewarning.inc
deleted file mode 100644
index 06a5e4d..0000000
--- a/includes/util/agewarning.inc
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-function showWarning($name, $id, $system) {
- $ntfy = $GLOBALS["ColdHazeApp"]["ntfy"];
-
- if (time() > 1677628800) {
- file_get_contents('https://' . $ntfy["server"] . '/' . $ntfy['topic'], false, stream_context_create([
- 'http' => [
- 'method' => 'POST',
- 'header' =>
- "Content-Type: text/plain\r\n" .
- "Title: " . formatPonypush("⚠️ $name does not have an age or birth year set") . "\r\n" .
- "Priority: max\r\n" .
- "Tags: switch\r\n" .
- "Actions: view, Edit on Ponycule, https://ponycule.p.equestria.dev/-/metadata/" . ($system === "gdapd" ? "raindrops" : ($system === "hrbom" ? "moonglow" : $GLOBALS["ColdHazeApp"]["other"]["slug"])) . "/" . $id . "/, clear=true\r\n" .
- "Authorization: Basic " . base64_encode($ntfy["user"] . ":" . $ntfy["password"]),
- 'content' => formatPonypush("To make sure they appear on the fronting schedule (and to make sure they can front again), they need to set an age or birth year now.")
- ]
- ]));
- } else {
- file_get_contents('https://' . $ntfy["server"] . '/' . $ntfy['topic'], false, stream_context_create([
- 'http' => [
- 'method' => 'POST',
- 'header' =>
- "Content-Type: text/plain\r\n" .
- "Title: " . formatPonypush("⚠️ $name does not have an age or birth year set") . "\r\n" .
- "Priority: max\r\n" .
- "Tags: switch\r\n" .
- "Actions: view, Edit on Ponycule, https://ponycule.p.equestria.dev/-/metadata/" . ($system === "gdapd" ? "raindrops" : ($system === "hrbom" ? "moonglow" : $GLOBALS["ColdHazeApp"]["other"]["slug"])) . "/" . $id . "/, clear=true\r\n" .
- "Authorization: Basic " . base64_encode($ntfy["user"] . ":" . $ntfy["password"]),
- 'content' => formatPonypush("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