diff options
author | RaindropsSys <contact@minteck.org> | 2023-03-27 22:22:53 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-03-27 22:22:53 +0200 |
commit | e98e95d89939cdc1252d02df04ae8d91c6aa8c92 (patch) | |
tree | a5d5535f8058f1a7b45a31a1caf36ab7e24ff19d /includes/jobs/PKSwitches.php | |
parent | 6ab243c12f2514cd0f40e80504223664755a6da4 (diff) | |
download | pluralconnect-e98e95d89939cdc1252d02df04ae8d91c6aa8c92.tar.gz pluralconnect-e98e95d89939cdc1252d02df04ae8d91c6aa8c92.tar.bz2 pluralconnect-e98e95d89939cdc1252d02df04ae8d91c6aa8c92.zip |
Updated 9 files, added 9 files, deleted 3 files and renamed includes/refresh/logo.inc (automated)
Diffstat (limited to 'includes/jobs/PKSwitches.php')
-rw-r--r-- | includes/jobs/PKSwitches.php | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/includes/jobs/PKSwitches.php b/includes/jobs/PKSwitches.php new file mode 100644 index 0000000..eb7d897 --- /dev/null +++ b/includes/jobs/PKSwitches.php @@ -0,0 +1,77 @@ +<?php + +$options = json_decode($argv[1], true); +$_SERVER['DOCUMENT_ROOT'] = "../.."; +require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/composer/vendor/autoload.php'; +use ColorThief\ColorThief; + +$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true); +$system = $options["system"]; + +if ($app["other"]["id"] === $system) { + $ctx = stream_context_create([ + 'http' => [ + 'method' => 'GET', + 'header' => + "Authorization: " . $app["other"]["token"] . "\r\n" + ] + ]); +} else { + $ctx = stream_context_create([ + 'http' => [ + 'method' => 'GET' + ] + ]); +} + +echo(" Part 1/6\n"); +$switches1 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches", false, $ctx), true); + +if (count($switches1) > 0) { + $oldest = $switches1[count($switches1) - 1]["timestamp"]; + + echo(" Part 2/6\n"); + $switches2 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches?before=$oldest", false, $ctx), true); + + if (count($switches2) > 0) { + $oldest = $switches2[count($switches2) - 1]["timestamp"]; + + echo(" Part 3/6\n"); + $switches3 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches?before=$oldest", false, $ctx), true); + + if (count($switches3) > 0) { + $oldest = $switches3[count($switches3) - 1]["timestamp"]; + + echo(" Part 4/6\n"); + $switches4 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches?before=$oldest", false, $ctx), true); + + if (count($switches4) > 0) { + $oldest = $switches4[count($switches4) - 1]["timestamp"]; + + echo(" Part 5/6\n"); + $switches5 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches?before=$oldest", false, $ctx), true); + + if (count($switches5) > 0) { + $oldest = $switches5[count($switches5) - 1]["timestamp"]; + + echo(" Part 6/6\n"); + $switches6 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches?before=$oldest", false, $ctx), true); + } else { + $switches6 = []; + } + } else { + $switches5 = $switches6 = []; + } + } else { + $switches4 = $switches5 = $switches6 = []; + } + } else { + $switches3 = $switches4 = $switches5 = $switches6 = []; + } +} else { + $switches2 = $switches3 = $switches4 = $switches5 = $switches6 = []; +} + +if ($switches1 !== null && $switches2 !== null && $switches3 !== null && $switches4 !== null && $switches5 !== null && $switches6 !== null) { + file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/switches.json", json_encode([...$switches1, ...$switches2, ...$switches3, ...$switches4, ...$switches5, ...$switches6], JSON_PRETTY_PRINT)); +}
\ No newline at end of file |