diff options
author | RaindropsSys <raindrops@equestria.dev> | 2024-03-30 23:40:33 +0100 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2024-03-30 23:40:33 +0100 |
commit | 6b796258d413f00e498ce7f80f73a9f6c061f29c (patch) | |
tree | 49e64a5dd4cde2acff7f0a93ed3f8e20e1cb2dc8 /jobs/FrontersNotification.php | |
parent | 5860551daa0f60103ad24e93da29f401a653f144 (diff) | |
download | pluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.tar.gz pluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.tar.bz2 pluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.zip |
Updated 5 files, added 2 files, deleted 495 files and renamed 7 files (automated)
Diffstat (limited to 'jobs/FrontersNotification.php')
-rw-r--r-- | jobs/FrontersNotification.php | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/jobs/FrontersNotification.php b/jobs/FrontersNotification.php new file mode 100644 index 0000000..ebe9213 --- /dev/null +++ b/jobs/FrontersNotification.php @@ -0,0 +1,94 @@ +<?php + +$options = json_decode($argv[1], true); +$_SERVER['DOCUMENT_ROOT'] = ".."; + +echo("Loading...\n"); + +if (!function_exists("formatPonypush")) { + function formatPonypush($message) { + return "Update to Ponypush 3.1.0 or later — (\$PA1$\$" . base64_encode($message) . "\$\$)"; + } +} + +$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/app.json"), true); +$system = $options["system"]; + +echo("Processing for system $system\n"); + +if ($system === "gdapd") { + $name = "Raindrops"; +} elseif ($system === "hrbom") { + $name = "Moonglow"; +} elseif (isset($app["other"]) && $system === $app["other"]["id"]) { + $name = $app["other"]["name"]; +} else { + die(); +} + +$fronters = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/$system/fronters.json"), true); +$currentFronter = $fronters["members"][0]["id"]; +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/$system/last.json", json_encode($currentFronter)); + +$ntfy = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/app.json"), true)["ntfy"]; + +if (count($fronters["members"]) > 1) { + echo("Creating context for 2 members\n"); + $context = stream_context_create([ + 'http' => [ + 'method' => 'POST', + 'header' => + "Content-Type: text/plain\r\n" . + "Title: " . formatPonypush("🌪️ Switch occurred in $name") . "\r\n" . + "Priority: default\r\n" . + "Tags: switch\r\n" . + "Actions: view, View " . $fronters["members"][0]["display_name"] . " on PluralKit, https://dash.pluralkit.me/profile/m/" . $fronters["members"][0]["id"] . ", clear=true;view, View " . $fronters["members"][1]["display_name"] . " on PluralKit, https://dash.pluralkit.me/profile/m/" . $fronters["members"][1]["name"] . ", clear=true\r\n" . + "Authorization: Basic " . base64_encode($ntfy["user"] . ":" . $ntfy["password"]), + 'content' => formatPonypush(($fronters["members"][0]["display_name"] ?? $fronters["members"][0]["name"]) . " and " . ($fronters["members"][1]["display_name"] ?? $fronters["members"][1]["name"]) . " switched in just now") + ] + ]); +} else if (count($fronters["members"]) > 0) { + echo("Creating context for 1 member\n"); + $context = stream_context_create([ + 'http' => [ + 'method' => 'POST', + 'header' => + "Content-Type: text/plain\r\n" . + "Title: " . formatPonypush("🌪️ Switch occurred in $name") . "\r\n" . + "Priority: default\r\n" . + "Tags: switch\r\n" . + "Actions: view, View on PluralKit, https://dash.pluralkit.me/profile/m/" . $fronters["members"][0]["id"] . ", clear=true\r\n" . + "Authorization: Basic " . base64_encode($ntfy["user"] . ":" . $ntfy["password"]), + 'content' => formatPonypush(($fronters["members"][0]["display_name"] ?? $fronters["members"][0]["name"]) . " switched in just now") + ] + ]); +} else { + echo("Creating context for no member (fallback pony)\n"); + $context = stream_context_create([ + 'http' => [ + 'method' => 'POST', + 'header' => + "Content-Type: text/plain\r\n" . + "Title: " . formatPonypush("🌪️ Switch occurred in $name") . "\r\n" . + "Priority: default\r\n" . + "Tags: switch\r\n" . + "Actions: view, View on PluralKit, https://dash.pluralkit.me/profile/s/" . $system . ", clear=true\r\n" . + "Authorization: Basic " . base64_encode($ntfy["user"] . ":" . $ntfy["password"]), + 'content' => formatPonypush("The fallback pony switched in just now") + ] + ]); +} + +if ($system !== $app["other"]["id"] || !isset($app["other"])) { + echo("Sending to general public channel\n"); + file_get_contents('https://' . $ntfy["server"] . '/public-switches', false, $context); +} + +if ($system === "gdapd") { + $topic = "public-switches-raindrops"; +} else { + $topic = "main"; +} + +echo("Sending to specific channel ($topic)\n"); +file_get_contents('https://' . $ntfy["server"] . '/' . $topic, false, $context); |