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) --- jobs/PKSystem.php | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 jobs/PKSystem.php (limited to 'jobs/PKSystem.php') diff --git a/jobs/PKSystem.php b/jobs/PKSystem.php new file mode 100644 index 0000000..66cbd64 --- /dev/null +++ b/jobs/PKSystem.php @@ -0,0 +1,40 @@ + [ + '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'] . "/data/$system/general.json", $data); +} else { + echo("Data is invalid\n"); +} -- cgit