diff options
author | RaindropsSys <contact@minteck.org> | 2023-06-07 17:01:59 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-06-07 17:01:59 +0200 |
commit | e5f50fb2ee79d26fec2c14b5e4dff0b5e3b481fa (patch) | |
tree | a8869a34a662ba36c5e782f009adffadb8eeb6e1 /includes/jobs/PKSystem.php | |
parent | ca07d777b1a35b43d587e7302346b35a8c4dece2 (diff) | |
download | pluralconnect-e5f50fb2ee79d26fec2c14b5e4dff0b5e3b481fa.tar.gz pluralconnect-e5f50fb2ee79d26fec2c14b5e4dff0b5e3b481fa.tar.bz2 pluralconnect-e5f50fb2ee79d26fec2c14b5e4dff0b5e3b481fa.zip |
Updated 11 files and added 3 files (automated)
Diffstat (limited to 'includes/jobs/PKSystem.php')
-rw-r--r-- | includes/jobs/PKSystem.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/includes/jobs/PKSystem.php b/includes/jobs/PKSystem.php index 6583e4f..117b6ad 100644 --- a/includes/jobs/PKSystem.php +++ b/includes/jobs/PKSystem.php @@ -23,15 +23,18 @@ if ($app["other"]["id"] === $system) { echo("Not using authentication\n"); $ctx = stream_context_create([ 'http' => [ - 'method' => 'GET' + '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) { +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 { |