aboutsummaryrefslogtreecommitdiff
path: root/Neutron-trunk/resources/private/headers/preprocessor.php
diff options
context:
space:
mode:
authorMinteck <nekostarfan@gmail.com>2021-08-24 15:38:16 +0200
committerMinteck <nekostarfan@gmail.com>2021-08-24 15:38:16 +0200
commit529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105 (patch)
tree8a50c30271b9b328cde0d907b1441f2dabdc341b /Neutron-trunk/resources/private/headers/preprocessor.php
parent15e4724761c50b30803df1811a525c85058f70bf (diff)
downloadelectrode-529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105.tar.gz
electrode-529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105.tar.bz2
electrode-529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105.zip
Update
Diffstat (limited to 'Neutron-trunk/resources/private/headers/preprocessor.php')
-rw-r--r--Neutron-trunk/resources/private/headers/preprocessor.php224
1 files changed, 224 insertions, 0 deletions
diff --git a/Neutron-trunk/resources/private/headers/preprocessor.php b/Neutron-trunk/resources/private/headers/preprocessor.php
new file mode 100644
index 0000000..84ff3f0
--- /dev/null
+++ b/Neutron-trunk/resources/private/headers/preprocessor.php
@@ -0,0 +1,224 @@
+<?php
+
+if (!function_exists("rlgps")) {
+ function rlgps(string $message) {}
+}
+
+// Check if website is ready
+if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent")) {
+ $ready = true;
+} else {
+ $ready = false;
+}
+
+// Disable removed widgets
+if ($ready) {
+ $json = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/widgets.json"));
+ if (!isset($json->_neutronMigrationDone)) {
+ $widgets = $json->list;
+
+ $index = 0;
+ foreach ($widgets as $widget) {
+ if ($widget === "notes" || $widget === "contact") {
+ array_splice($widgets, $index, 1);
+ }
+ $index++;
+ }
+
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/widgets.json", json_encode([
+ "list" => $widgets,
+ "_neutronMigrationDone" => true
+ ]));
+ }
+}
+
+$_MD_INCLUDES = $GLOBALS["SYSTEM_ROOT"] . "/resources/lib/material"; // Path to Material Design files, can be changed if files are bundled with the code
+$_MDI_PATH = $GLOBALS["SYSTEM_ROOT"] . "/resources/lib/material/iconfont.css"; // Path to Material Icons font, can be changed if files are bundled with the code
+
+// Generate favicon if not yet generated
+if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/resources/upload/favicon.png") && $ready) {
+ require_once $_SERVER['DOCUMENT_ROOT'] . "/api/engine-cyclic/components/favicon.php";
+}
+
+// Dark/light/dynamic theme + color
+if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/theme") && $ready) {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/theme", "auto");
+}
+
+if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/color") && $ready) {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/color", "blue");
+}
+
+// Trim Build Values
+try {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/api/version", trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/api/version")));
+} catch (E_WARNING $err) {}
+try {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/api/codename", trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/api/codename")));
+} catch (E_WARNING $err) {}
+try {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/api/experimental", trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/api/experimental")));
+} catch (E_WARNING $err) {}
+try {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/api/public", trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/api/public")));
+} catch (E_WARNING $err) {}
+try {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/api/bugs", trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/api/bugs")));
+} catch (E_WARNING $err) {}
+
+// Functions to get localized name and description of a plugin
+function getDescription($config) {
+ $langsel = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/lang");
+
+ if (isset($config->description->$langsel)) {
+ return $config->description->$langsel;
+ } else {
+ return $config->description->en;
+ }
+}
+
+function getName($config) {
+ $langsel = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/lang");
+
+ if (isset($config->name->$langsel)) {
+ return $config->name->$langsel;
+ } else {
+ return $config->name->en;
+ }
+}
+
+// Language Loader
+require $_SERVER['DOCUMENT_ROOT'] . "/api/lang/processor.php";
+
+if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/cache") && $ready) { // Cache directory
+ mkdir($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/cache");
+}
+
+// Function to check if a JSON string is valid
+function dataValid($string) {
+ json_decode($string);
+ return (json_last_error() == JSON_ERROR_NONE);
+}
+
+// Custom Styles, create directory
+if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/resources/upload/styles.json")) {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/resources/upload/styles.json", "[]");
+}
+
+// Connections Log
+if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/system.log") && $ready) {
+ if (strpos($_SERVER['HTTP_USER_AGENT'], "MinteckProjectsAutoUptime") !== false) {} else { // Don't log for Auto-Uptime bot
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/system.log", file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/system.log") . date("d/m/Y H:i:s") . " - INTERFACE/" . $_SERVER['REQUEST_METHOD'] . " - " . $_SERVER['REQUEST_URI'] . " - " . $_SERVER['HTTP_USER_AGENT'] . "\n\n");
+ }
+} else {
+ if (strpos($_SERVER['HTTP_USER_AGENT'], "MinteckProjectsAutoUptime") !== false || !$ready) {} else { // Don't log for Auto-Uptime bot
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/system.log", date("d/m/Y H:i:s") . " - INTERFACE/" . $_SERVER['REQUEST_METHOD'] . " - " . $_SERVER['REQUEST_URI'] . " - " . $_SERVER['HTTP_USER_AGENT'] . "\n\n");
+ }
+}
+
+// Migrate old "adminkey" to new "authkey"
+if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/adminkey")) {
+ copy($_SERVER['DOCUMENT_ROOT'] . "/data/adminkey", $_SERVER['DOCUMENT_ROOT'] . "/data/authkey");
+ unlink($_SERVER['DOCUMENT_ROOT'] . "/data/adminkey");
+}
+
+/* Old statistics system, not used anymore */
+/*try { // Failing is not important
+ // Statistics directory
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/stats")) {} else {
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent")) {
+ mkdir($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/stats");
+ }
+ }
+
+ // Only if website ready
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/")) {
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/stats/" . date("Y-m-d"))) {
+ if (strpos($_SERVER['HTTP_USER_AGENT'], "MinteckProjectsAutoUptime") !== false) {} else { // Don't log for Auto-Uptime bot
+ (int)$actual = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/stats/" . date("Y-m-d"));
+ $actual = $actual + 1;
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/stats/" . date("Y-m-d"), $actual);
+ }
+ } else {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/stats/" . date("Y-m-d"), "1");
+ }
+ }
+} catch (E_WARNING $err) {
+}*/
+
+// New statistics system
+if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats")) {} else {
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent")) {
+ mkdir($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats");
+ }
+}
+
+if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/")) {
+ if (isset($_SERVER['REMOTE_ADDR']) && file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats")) {
+ //$hash = @password_hash($_SERVER['REMOTE_ADDR'], PASSWORD_DEFAULT, [ "salt" => "net.minteckprojects.fns.neutron.stats" ]); // Storing IP addresses is illegal in EU, so just a hashed IP addresses
+ $hash = md5($_SERVER['REMOTE_ADDR']); // Changed to MD5 sum instead of encrypted IP because salt not supported anymore
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats/" . date('Y'))) {} else {
+ mkdir($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats/" . date('Y'));
+ }
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats/" . date('Y') . "/" . date('m'))) {} else {
+ mkdir($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats/" . date('Y') . "/" . date('m'));
+ }
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats/" . date('Y') . "/" . date('m') . "/" . date('d'))) {
+ $file = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats/" . date('Y') . "/" . date('m') . "/" . date('d'));
+ $lines = explode("\n", $file);
+
+ $already = false;
+ foreach ($lines as $line) {
+ if (trim($line) == "" || trim($line) == "\n") {} else {
+ if (trim($line) == trim($hash)) {
+ $already = true;
+ }
+ }
+ }
+
+ if (!$already) {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats/" . date('Y') . "/" . date('m') . "/" . date('d'), file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats/" . date('Y') . "/" . date('m') . "/" . date('d')) . $hash . "\n");
+ }
+ } else {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/newstats/" . date('Y') . "/" . date('m') . "/" . date('d'), $hash . "\n");
+ }
+ }
+}
+
+// Check for updates at random intervals
+if (rand(0, 10) == 5) {
+ try {
+ $version = explode("-", file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/api/version"))[0];
+ $json = json_decode(@file_get_contents(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/api/update") . "/" . $version . "/updates.json"));
+
+ if (isset($json)) {
+ if (json_last_error() != JSON_ERROR_NONE) {
+ $updates = -1;
+ }
+
+ if ($json->version->name != $version) {
+ $updates = -1;
+ }
+
+ foreach ($json->updates as $update) {
+ if (!isset($updates)) {
+ $updates = 1;
+ }
+ }
+
+ if (!isset($updates)) {
+ $updates = 0;
+ }
+ } else {
+ $updates = -1;
+ }
+
+ if ($updates == 1) {
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/updates", "");
+ } else {
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/updates")) {
+ unlink($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/updates");
+ }
+ }
+ } catch (E_WARNING $err) {}
+}