diff options
Diffstat (limited to 'includes/jobs/PKSystem.php')
-rw-r--r-- | includes/jobs/PKSystem.php | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/includes/jobs/PKSystem.php b/includes/jobs/PKSystem.php deleted file mode 100644 index 117b6ad..0000000 --- a/includes/jobs/PKSystem.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - -$options = json_decode($argv[1], true); -$_SERVER['DOCUMENT_ROOT'] = "../.."; -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", false, $ctx); -json_decode($data); - -if (trim($data) !== "" && $data !== false && json_last_error() === JSON_ERROR_NONE) { - echo("Data is valid, saved it\n"); - file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/general.json", $data); -} else { - echo("Data is invalid\n"); -}
\ No newline at end of file |