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) --- includes/jobs/PKFronters.php | 48 -------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 includes/jobs/PKFronters.php (limited to 'includes/jobs/PKFronters.php') diff --git a/includes/jobs/PKFronters.php b/includes/jobs/PKFronters.php deleted file mode 100644 index a9a4319..0000000 --- a/includes/jobs/PKFronters.php +++ /dev/null @@ -1,48 +0,0 @@ - [ - '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/fronters", 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/fronters.json", $data); -} else { - echo("Data is invalid: " . json_last_error_msg() . ": " . $data . "\n"); -} - -echo("Running Signal integration...\n"); -chdir("/opt/peh/includes/external/signal"); -if ($system === "gdapd") exec("nice -n 19 node index.js raindrops"); -if ($system === "hrbom") exec("nice -n 19 node index.js moonglow"); -if ($system !== "gdapd" && $system !== "hrbom") exec("nice -n 19 node index.js other"); \ No newline at end of file -- cgit