summaryrefslogtreecommitdiff
path: root/includes/jobs
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2024-03-30 23:40:33 +0100
committerRaindropsSys <raindrops@equestria.dev>2024-03-30 23:40:33 +0100
commit6b796258d413f00e498ce7f80f73a9f6c061f29c (patch)
tree49e64a5dd4cde2acff7f0a93ed3f8e20e1cb2dc8 /includes/jobs
parent5860551daa0f60103ad24e93da29f401a653f144 (diff)
downloadpluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.tar.gz
pluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.tar.bz2
pluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.zip
Updated 5 files, added 2 files, deleted 495 files and renamed 7 files (automated)
Diffstat (limited to 'includes/jobs')
-rw-r--r--includes/jobs/FrontersNotification.php96
-rw-r--r--includes/jobs/PKFronters.php48
-rw-r--r--includes/jobs/PKMembers.php74
-rw-r--r--includes/jobs/PKSwitches.php99
-rw-r--r--includes/jobs/PKSystem.php42
-rw-r--r--includes/jobs/RefreshCache.php28
-rw-r--r--includes/jobs/UpdateAssets.php110
7 files changed, 0 insertions, 497 deletions
diff --git a/includes/jobs/FrontersNotification.php b/includes/jobs/FrontersNotification.php
deleted file mode 100644
index b4b8ae2..0000000
--- a/includes/jobs/FrontersNotification.php
+++ /dev/null
@@ -1,96 +0,0 @@
-<?php
-
-$options = json_decode($argv[1], true);
-$_SERVER['DOCUMENT_ROOT'] = "../..";
-require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/composer/vendor/autoload.php';
-use ColorThief\ColorThief;
-
-echo("Loading...\n");
-
-if (!function_exists("formatPonypush")) {
- function formatPonypush($message) {
- return "Update to Ponypush 3.1.0 or later — (\$PA1$\$" . base64_encode($message) . "\$\$)";
- }
-}
-
-$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true);
-$system = $options["system"];
-
-echo("Processing for system $system\n");
-
-if ($system === "gdapd") {
- $name = "Raindrops System";
-} elseif ($system === "hrbom") {
- $name = "Moonglow";
-} elseif (isset($app["other"]) && $system === $app["other"]["id"]) {
- $name = $app["other"]["name"];
-} else {
- die();
-}
-
-$fronters = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/fronters.json"), true);
-$currentFronter = $fronters["members"][0]["id"];
-file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/last.json", json_encode($currentFronter));
-
-$ntfy = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true)["ntfy"];
-
-if (count($fronters["members"]) > 1) {
- echo("Creating context for 2 members\n");
- $context = stream_context_create([
- 'http' => [
- 'method' => 'POST',
- 'header' =>
- "Content-Type: text/plain\r\n" .
- "Title: " . formatPonypush("🐴 Switch occurred in $name") . "\r\n" .
- "Priority: default\r\n" .
- "Tags: switch\r\n" .
- "Actions: view, Open " . $fronters["members"][0]["display_name"] . " on Ponycule, https://ponycule.p.equestria.dev/" . $fronters["members"][0]["name"] . "/, clear=true;view, Open " . $fronters["members"][1]["display_name"] . " on Cold Haze, https://ponycule.p.equestria.dev/" . $fronters["members"][1]["name"] . "/, clear=true\r\n" .
- "Authorization: Basic " . base64_encode($ntfy["user"] . ":" . $ntfy["password"]),
- 'content' => formatPonypush(($fronters["members"][0]["display_name"] ?? $fronters["members"][0]["name"]) . " and " . ($fronters["members"][1]["display_name"] ?? $fronters["members"][1]["name"]) . " switched in just now")
- ]
- ]);
-} else if (count($fronters["members"]) > 0) {
- echo("Creating context for 1 member\n");
- $context = stream_context_create([
- 'http' => [
- 'method' => 'POST',
- 'header' =>
- "Content-Type: text/plain\r\n" .
- "Title: " . formatPonypush("🐴 Switch occurred in $name") . "\r\n" .
- "Priority: default\r\n" .
- "Tags: switch\r\n" .
- "Actions: view, Open on Ponycule, https://ponycule.p.equestria.dev/" . $fronters["members"][0]["name"] . "/, clear=true\r\n" .
- "Authorization: Basic " . base64_encode($ntfy["user"] . ":" . $ntfy["password"]),
- 'content' => formatPonypush(($fronters["members"][0]["display_name"] ?? $fronters["members"][0]["name"]) . " switched in just now")
- ]
- ]);
-} else {
- echo("Creating context for no member (fallback pony)\n");
- $context = stream_context_create([
- 'http' => [
- 'method' => 'POST',
- 'header' =>
- "Content-Type: text/plain\r\n" .
- "Title: " . formatPonypush("🐴 Switch occurred in $name") . "\r\n" .
- "Priority: default\r\n" .
- "Tags: switch\r\n" .
- "Actions: view, Open on Ponycule, https://ponycule.p.equestria.dev/, clear=true\r\n" .
- "Authorization: Basic " . base64_encode($ntfy["user"] . ":" . $ntfy["password"]),
- 'content' => formatPonypush("The fallback pony switched in just now")
- ]
- ]);
-}
-
-if ($system !== $app["other"]["id"] || !isset($app["other"])) {
- echo("Sending to general public channel\n");
- file_get_contents('https://' . $ntfy["server"] . '/public-switches', false, $context);
-}
-
-if ($system === "gdapd") {
- $topic = "public-switches-raindrops";
-} else {
- $topic = "main";
-}
-
-echo("Sending to specific channel ($topic)\n");
-file_get_contents('https://' . $ntfy["server"] . '/' . $topic, false, $context);
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 @@
-<?php
-
-$options = json_decode($argv[1], true);
-$_SERVER['DOCUMENT_ROOT'] = "../..";
-require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/composer/vendor/autoload.php';
-use ColorThief\ColorThief;
-
-echo("Loading...\n");
-
-$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true);
-$system = $options["system"];
-
-if ($app["other"]["id"] === $system) {
- echo("Using authentication\n");
- $ctx = stream_context_create([
- 'http' => [
- '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
diff --git a/includes/jobs/PKMembers.php b/includes/jobs/PKMembers.php
deleted file mode 100644
index 83a8a7e..0000000
--- a/includes/jobs/PKMembers.php
+++ /dev/null
@@ -1,74 +0,0 @@
-<?php
-
-$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;
-
-echo("Loading...\n");
-
-$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true);
-$system = $options["system"];
-
-if ($app["other"]["id"] === $system) {
- echo("Using authentication\n");
- $ctx = stream_context_create([
- 'http' => [
- '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/members", false, $ctx);
-json_decode($data);
-
-if (trim($data) !== "" && $data !== false && json_last_error() === JSON_ERROR_NONE) {
- echo("Data is valid, saved it\n");
- $parsed = json_decode($data, true);
-
- foreach ($parsed as $index => $member) {
- echo(($member["display_name"] ?? $member["name"]) . "\n");
-
- if (isset($member["avatar_url"])) {
- $dominantColor = substr(ColorThief::getColor($member["avatar_url"], outputFormat: "hex"), 1);
- } else {
- $dominantColor = "ffffff";
- }
-
- $parsed[$index]["dominant_color"] = $dominantColor;
-
- if (!isset($member["color"])) {
- $parsed[$index]["color"] = $dominantColor;
- }
- }
-
- $data = json_encode($parsed, JSON_PRETTY_PRINT);
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/members.json", $data);
-} else {
- echo("Data is invalid\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", "{}");
-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
deleted file mode 100644
index 99e4a2c..0000000
--- a/includes/jobs/PKSwitches.php
+++ /dev/null
@@ -1,99 +0,0 @@
-<?php
-
-$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;
-
-echo("Loading...\n");
-
-$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true);
-$system = $options["system"];
-
-if ($app["other"]["id"] === $system) {
- echo("Using authentication\n");
- $ctx = stream_context_create([
- 'http' => [
- '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");
-echo(" Part 1/6\n");
-sleep(1);
-$switches1 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches", false, $ctx), true);
-
-if (count($switches1) > 0 && json_last_error() === JSON_ERROR_NONE) {
- $oldest = $switches1[count($switches1) - 1]["timestamp"];
-
- echo(" Part 2/6\n");
- sleep(1);
- $switches2 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches?before=$oldest", false, $ctx), true);
-
- if (count($switches2) > 0 && json_last_error() === JSON_ERROR_NONE) {
- $oldest = $switches2[count($switches2) - 1]["timestamp"];
-
- echo(" Part 3/6\n");
- sleep(1);
- $switches3 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches?before=$oldest", false, $ctx), true);
-
- if (count($switches3) > 0 && json_last_error() === JSON_ERROR_NONE) {
- $oldest = $switches3[count($switches3) - 1]["timestamp"];
-
- echo(" Part 4/6\n");
- sleep(1);
- $switches4 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches?before=$oldest", false, $ctx), true);
-
- if (count($switches4) > 0 && json_last_error() === JSON_ERROR_NONE) {
- $oldest = $switches4[count($switches4) - 1]["timestamp"];
-
- echo(" Part 5/6\n");
- sleep(1);
- $switches5 = json_decode(file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/switches?before=$oldest", false, $ctx), true);
-
- if (count($switches5) > 0 && json_last_error() === JSON_ERROR_NONE) {
- $oldest = $switches5[count($switches5) - 1]["timestamp"];
-
- echo(" Part 6/6\n");
- sleep(1);
- $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 (json_last_error() === JSON_ERROR_NONE && $switches1 !== null && $switches2 !== null && $switches3 !== null && $switches4 !== null && $switches5 !== null && $switches6 !== null) {
- echo("Data is valid, saved it\n");
- 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");
-}
-
-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/PKSystem.php b/includes/jobs/PKSystem.php
deleted file mode 100644
index 117b6ad..0000000
--- a/includes/jobs/PKSystem.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-
-$options = json_decode($argv[1], true);
-$_SERVER['DOCUMENT_ROOT'] = "../..";
-require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/composer/vendor/autoload.php';
-use ColorThief\ColorThief;
-
-echo("Loading...\n");
-
-$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true);
-$system = $options["system"];
-
-if ($app["other"]["id"] === $system) {
- echo("Using authentication\n");
- $ctx = stream_context_create([
- 'http' => [
- '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", 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/general.json", $data);
-} else {
- echo("Data is invalid\n");
-} \ No newline at end of file
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
diff --git a/includes/jobs/UpdateAssets.php b/includes/jobs/UpdateAssets.php
deleted file mode 100644
index 5c5c288..0000000
--- a/includes/jobs/UpdateAssets.php
+++ /dev/null
@@ -1,110 +0,0 @@
-<?php
-
-$options = json_decode($argv[1], true);
-$_SERVER['DOCUMENT_ROOT'] = "../..";
-require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/composer/vendor/autoload.php';
-use ColorThief\ColorThief;
-
-echo("Loading...\n");
-
-$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true);
-
-if (!file_exists("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/avatars")) mkdir("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/avatars");
-if (!file_exists("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/banners")) mkdir("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/banners");
-if (!file_exists("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/heads")) mkdir("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/heads");
-if (!file_exists("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/bodies")) mkdir("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/bodies");
-
-function downloadAssets($system, $path = null) {
- global $options;
-
- if (!isset($path)) {
- $path = $system;
- }
-
- $general = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$path/general.json"), true);
-
- if ($options["type"] === "system") {
- echo("Download system assets\n");
- if (isset($general["avatar_url"])) {
- $id = preg_replace("/^([\da-f]{8})-([\da-f]{4})-([\da-f]{4})-([\da-f]{4})-([\da-f]{12})$/", "$1$2$3$4$5", $general["uuid"]);
- echo(" /avatars/$id.webp\n");
- file_put_contents("/tmp/img." . pathinfo($general['avatar_url'], PATHINFO_EXTENSION), file_get_contents($general['avatar_url']));
- exec("nice -n 19 convert -resize 512x512 \"" . "/tmp/img." . pathinfo($general['avatar_url'], PATHINFO_EXTENSION) . "\" " . $_SERVER['DOCUMENT_ROOT'] . "/assets/avatars/" . $id . ".webp");
- unlink("/tmp/img." . pathinfo($general['avatar_url'], PATHINFO_EXTENSION));
- }
-
- if (isset($general["banner"])) {
- $id = preg_replace("/^([\da-f]{8})-([\da-f]{4})-([\da-f]{4})-([\da-f]{4})-([\da-f]{12})$/", "$1$2$3$4$5", $general["uuid"]);
- echo(" /banners/$id.webp\n");
- file_put_contents("/tmp/img." . pathinfo($general['banner'], PATHINFO_EXTENSION), file_get_contents($general['banner']));
- exec("nice -n 19 convert -resize 2048x2048 \"" . "/tmp/img." . pathinfo($general['banner'], PATHINFO_EXTENSION) ."\" " . $_SERVER['DOCUMENT_ROOT'] . "/assets/banners/" . $id . ".webp");
- unlink("/tmp/img." . pathinfo($general['banner'], PATHINFO_EXTENSION));
- }
- }
-
- $members = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$path/members.json"), true);
-
- foreach ($members as $member) {
- $id = preg_replace("/^([\da-f]{8})-([\da-f]{4})-([\da-f]{4})-([\da-f]{4})-([\da-f]{12})$/", "$1$2$3$4$5", $general["uuid"]) . preg_replace("/^([\da-f]{8})-([\da-f]{4})-([\da-f]{4})-([\da-f]{4})-([\da-f]{12})$/", "$1$2$3$4$5", $member["uuid"]);
-
- if ($options["type"] === "members") {
- echo("Downloading member assets (" . ($member["display_name"] ?? $member["name"]) . ", " . $member["id"] . ")\n");
- if (isset($member["avatar_url"])) {
- echo(" /avatars/$id.webp\n");
- file_put_contents("/tmp/img." . pathinfo($member['avatar_url'], PATHINFO_EXTENSION), file_get_contents($member['avatar_url']));
- exec("nice -n 19 convert -resize 512x512 \"" . "/tmp/img." . pathinfo($member['avatar_url'], PATHINFO_EXTENSION) . "\" " . $_SERVER['DOCUMENT_ROOT'] . "/assets/avatars/" . $id . ".webp");
- unlink("/tmp/img." . pathinfo($member['avatar_url'], PATHINFO_EXTENSION));
- }
-
- echo(" /banners/$id.webp\n");
-
- if (isset($member["banner"])) {
- file_put_contents("/tmp/img." . pathinfo($member['banner'], PATHINFO_EXTENSION), file_get_contents($member['banner']));
- exec("nice -n 19 convert -resize 2048x2048 \"" . "/tmp/img." . pathinfo($member['banner'], PATHINFO_EXTENSION) . "\" " . $_SERVER['DOCUMENT_ROOT'] . "/assets/banners/" . $id . ".webp");
- unlink("/tmp/img." . pathinfo($member['banner'], PATHINFO_EXTENSION));
- } else {
- $img = imagecreate(2048, 1024);
-
- if (isset($member["color"])) {
- imagecolorallocate($img, hexdec(substr($member["color"], 0, 2)) / 2, hexdec(substr($member["color"], 2, 2)) / 2, hexdec(substr($member["color"], 4, 2)) / 2);
- } else {
- imagecolorallocate($img, 0, 0, 0);
- }
-
- imagejpeg($img, "/tmp/img.jpeg", 100);
- imagedestroy($img);
- exec("nice -n 19 convert -resize 2048x2048 \"/tmp/img.jpeg\" " . $_SERVER['DOCUMENT_ROOT'] . "/assets/banners/" . $id . ".webp");
- unlink("/tmp/img.jpeg");
- }
- }
-
- if ($options["type"] === "ponytown") {
- echo("Downloading Pony Town assets (" . ($member["display_name"] ?? $member["name"]) . ", " . $member["id"] . ")\n");
- if (file_exists("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/uploads/pt-" . $member["name"] . ".png")) {
- $url = "" . $_SERVER['DOCUMENT_ROOT'] . "/assets/uploads/pt-" . $member["name"] . ".png";
- } else {
- $url = "" . $_SERVER['DOCUMENT_ROOT'] . "/assets/uploads/pt.png";
- }
- echo(" /heads/$id.png\n");
- exec("nice -n 19 convert \"" . $url . "\" " . $_SERVER['DOCUMENT_ROOT'] . "/assets/heads/" . $id . ".png");
-
- if (file_exists("" . $_SERVER['DOCUMENT_ROOT'] . "/assets/ponies/" . $member["id"] . ".png")) {
- echo(" /bodies/$id.png\n");
- exec("nice -n 19 convert \"" . "" . $_SERVER['DOCUMENT_ROOT'] . "/assets/ponies/" . $member["id"] . ".png" . "\" " . $_SERVER['DOCUMENT_ROOT'] . "/assets/bodies/" . $id . ".png");
- }
- }
- }
-}
-
-echo("Downloading for gdapd\n");
-downloadAssets("gdapd");
-
-echo("Downloading for hrbom\n");
-downloadAssets("hrbom");
-
-if (isset($app["other"]) && isset($app["other"]["id"]) && isset($app["other"]["token"])) {
- echo("Downloading for other\n");
- downloadAssets($app["other"]["id"], "other");
-}
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/maintenance/deleteUnusedAssets.php"; \ No newline at end of file