summaryrefslogtreecommitdiff
path: root/includes/jobs/RefreshCache.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/jobs/RefreshCache.php')
-rw-r--r--includes/jobs/RefreshCache.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/includes/jobs/RefreshCache.php b/includes/jobs/RefreshCache.php
deleted file mode 100644
index 5b4af13..0000000
--- a/includes/jobs/RefreshCache.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?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",
- "/raindrops/-/history",
- "/moonglow/-/history",
- "/" . $app["other"]["slug"] . "/-/history"
-];
-
-foreach ($urls as $url) {
- echo(" " . $url . "\n");
- exec("nice -n 19 curl -k -H 'Host: ponycule.p.equestria.dev' https://localhost" . $url);
-}
-
-echo("Refreshed cache\n"); \ No newline at end of file