diff options
author | RaindropsSys <contact@minteck.org> | 2023-04-24 14:03:36 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-04-24 14:03:36 +0200 |
commit | 633c92eae865e957121e08de634aeee11a8b3992 (patch) | |
tree | 09d881bee1dae0b6eee49db1dfaf0f500240606c /includes/jobs | |
parent | c4657e4509733699c0f26a3c900bab47e915d5a0 (diff) | |
download | pluralconnect-633c92eae865e957121e08de634aeee11a8b3992.tar.gz pluralconnect-633c92eae865e957121e08de634aeee11a8b3992.tar.bz2 pluralconnect-633c92eae865e957121e08de634aeee11a8b3992.zip |
Updated 18 files, added 1692 files and deleted includes/system/compare.inc (automated)
Diffstat (limited to 'includes/jobs')
-rw-r--r-- | includes/jobs/PKFronters.php | 5 | ||||
-rw-r--r-- | includes/jobs/PKMembers.php | 13 | ||||
-rw-r--r-- | includes/jobs/PKSwitches.php | 9 | ||||
-rw-r--r-- | includes/jobs/RefreshCache.php | 28 |
4 files changed, 51 insertions, 4 deletions
diff --git a/includes/jobs/PKFronters.php b/includes/jobs/PKFronters.php index feb7fd3..b1449a9 100644 --- a/includes/jobs/PKFronters.php +++ b/includes/jobs/PKFronters.php @@ -36,4 +36,7 @@ if (trim($data) !== "" && $data !== false) { file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/fronters.json", $data); } else { echo("Data is invalid\n"); -}
\ No newline at end of file +} + +chdir($_SERVER['DOCUMENT_ROOT'] . "/includes/external/matrix"); +exec("node index.js " . ($system === "gdapd" ? "raindrops" : ($system === "ynmuc" ? "cloudburst" : "other")));
\ No newline at end of file diff --git a/includes/jobs/PKMembers.php b/includes/jobs/PKMembers.php index 7bcb242..c6ad897 100644 --- a/includes/jobs/PKMembers.php +++ b/includes/jobs/PKMembers.php @@ -2,6 +2,7 @@ $options = json_decode($argv[1], true); $_SERVER['DOCUMENT_ROOT'] = "../.."; +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/composer/vendor/autoload.php'; use ColorThief\ColorThief; @@ -57,6 +58,14 @@ if (trim($data) !== "" && $data !== false) { echo("Data is invalid\n"); } -echo("Cleared cache\n"); +echo("Clearing cache\n"); file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/navigation.json", "{}"); -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/home.json", "{}");
\ No newline at end of file +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/home.json", "{}"); +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/alphabet.json", "{}"); +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/splitting.json", "{}"); +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/species.json", "{}"); +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/planner.json", "{}"); +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/relations.json", "{}"); +echo("Cleared cache\n"); + +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/jobs/RefreshCache.php";
\ No newline at end of file diff --git a/includes/jobs/PKSwitches.php b/includes/jobs/PKSwitches.php index b7a755d..e13118f 100644 --- a/includes/jobs/PKSwitches.php +++ b/includes/jobs/PKSwitches.php @@ -2,6 +2,7 @@ $options = json_decode($argv[1], true); $_SERVER['DOCUMENT_ROOT'] = "../.."; +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/composer/vendor/autoload.php'; use ColorThief\ColorThief; @@ -82,4 +83,10 @@ if ($switches1 !== null && $switches2 !== null && $switches3 !== null && $switch file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/switches.json", json_encode([...$switches1, ...$switches2, ...$switches3, ...$switches4, ...$switches5, ...$switches6], JSON_PRETTY_PRINT)); } else { echo("Data is invalid\n"); -}
\ No newline at end of file +} + +echo("Clearing cache\n"); +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/history.json", "{}"); +echo("Cleared cache\n"); + +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/jobs/RefreshCache.php";
\ No newline at end of file diff --git a/includes/jobs/RefreshCache.php b/includes/jobs/RefreshCache.php new file mode 100644 index 0000000..092b644 --- /dev/null +++ b/includes/jobs/RefreshCache.php @@ -0,0 +1,28 @@ +<?php + +$options = json_decode($argv[1], true); +$_SERVER['DOCUMENT_ROOT'] = "../.."; +$app = $GLOBALS["ColdHazeApp"] = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true); + +echo("Refreshing cache...\n"); + +$urls = [ + "/", + "/-/fronting", + "/-/rules", + "/-/stats", + "/-/splitting", + "/-/alphabet", + "/-/byspecies", + "/-/relations", + "/cloudburst/-/history", + "/raindrops/-/history", + "/" . $app["other"]["slug"] . "/-/history" +]; + +foreach ($urls as $url) { + echo(" " . $url . "\n"); + exec("curl -k -H 'Host: ponies.equestria.horse' https://localhost" . $url); +} + +echo("Refreshed cache\n");
\ No newline at end of file |