diff options
author | RaindropsSys <raindrops@equestria.dev> | 2024-03-30 23:40:33 +0100 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2024-03-30 23:40:33 +0100 |
commit | 6b796258d413f00e498ce7f80f73a9f6c061f29c (patch) | |
tree | 49e64a5dd4cde2acff7f0a93ed3f8e20e1cb2dc8 /includes/jobs/PKMembers.php | |
parent | 5860551daa0f60103ad24e93da29f401a653f144 (diff) | |
download | pluralconnect-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 'includes/jobs/PKMembers.php')
-rw-r--r-- | includes/jobs/PKMembers.php | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/includes/jobs/PKMembers.php b/includes/jobs/PKMembers.php deleted file mode 100644 index 83a8a7e..0000000 --- a/includes/jobs/PKMembers.php +++ /dev/null @@ -1,74 +0,0 @@ -<?php - -$options = json_decode($argv[1], true); -$_SERVER['DOCUMENT_ROOT'] = "../.."; -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; -require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/composer/vendor/autoload.php'; -use ColorThief\ColorThief; - -echo("Loading...\n"); - -$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true); -$system = $options["system"]; - -if ($app["other"]["id"] === $system) { - echo("Using authentication\n"); - $ctx = stream_context_create([ - 'http' => [ - 'method' => 'GET', - 'header' => - "Authorization: " . $app["other"]["token"] . "\r\n" - ] - ]); -} else { - echo("Not using authentication\n"); - $ctx = stream_context_create([ - 'http' => [ - 'method' => 'GET', - 'headers' => "User-Agent: Mozilla/5.0 (+Cold-Haze/1.1)\r\n" - ] - ]); -} - -echo("Fetching...\n"); -sleep(1); -$data = file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/members", false, $ctx); -json_decode($data); - -if (trim($data) !== "" && $data !== false && json_last_error() === JSON_ERROR_NONE) { - echo("Data is valid, saved it\n"); - $parsed = json_decode($data, true); - - foreach ($parsed as $index => $member) { - echo(($member["display_name"] ?? $member["name"]) . "\n"); - - if (isset($member["avatar_url"])) { - $dominantColor = substr(ColorThief::getColor($member["avatar_url"], outputFormat: "hex"), 1); - } else { - $dominantColor = "ffffff"; - } - - $parsed[$index]["dominant_color"] = $dominantColor; - - if (!isset($member["color"])) { - $parsed[$index]["color"] = $dominantColor; - } - } - - $data = json_encode($parsed, JSON_PRETTY_PRINT); - file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/members.json", $data); -} else { - echo("Data is invalid\n"); -} - -echo("Clearing cache\n"); -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/navigation.json", "{}"); -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/home.json", "{}"); -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/alphabet.json", "{}"); -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/splitting.json", "{}"); -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/species.json", "{}"); -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/planner.json", "{}"); -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/relations.json", "{}"); -echo("Cleared cache\n"); - -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/jobs/RefreshCache.php";
\ No newline at end of file |