summaryrefslogtreecommitdiff
path: root/pages/api/pluralkit-integration.php
diff options
context:
space:
mode:
Diffstat (limited to 'pages/api/pluralkit-integration.php')
-rw-r--r--pages/api/pluralkit-integration.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/api/pluralkit-integration.php b/pages/api/pluralkit-integration.php
index 0efa8cb..69d99b1 100644
--- a/pages/api/pluralkit-integration.php
+++ b/pages/api/pluralkit-integration.php
@@ -2,14 +2,14 @@
require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/agewarning.inc";
-$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true);
+$app = $GLOBALS["ColdHazeApp"];
$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"];
+$data = $GLOBALS["ColdHazeApp"]["webhook"];
-if (isset(json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true)["ponytown"][$user])) {
- $ponytown = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true)["ponytown"][$user];
+if (isset($GLOBALS["ColdHazeApp"]["ponytown"][$user])) {
+ $ponytown = $GLOBALS["ColdHazeApp"]["ponytown"][$user];
} else {
header("HTTP/1.1 404 Not Found") and die();
}