From 6b796258d413f00e498ce7f80f73a9f6c061f29c Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Sat, 30 Mar 2024 23:40:33 +0100 Subject: Updated 5 files, added 2 files, deleted 495 files and renamed 7 files (automated) --- api/healthcheck.php | 3 +++ api/pluralkit-integration.php | 29 ++++++++++++++++++++++------- api/timeline.php | 12 ------------ api/violette.php | 25 +++++++++---------------- 4 files changed, 34 insertions(+), 35 deletions(-) create mode 100644 api/healthcheck.php delete mode 100644 api/timeline.php (limited to 'api') diff --git a/api/healthcheck.php b/api/healthcheck.php new file mode 100644 index 0000000..0876dfa --- /dev/null +++ b/api/healthcheck.php @@ -0,0 +1,3 @@ + $title, + "options" => $options, + "date" => date('c') + ]; + + file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/jobs/" . round(microtime(true) * 1000000) . "-" . random() . ".json", json_encode($job)); +} + if ($user === null) { header("HTTP/1.1 500 Internal Server Error") and die(); } @@ -31,24 +52,18 @@ if ($input['system_id'] === "7d9f543e-f742-40f6-9d07-86c3f2983124") { die(); } -$lastFronter = json_decode(@file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/last.json"), true) ?? ""; +$lastFronter = json_decode(@file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/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") { diff --git a/api/timeline.php b/api/timeline.php deleted file mode 100644 index 8271b7a..0000000 --- a/api/timeline.php +++ /dev/null @@ -1,12 +0,0 @@ - 0, - "ponies" => [] + "count" => count($list), + "ponies" => array_values(array_map(function ($i) { + return [ + "url" => $i["avatar_url"] ?? null, + "label" => $i["display_name"] ?? $i["name"] + ]; + }, $list)) ]; -$list = scoreOrder(json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/gdapd/members.json"), true), "gdapd"); - -$data["count"] = count($list); -$data["ponies"] = array_values(array_filter(array_map(function ($i) { - return [ - "url" => "https://ponycule.p.equestria.dev" . getAsset("gdapd", $i["id"] ?? "", "heads"), - "label" => $i["display_name"] ?? $i["name"] - ]; -}, $list), function ($i) { - return isset($i["url"]) && getAsset("gdapd", $i["id"] ?? "", "heads") !== null; -})); - header("Content-Type: application/json"); -die(json_encode($data, JSON_PRETTY_PRINT)); \ No newline at end of file +die(json_encode($data, JSON_PRETTY_PRINT)); -- cgit