mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 23:44:11 +01:00
88 lines
2.6 KiB
PHP
88 lines
2.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Copyright (C) 2013-2019 Combodo SARL
|
|
*
|
|
* This file is part of iTop.
|
|
*
|
|
* iTop is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* iTop is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
*/
|
|
|
|
define('ITOP_DEFAULT_ENV', 'production');
|
|
define('MAINTENANCE_MODE_FILE', APPROOT.'data/.maintenance');
|
|
define('READONLY_MODE_FILE', APPROOT.'data/.readonly');
|
|
|
|
$fItopStarted = microtime(true);
|
|
$iItopInitialMemory = memory_get_usage(true);
|
|
|
|
if (! isset($GLOBALS['bBypassAutoload']) || $GLOBALS['bBypassAutoload'] == false)
|
|
{
|
|
require_once APPROOT.'/lib/autoload.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)
|
|
{
|
|
$sTitle = 'Maintenance';
|
|
$sMessage = 'This application is currently under maintenance.';
|
|
|
|
http_response_code(503);
|
|
// Display message depending on the request
|
|
include(APPROOT.'application/maintenancemsg.php');
|
|
$sSAPIName = strtoupper(trim(PHP_SAPI));
|
|
|
|
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']) && (strpos($_SERVER['REQUEST_URI'], '/webservices/soapserver.php') !== false):
|
|
case isset($_SERVER['REQUEST_URI']) && (strpos($_SERVER['REQUEST_URI'], '/webservices/export-v2.php') !== false):
|
|
_MaintenanceTextMessage($sMessage);
|
|
break;
|
|
|
|
case isset($_SERVER['REQUEST_URI']) && (strpos($_SERVER['REQUEST_URI'], '/webservices/rest.php') !== false):
|
|
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;
|
|
}
|