summaryrefslogtreecommitdiff
path: root/pages/api/pluralkit-integration.php
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2024-03-30 23:40:33 +0100
committerRaindropsSys <raindrops@equestria.dev>2024-03-30 23:40:33 +0100
commit6b796258d413f00e498ce7f80f73a9f6c061f29c (patch)
tree49e64a5dd4cde2acff7f0a93ed3f8e20e1cb2dc8 /pages/api/pluralkit-integration.php
parent5860551daa0f60103ad24e93da29f401a653f144 (diff)
downloadpluralconnect-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 'pages/api/pluralkit-integration.php')
-rw-r--r--pages/api/pluralkit-integration.php64
1 files changed, 0 insertions, 64 deletions
diff --git a/pages/api/pluralkit-integration.php b/pages/api/pluralkit-integration.php
deleted file mode 100644
index 9b0033d..0000000
--- a/pages/api/pluralkit-integration.php
+++ /dev/null
@@ -1,64 +0,0 @@
-<?php
-
-$app = $GLOBALS["ColdHazeApp"];
-$user = $_GET['user'] ?? null;
-$inputJSON = file_get_contents('php://input');
-$input = json_decode($inputJSON, true);
-$data = $GLOBALS["ColdHazeApp"]["webhook"];
-
-if ($user === null) {
- header("HTTP/1.1 500 Internal Server Error") and die();
-}
-
-if (!in_array($user, array_keys($data))) {
- header("HTTP/1.1 404 Not Found") and die();
-}
-
-if ($input["signing_token"] !== $data[$user]) {
- header("HTTP/1.1 401 Unauthorized") and die();
-}
-
-if ($input['system_id'] === "7d9f543e-f742-40f6-9d07-86c3f2983124") {
- $system = "gdapd";
- $name = "Raindrops System";
-} elseif ($input['system_id'] === "d1cd97eb-9c92-4e42-94cd-4397a5074ff9") {
- $system = "hrbom";
- $name = "Moonglow";
-} elseif (isset($app["other"]) && $input["system_id"] === $app["other"]["uuid"]) {
- $system = $app["other"]["id"];
- $name = $app["other"]["name"];
-} else {
- die();
-}
-
-$lastFronter = json_decode(@file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/last.json"), true) ?? "";
-
-if ($input["type"] === "CREATE_MEMBER" || $input["type"] === "UPDATE_MEMBER" || $input["type"] === "DELETE_MEMBER") {
- createJob("PKMembers", [
- "system" => $system
- ]);
- createJob("UpdateAssets", [
- "type" => "members"
- ]);
-}
-
-if ($input["type"] === "UPDATE_SYSTEM") {
- createJob("PKSystem", [
- "system" => $system
- ]);
- createJob("UpdateAssets", [
- "type" => "system"
- ]);
-}
-
-if ($input["type"] === "CREATE_SWITCH" || $input["type"] === "UPDATE_SWITCH" || $input["type"] === "DELETE_SWITCH") {
- createJob("PKFronters", [
- "system" => $system
- ]);
- createJob("PKSwitches", [
- "system" => $system
- ]);
- createJob("FrontersNotification", [
- "system" => $system
- ]);
-}