summaryrefslogtreecommitdiff
path: root/jobs/FrontersNotification.php
blob: ebe9213b51fd90d820951d2dc64427da49de48eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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);