]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - inc/common.php
Make $pages[] not have a string value in the end but an array with ["url"=>...]
[irc/unrealircd/unrealircd-webpanel.git] / inc / common.php
CommitLineData
e98b5a51 1<?php
81fe28b9 2if (version_compare(PHP_VERSION, '8.0.0', '<'))
fcd08f14 3 die("This webserver is using PHP version ".PHP_VERSION." but we require at least PHP 8.0.0.<br>".
81fe28b9
BM
4 "If you already installed PHP8 but are still seeing this error, then it means ".
5 "apache/nginx/.. is loading an older PHP version. Eg. on Debian/Ubuntu you need ".
6 "<code>apt-get install libapache2-mod-php8.2</code> (or a similar version) and ".
7 "<code>apt-get remove libapache2-mod-php7.4</code> (or a similar version). ".
8 "You may also need to choose again the PHP module to load in apache via <code>a2enmod php8.2</code>");
9
91f0829e 10define('UPATH', dirname(__DIR__));
ea90b321
BM
11
12function get_config($setting)
13{
14 GLOBAL $config;
15
16 $item = $config;
17 foreach(explode("::", $setting) as $x)
18 {
19 if (isset($item[$x]))
20 $item = $item[$x];
21 else
22 return NULL;
23 }
24 return $item;
25}
26
36470548
BM
27function page_requires_no_config()
28{
29 if (str_ends_with($_SERVER['SCRIPT_FILENAME'],"install.php") ||
2dbe2544 30 str_ends_with($_SERVER['SCRIPT_FILENAME'],"installation.php"))
36470548
BM
31 {
32 return TRUE;
33 }
34 return FALSE;
35}
36
cd1dee97
BM
37function page_requires_no_login()
38{
39 if (str_ends_with($_SERVER['SCRIPT_FILENAME'],"login/index.php") ||
40 page_requires_no_config())
41 {
42 return TRUE;
43 }
44 return FALSE;
45}
46
65fcaafb 47function read_config_file()
b41fa16f
BM
48{
49 GLOBAL $config;
f1027274 50 GLOBAL $config_transition_unreal_server;
b41fa16f 51
b41fa16f 52 $config = Array();
b41fa16f
BM
53 if (!file_exists(UPATH."/config/config.php") && file_exists(UPATH."/config.php"))
54 {
55 require_once UPATH . "/config.php";
56 require_once UPATH . "/config/compat.php";
57 }
cd1dee97 58 if ((@include(UPATH . "/config/config.php")) !== 1)
e1461204 59 return false;
f1027274
BM
60 if (isset($config['unrealircd']))
61 $config_transition_unreal_server = true;
ce25dde2
BM
62 /* Upgrade needed? */
63 $plugins_modified = false;
64 foreach ($config["plugins"] as $k=>$v)
65 {
66 if ($v == "sql_auth")
67 {
68 $config["plugins"][$k] = "sql_db";
69 $plugins_modified = true;
70 } else
71 if ($v == "file_auth")
72 {
73 $config["plugins"][$k] = "file_db";
74 $plugins_modified = true;
75 }
76 }
77 if ($plugins_modified)
78 write_config_file();
79
e1461204 80 return true;
b41fa16f 81}
ea90b321 82
65fcaafb
BM
83function read_config_db()
84{
85 GLOBAL $config;
86
5107db2f
BM
87 if (page_requires_no_config())
88 return;
89
65fcaafb
BM
90 $merge = DbSettings::get();
91 /* DB settings overwrite config.php keys: */
92 $config = array_merge($config, $merge);
93}
94
b41fa16f 95function config_is_file_item($name)
ea90b321 96{
f1027274 97 if (($name == "plugins") ||
65fcaafb 98 ($name == "mysql") ||
6b08fcb9
BM
99 ($name == "base_url") ||
100 ($name == "secrets"))
b41fa16f
BM
101 {
102 return true;
103 }
104 return false;
105}
106
107function write_config_file()
fc51fb47 108{
b41fa16f
BM
109 GLOBAL $config;
110
111 $file_settings = [];
112 foreach($config as $k=>$v)
113 {
114 if (config_is_file_item($k))
115 $file_settings[$k] = $v;
116 }
117
118 $cfg_filename = UPATH.'/config/config.php';
119 $tmpfile = UPATH.'/config/config.tmp.'.bin2hex(random_bytes(8)).'.php';
120 $fd = fopen($tmpfile, "w");
121 if (!$fd)
122 die("Could not write to temporary config file $tmpfile.<br>We need write permissions on the config/ directory!<br>");
123
124 $str = var_export($file_settings, true);
125 if ($str === null)
126 die("Error while running write_config_file() -- weird!");
127 if (!fwrite($fd, "<?php\n".
128 "/* This config file is written automatically by the UnrealIRCd webpanel.\n".
129 " * You are not really supposed to edit it manually.\n".
130 " */\n".
131 '$config = '.$str.";\n"))
132 {
133 die("Error writing to config file $tmpfile (on fwrite).<br>");
134 }
135 if (!fclose($fd))
136 die("Error writing to config file $tmpfile (on close).<br>");
137 /* Now atomically rename the file */
138 if (!rename($tmpfile, $cfg_filename))
139 die("Could not write (rename) to file ".$cfg_filename."<br>");
9f303b7c
BM
140 if (function_exists('opcache_invalidate'))
141 opcache_invalidate($cfg_filename);
b41fa16f
BM
142
143 /* Do not re-read config, as it would reinitialize config
144 * without having the DB settings read. (And it also
145 * serves no purpose)
146 */
65fcaafb 147 return true;
b41fa16f
BM
148}
149
150// XXX: handle unsetting of config items :D - explicit unset function ?
151
152function write_config($setting = null)
2dbe2544 153{
b41fa16f
BM
154 GLOBAL $config;
155
156 /* Specific request? Easy, write only this setting to the DB (never used for file) */
157 if ($setting !== null)
158 {
e1461204 159 return DbSettings::set($setting, $config[$setting]);
b41fa16f
BM
160 }
161
162 /* Otherwise write the whole config.
163 * TODO: avoid writing settings file if unneeded,
164 * as it is more noisy than db settings.
165 */
166 $db_settings = [];
167
168 foreach($config as $k=>$v)
169 {
170 if (!config_is_file_item($k))
171 $db_settings[$k] = $v;
172 }
173
174 if (!write_config_file())
175 return false;
176
177 foreach($db_settings as $k=>$v)
178 {
179 $ret = DbSettings::set($k, $v);
180 if (!$ret)
181 return $ret;
182 }
183
184 return true;
185}
186
e1461204
BM
187function get_version()
188{
189 $fd = @fopen(UPATH."/.git/FETCH_HEAD", "r");
190 if ($fd === false)
191 return "unknown";
192 $line = fgets($fd, 512);
193 fclose($fd);
194 $commit = substr($line, 0, 8);
195 return $commit; /* short git commit id */
196}
197
6b08fcb9
BM
198function generate_secrets()
199{
200 GLOBAL $config;
201
202 if (!isset($config['secrets']))
203 $config['secrets'] = Array();
204
205 if (!isset($config['secrets']['pepper']))
206 $config['secrets']['pepper'] = rtrim(base64_encode(random_bytes(16)),'=');
207
208 if (!isset($config['secrets']['key']))
209 $config['secrets']['key'] = rtrim(base64_encode(sodium_crypto_aead_xchacha20poly1305_ietf_keygen()),'=');
210}
211
b056895f
BM
212function get_active_rpc_server()
213{
c9e0e590
BM
214 $servers = get_config("unrealircd");
215 if (empty($servers))
216 return;
b056895f
BM
217 // TODO: make user able to override this - either in user or in session
218
c9e0e590 219 foreach ($servers as $displayname=>$e)
b056895f
BM
220 {
221 if (isset($e["default"]) && $e["default"])
222 return $displayname;
223 }
224 return null;
225}
226
227/* Set a new default RPC server */
228function set_default_rpc_server($name)
229{
230 GLOBAL $config;
231
232 /* Mark all other servers as non-default */
233 foreach ($config["unrealircd"] as $n=>$e)
234 if ($n != $name)
235 $config["unrealircd"][$n]["default"] = false;
236 $config["unrealircd"][$name]["default"] = true;
237}
238
239/* Ensure at least 1 server is default */
240function set_at_least_one_default_rpc_server()
241{
242 GLOBAL $config;
243
244 $has_default_rpc_server = false;
245 foreach ($config["unrealircd"] as $name=>$e)
246 if ($e["default"])
247 $has_default_rpc_server = true;
248 if (!$has_default_rpc_server)
249 {
250 /* Make first server in the list the default */
251 foreach ($config["unrealircd"] as $name=>$e)
252 {
253 $config["unrealircd"][$name]["default"] = true;
254 break;
255 }
256 }
257}
258
a4850187
BM
259function secret_encrypt(string $text)
260{
261 GLOBAL $config;
262
263 $key = base64_decode($config['secrets']['key']);
264 $nonce = \random_bytes(\SODIUM_CRYPTO_AEAD_XCHACHA20POLY1305_IETF_NPUBBYTES);
265 $encrypted_text = sodium_crypto_aead_xchacha20poly1305_ietf_encrypt($text, '', $nonce, $key);
266 return "secret:".rtrim(base64_encode($nonce),'=').':'.rtrim(base64_encode($encrypted_text),'='); // secret:base64(NONCE):base64(ENCRYPTEDTEXT)
267}
268
269function secret_decrypt(string $crypted)
270{
271 GLOBAL $config;
272
273 $key = base64_decode($config['secrets']['key']);
274 $d = explode(":", $crypted);
275 if (count($d) != 3)
276 return null;
277 $nonce = base64_decode($d[1]);
278 $ciphertext = base64_decode($d[2]);
279
280 $ret = sodium_crypto_aead_xchacha20poly1305_ietf_decrypt($ciphertext, '', $nonce, $key);
281 if ($ret === false)
282 return null;
283 return $ret;
284}
285
e1461204
BM
286function upgrade_check()
287{
288 GLOBAL $config_transition_unreal_server;
79e2577d 289 GLOBAL $config;
e1461204
BM
290
291 /* Moving of a config.php item to DB: */
292 if ($config_transition_unreal_server)
293 write_config();
294
6b08fcb9 295 /* Our own stuff may need upgrading.. */
a4850187 296 /* - generating secrets */
6b08fcb9
BM
297 if (!isset($config['secrets']))
298 {
299 generate_secrets();
300 write_config_file();
301 }
a4850187
BM
302 /* - encrypting rpc_password */
303 if (isset($config['unrealircd']) &&
304 isset($config['unrealircd']['rpc_password']) &&
305 !str_starts_with($config['unrealircd']['rpc_password'], "secret:"))
306 {
307 $ret = secret_encrypt($config['unrealircd']['rpc_password']);
308 if ($ret !== false)
309 {
310 $config['unrealircd']['rpc_password'] = $ret;
311 write_config('unrealircd');
312 }
313 }
41aad10c
BM
314 /* $config["unrealircd"] should be an array now.. */
315 if (isset($config['unrealircd']) && isset($config['unrealircd']['rpc_password']))
316 {
317 $config["unrealircd"]["default"] = true;
318 $config['unrealircd'] = [
319 "Primary" => $config['unrealircd']];
320 write_config("unrealircd");
321 }
6b08fcb9 322
e1461204
BM
323 $version = get_version();
324 if (!isset($config['webpanel_version']))
325 $config['webpanel_version'] = '';
326 if ($version != $config['webpanel_version'])
327 {
328 $versioninfo = [
329 "old_version" => $config['webpanel_version'],
330 "new_version" => $version
331 ];
6b08fcb9 332 /* And inform the hook (eg the database backends) */
e1461204
BM
333 Hook::run(HOOKTYPE_UPGRADE, $versioninfo);
334 /* And set the new version now that the upgrade is "done" */
335 $config['webpanel_version'] = $version;
336 write_config("webpanel_version");
337 }
338}
339
d3e3ec08
BM
340function panel_start_session($user = false)
341{
342 if (!isset($_SESSION))
343 {
344 session_set_cookie_params(86400); // can't set this to session_timeout due to catch-22
345 session_start();
346 }
347
348 if ($user === false)
349 {
350 $user = unreal_get_current_user();
351 if ($user === false)
352 return false;
353 }
354
cd1dee97
BM
355 $timeout = 3600;
356 if (isset($user->user_meta['session_timeout']))
357 $timeout = (INT)$user->user_meta['session_timeout'];
358
d3e3ec08
BM
359 if (!isset($_SESSION['session_timeout']))
360 $_SESSION['session_timeout'] = $timeout;
361
cd1dee97 362 $_SESSION['last-activity'] = time();
d3e3ec08
BM
363 return true;
364}
365
b41fa16f 366/* Now read the config, and redirect to install screen if we don't have it */
f1027274 367$config_transition_unreal_server = false;
65fcaafb 368if (!read_config_file())
fc51fb47 369{
b41fa16f
BM
370 if (page_requires_no_config())
371 {
372 /* Allow empty conf */
373 } else
374 if (!file_exists(UPATH."/config/config.php") && !file_exists(UPATH."/config.php"))
375 {
376 header("Location: settings/install.php");
377 die();
b41fa16f 378 }
ea90b321 379}
e1461204 380
c06c1713 381require_once UPATH . "/Classes/class-hook.php";
c4f272ad
BM
382if (!is_dir(UPATH . "/vendor"))
383 die("The vendor/ directory is missing. Most likely the admin forgot to run 'composer install'\n");
e98b5a51 384require_once UPATH . '/vendor/autoload.php';
e92763ac 385require_once UPATH . "/Classes/class-cmodes.php";
caf7fe32 386require_once UPATH . "/inc/defines.php";
d72d1923 387require_once UPATH . "/misc/strings.php";
e92763ac 388require_once UPATH . "/misc/channel-lookup-misc.php";
d72d1923
VP
389require_once UPATH . "/misc/user-lookup-misc.php";
390require_once UPATH . "/misc/server-lookup-misc.php";
391require_once UPATH . "/misc/ip-whois-misc.php";
392require_once UPATH . "/Classes/class-log.php";
393require_once UPATH . "/Classes/class-message.php";
394require_once UPATH . "/Classes/class-rpc.php";
6930484c 395require_once UPATH . "/Classes/class-paneluser.php";
d72d1923 396require_once UPATH . "/plugins.php";
1e6ffd06 397
cd1dee97
BM
398/* Do various checks and reading, except during setup step 1. */
399if (!page_requires_no_config())
400{
401 /* Now that plugins are loaded, read config from DB */
402 read_config_db();
e1461204 403
cd1dee97
BM
404 /* Check if anything needs upgrading (eg on panel version change) */
405 upgrade_check();
65fcaafb 406
cd1dee97
BM
407 /* And a check... */
408 if (!get_config("base_url"))
409 die("The base_url was not found in your config. Setup went wrong?");
410}
65fcaafb 411
5a7f0cde 412$pages = [
dd903e52
BM
413 "Overview" => ["url"=>""],
414 "Users" => ["url"=>"users"],
415 "Channels" => ["url"=>"channels"],
416 "Servers" => ["url"=>"servers"],
d6f10d25 417 "Server Bans" => [
dd903e52
BM
418 "Server Bans" => ["url" => "server-bans"],
419 "Name Bans" => ["url" => "server-bans/name-bans.php"],
420 "Ban Exceptions" => ["url" => "server-bans/ban-exceptions.php"],
d6f10d25 421 ],
dd903e52 422 "Spamfilter" => ["url" => "spamfilter.php"],
d6f10d25 423 "Tools" => [
dd903e52 424 "IP WHOIS" => ["url" => "tools/ip-whois.php"],
d6f10d25
BM
425 ],
426 "Settings" => [
dd903e52
BM
427 "Plugins" => ["url" => "settings/plugins.php"],
428 "RPC Servers" => ["url" => "settings/rpc-servers.php"],
d6f10d25 429 ],
180b8ec1 430
dd903e52 431 "News" => ["url" => "news.php"],
5a7f0cde 432];
c00c34d2 433
cd1dee97
BM
434if (!panel_start_session())
435{
436 if (!page_requires_no_login())
437 {
c51ca81c 438 if (!is_auth_provided())
ce25dde2 439 die("No authentication plugin loaded. You must load either sql_db, file_db, or a similar auth plugin!");
cd1dee97
BM
440 $current_page = $_SERVER['REQUEST_URI'];
441 header("Location: ".get_config("base_url")."login/?redirect=".urlencode($current_page));
fb06ed6c 442 die;
cd1dee97 443 }
c51ca81c 444} else {
dd903e52 445 $pages["Settings"]["Accounts"] = ["url" => "settings"];
1634b6ac 446 if (current_user_can(PERMISSION_MANAGE_USERS))
dd903e52 447 $pages["Settings"]["Role Editor"] = ["url"=>"settings/user-role-edit.php"];
c00c34d2
VP
448 $user = unreal_get_current_user();
449 if ($user)
450 {
451 /* Add logout page, if logged in */
dd903e52 452 $pages["Logout"] = ["url"=>"login/?logout=true"];
c00c34d2
VP
453 }
454}
c51ca81c 455
90dc8f2b
VP
456Hook::run(HOOKTYPE_NAVBAR, $pages);
457
458/* Example to add new menu item:
90dc8f2b
VP
459 *
460 * class MyPlugin
461 * {
462 *
55fd88eb
VP
463 * function __construct()
464 * {
465 * Hook::func(HOOKTYPE_NAVBAR, [$this, 'add_menu'])
466 * }
90dc8f2b 467 *
55fd88eb
VP
468 * function add_menu(&$pages) // this should pass by reference (using the & prefix)
469 * {
470 * $page_name = "My New Page";
471 * $page_link = "link/to/page.php";
472 * $pages[$page_name] = $page_link;
473 * }
90dc8f2b
VP
474 * }
475*/