diff options
Diffstat (limited to 'api/pluralkit-integration.php')
-rw-r--r-- | api/pluralkit-integration.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/api/pluralkit-integration.php b/api/pluralkit-integration.php new file mode 100644 index 0000000..d3f7e45 --- /dev/null +++ b/api/pluralkit-integration.php @@ -0,0 +1,36 @@ +<?php + +$user = $_GET['user'] ?? null; +$inputJSON = file_get_contents('php://input'); +$input = json_decode($inputJSON, true); +$data = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true)["webhook"]; + +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data.json", json_encode($input, JSON_PRETTY_PRINT)); + +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"; +} else { + $system = "ynmuc"; +} + +if ($input["type"] === "CREATE_SWITCH" || $input["type"] === "UPDATE_SWITCH" || $input["type"] === "DELETE_SWITCH") { + usleep(550000); + file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system-fronters.json", file_get_contents("https://api.pluralkit.me/v2/systems/$input[system_id]/fronters")); + usleep(550000); + file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system-switches.json", file_get_contents("https://api.pluralkit.me/v2/systems/$input[system_id]/switches")); + file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data.json-res", "affected: " . $input["type"] . " (" . gettype($input["type"]) . ")") and die(); +} else { + file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data.json-res", "invalid method: " . $input["type"] . " (" . gettype($input["type"]) . ")") and die(); +}
\ No newline at end of file |