]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - common.php
Minimize config/config.php and put settings in DB. This is work in progress.
[irc/unrealircd/unrealircd-webpanel.git] / common.php
index edd219bec6619a1e1d71e58be73d1c6831c02b08..55e56a2e578add5f4b0ad50efecdb04711986da5 100644 (file)
 <?php
+if (version_compare(PHP_VERSION, '8.0.0', '<'))
+       die("This webserver is using PHP version ".PHP_VERSION." but we require at least PHP 8.0.0.<br>".
+           "If you already installed PHP8 but are still seeing this error, then it means ".
+           "apache/nginx/.. is loading an older PHP version. Eg. on Debian/Ubuntu you need ".
+           "<code>apt-get install libapache2-mod-php8.2</code> (or a similar version) and ".
+           "<code>apt-get remove libapache2-mod-php7.4</code> (or a similar version). ".
+           "You may also need to choose again the PHP module to load in apache via <code>a2enmod php8.2</code>");
+
 define('UPATH', dirname(__FILE__));
-require_once UPATH . "/config.php";
-if (!defined('BASE_URL')) die("You need to define BASE_URL in config.php (see config.php.sample for documentation)");
+
+function get_config($setting)
+{
+       GLOBAL $config;
+
+       $item = $config;
+       foreach(explode("::", $setting) as $x)
+       {
+               if (isset($item[$x]))
+                       $item = $item[$x];
+               else
+                       return NULL;
+       }
+       return $item;
+}
+
+function page_requires_no_config()
+{
+       if (str_ends_with($_SERVER['SCRIPT_FILENAME'],"install.php") ||
+           str_ends_with($_SERVER['SCRIPT_FILENAME'],"installation.php"))
+       {
+               return TRUE;
+       }
+       return FALSE;
+}
+
+function read_config()
+{
+       GLOBAL $config;
+
+       /* Load config defaults */
+       $config = Array();
+       require_once UPATH . "/config/config.defaults.php";
+
+       if (!file_exists(UPATH."/config/config.php") && file_exists(UPATH."/config.php"))
+       {
+               require_once UPATH . "/config.php";
+               require_once UPATH . "/config/compat.php";
+       }
+}
+
+function config_is_file_item($name)
+{
+       // TODO: move 'unrealircd' and 'plugins' probably ;)
+       if (($name == "unrealircd") ||
+           ($name == "plugins") ||
+           ($name == "mysql"))
+       {
+               return true;
+       }
+       return false;
+}
+
+function write_config_file()
+{
+       GLOBAL $config;
+
+       $file_settings = [];
+       foreach($config as $k=>$v)
+       {
+               if (config_is_file_item($k))
+                       $file_settings[$k] = $v;
+       }
+
+       $cfg_filename = UPATH.'/config/config.php';
+       $tmpfile = UPATH.'/config/config.tmp.'.bin2hex(random_bytes(8)).'.php';
+       $fd = fopen($tmpfile, "w");
+       if (!$fd)
+               die("Could not write to temporary config file $tmpfile.<br>We need write permissions on the config/ directory!<br>");
+
+       $str = var_export($file_settings, true);
+       if ($str === null)
+               die("Error while running write_config_file() -- weird!");
+       if (!fwrite($fd, "<?php\n".
+                   "/* This config file is written automatically by the UnrealIRCd webpanel.\n".
+                   " * You are not really supposed to edit it manually.\n".
+                   " */\n".
+                   '$config = '.$str.";\n"))
+       {
+               die("Error writing to config file $tmpfile (on fwrite).<br>");
+       }
+       if (!fclose($fd))
+               die("Error writing to config file $tmpfile (on close).<br>");
+       /* Now atomically rename the file */
+       if (!rename($tmpfile, $cfg_filename))
+               die("Could not write (rename) to file ".$cfg_filename."<br>");
+       opcache_invalidate($cfg_filename);
+
+       /* Do not re-read config, as it would reinitialize config
+        * without having the DB settings read. (And it also
+        * serves no purpose)
+        */
+}
+
+// XXX: handle unsetting of config items :D - explicit unset function ?
+
+function write_config($setting = null)
+{
+       GLOBAL $config;
+
+       /* Specific request? Easy, write only this setting to the DB (never used for file) */
+       if ($setting !== null)
+       {
+               return DbSettings::set($k, $v);
+       }
+
+       /* Otherwise write the whole config.
+        * TODO: avoid writing settings file if unneeded,
+        *       as it is more noisy than db settings.
+        */
+       $db_settings = [];
+
+       foreach($config as $k=>$v)
+       {
+               if (!config_is_file_item($k))
+                       $db_settings[$k] = $v;
+       }
+
+       if (!write_config_file())
+               return false;
+
+       foreach($db_settings as $k=>$v)
+       {
+               $ret = DbSettings::set($k, $v);
+               if (!$ret)
+                       return $ret;
+       }
+
+       return true;
+}
+
+/* Now read the config, and redirect to install screen if we don't have it */
+if (!read_config())
+{
+       if (page_requires_no_config())
+       {
+               /* Allow empty conf */
+       } else
+       if (!file_exists(UPATH."/config/config.php") && !file_exists(UPATH."/config.php"))
+       {
+               header("Location: settings/install.php");
+               die();
+       } else
+       {
+               require_once UPATH . "/config/config.php";
+       }
+}
+
+if (!get_config("base_url")) die("You need to define the base_url in config/config.php");
 require_once "Classes/class-hook.php";
 if (!is_dir(UPATH . "/vendor"))
        die("The vendor/ directory is missing. Most likely the admin forgot to run 'composer install'\n");
 require_once UPATH . '/vendor/autoload.php';
+require_once UPATH . "/Classes/class-cmodes.php";
 require_once UPATH . "/cfg/defines.php";
-require_once UPATH . "/connection.php";
 require_once UPATH . "/misc/strings.php";
+require_once UPATH . "/misc/channel-lookup-misc.php";
 require_once UPATH . "/misc/user-lookup-misc.php";
 require_once UPATH . "/misc/server-lookup-misc.php";
 require_once UPATH . "/misc/ip-whois-misc.php";
@@ -33,17 +189,23 @@ $pages = [
                "IP WHOIS" => "tools/ip-whois.php",
        ],
        "Settings" => [
-               "Panel Access" => "settings",
                "Plugins" => "settings/plugins.php",
        ],
        
-       "News"         => "news.php",
+       "News" => "news.php",
 ];
-if (unreal_get_current_user())
+
+if (is_auth_provided())
 {
-       $pages["Logout"] = "login/?logout=true";
-}
+       $pages["Settings"]["Accounts"] = "settings";
 
+       $user = unreal_get_current_user();
+       if ($user)
+       {
+               /* Add logout page, if logged in */
+               $pages["Logout"] = "login/?logout=true";
+       }
+}
 Hook::run(HOOKTYPE_NAVBAR, $pages);
 
 /* Example to add new menu item: