diff --git a/pandora_console/general/admin_maintenance_mode.php b/pandora_console/general/admin_maintenance_mode.php new file mode 100644 index 0000000000..eda793120f --- /dev/null +++ b/pandora_console/general/admin_maintenance_mode.php @@ -0,0 +1,81 @@ + + + + +
+

+ +

+
+
+ + 'responsive flex margn'] + ); + html_print_image( + 'images/maintenance.png', + false, + [ + 'class' => 'responsive', + 'width' => 800, + ] + ); + ?> + +
+
+

+
+ + + + + \ No newline at end of file diff --git a/pandora_console/index.php b/pandora_console/index.php index aaf960eb91..6dfb64d33f 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1042,6 +1042,33 @@ if (isset($config['id_user']) === false) { } } +if ((bool) ($config['maintenance_mode'] ?? false) === true + && is_user_admin($config['id_user']) === false +) { + // Show maintenance web-page. For non-admin users only. + include $config['homedir'].'/general/maintenance.php'; + + while (ob_get_length() > 0) { + ob_end_flush(); + } + + exit(''); +} + +if ((bool) ($config['maintenance_mode'] ?? false) === true + && $page !== 'advanced/command_center' + && is_user_admin($config['id_user']) === true +) { + // Prevent access to metaconsole if not merged. + include 'general/admin_maintenance_mode.php'; + + while (ob_get_length() > 0) { + ob_end_flush(); + } + + exit(''); +} + // Enterprise support. if (file_exists(ENTERPRISE_DIR.'/load_enterprise.php')) { include_once ENTERPRISE_DIR.'/load_enterprise.php';