mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 23:44:11 +01:00
- bootstrap.inc.php is now included by approot.inc.php - remove all unescessaries includes of bootstrap.inc.php - in bootstrap.inc.php autoload can be bypassed using a feature flag because "why not"
75 lines
1.9 KiB
PHP
75 lines
1.9 KiB
PHP
<?php
|
|
|
|
define('APPROOT', dirname(__FILE__).'/');
|
|
define('APPCONF', APPROOT.'conf/');
|
|
define('ITOP_DEFAULT_ENV', 'production');
|
|
define('MAINTENANCE_MODE_FILE', APPROOT.'data/.maintenance');
|
|
define('READONLY_MODE_FILE', APPROOT.'data/.readonly');
|
|
|
|
if (function_exists('microtime'))
|
|
{
|
|
$fItopStarted = microtime(true);
|
|
}
|
|
else
|
|
{
|
|
$fItopStarted = 1000 * time();
|
|
}
|
|
|
|
require_once APPROOT.'bootstrap.inc.php';
|
|
|
|
|
|
//
|
|
// Maintenance mode
|
|
//
|
|
|
|
// Use 'maintenance' parameter to bypass maintenance mode
|
|
if (!isset($bBypassMaintenance))
|
|
{
|
|
$bBypassMaintenance = isset($_REQUEST['maintenance']) ? boolval($_REQUEST['maintenance']) : false;
|
|
}
|
|
|
|
if (file_exists(MAINTENANCE_MODE_FILE) && !$bBypassMaintenance)
|
|
{
|
|
$sMessage = 'This application is currently under maintenance.';
|
|
$sTitle = 'Maintenance';
|
|
|
|
http_response_code(503);
|
|
// Display message depending on the request
|
|
include(APPROOT.'application/maintenancemsg.php');
|
|
$sSAPIName = strtoupper(trim(php_sapi_name()));
|
|
|
|
switch (true)
|
|
{
|
|
case isset($_SERVER['REQUEST_URI']) && EndsWith($_SERVER['REQUEST_URI'], '/pages/ajax.searchform.php'):
|
|
_MaintenanceHtmlMessage($sMessage);
|
|
break;
|
|
|
|
case $sSAPIName == 'CLI':
|
|
case array_key_exists('HTTP_X_COMBODO_AJAX', $_SERVER):
|
|
case isset($_SERVER['REQUEST_URI']) && EndsWith($_SERVER['REQUEST_URI'], '/webservices/soapserver.php'):
|
|
case isset($_SERVER['REQUEST_URI']) && EndsWith($_SERVER['REQUEST_URI'], '/webservices/rest.php'):
|
|
_MaintenanceTextMessage($sMessage);
|
|
break;
|
|
|
|
case isset($_SERVER['CONTENT_TYPE']) && ($_SERVER['CONTENT_TYPE'] == 'application/json'):
|
|
_MaintenanceJsonMessage($sTitle, $sMessage);
|
|
break;
|
|
|
|
default:
|
|
_MaintenanceSetupPageMessage($sTitle, $sMessage);
|
|
break;
|
|
}
|
|
exit();
|
|
}
|
|
|
|
/**
|
|
* helper to test if a string ends with another
|
|
* @param $haystack
|
|
* @param $needle
|
|
*
|
|
* @return bool
|
|
*/
|
|
function EndsWith($haystack, $needle) {
|
|
return substr_compare($haystack, $needle, -strlen($needle)) === 0;
|
|
}
|