2013-06-14 13:51:44 +02:00
|
|
|
<?php
|
|
|
|
// @codingStandardsIgnoreStart
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
2013-06-28 16:47:30 +02:00
|
|
|
/**
|
2013-10-23 15:10:33 +02:00
|
|
|
* This file is part of Icinga Web 2.
|
|
|
|
*
|
|
|
|
* Icinga Web 2 - Head for multiple monitoring backends.
|
2013-06-28 16:47:30 +02:00
|
|
|
* Copyright (C) 2013 Icinga Development Team
|
2013-08-16 14:56:23 +02:00
|
|
|
*
|
2013-06-28 16:47:30 +02:00
|
|
|
* This program 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.
|
2013-08-16 14:56:23 +02:00
|
|
|
*
|
2013-06-28 16:47:30 +02:00
|
|
|
* This program 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.
|
2013-08-16 14:56:23 +02:00
|
|
|
*
|
2013-06-28 16:47:30 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2013-08-16 14:56:23 +02:00
|
|
|
*
|
2013-10-23 15:10:33 +02:00
|
|
|
* @copyright 2013 Icinga Development Team <info@icinga.org>
|
|
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2
|
|
|
|
* @author Icinga Development Team <info@icinga.org>
|
|
|
|
*
|
2013-06-28 16:47:30 +02:00
|
|
|
*/
|
2013-06-14 13:51:44 +02:00
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
|
|
|
# namespace Icinga\Application\Controllers;
|
|
|
|
|
2014-03-25 13:10:02 +01:00
|
|
|
use Icinga\Web\Controller\ActionController;
|
|
|
|
use Icinga\Application\Icinga;
|
2013-06-14 13:51:44 +02:00
|
|
|
|
|
|
|
/**
|
2013-08-16 14:56:23 +02:00
|
|
|
* Application wide controller for displaying exceptions
|
2013-06-14 13:51:44 +02:00
|
|
|
*/
|
|
|
|
class ErrorController extends ActionController
|
|
|
|
{
|
2014-02-14 12:12:46 +01:00
|
|
|
protected $requiresAuthentication = false;
|
|
|
|
|
2013-06-14 13:51:44 +02:00
|
|
|
/**
|
2013-08-16 14:56:23 +02:00
|
|
|
* Display exception
|
2013-06-14 13:51:44 +02:00
|
|
|
*/
|
|
|
|
public function errorAction()
|
|
|
|
{
|
2014-01-23 16:03:47 +01:00
|
|
|
$error = $this->_getParam('error_handler');
|
|
|
|
$exception = $error->exception;
|
2014-01-22 14:57:54 +01:00
|
|
|
switch ($error->type) {
|
2013-06-14 13:51:44 +02:00
|
|
|
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE:
|
|
|
|
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER:
|
|
|
|
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION:
|
2014-03-25 13:10:02 +01:00
|
|
|
$modules = Icinga::app()->getModuleManager();
|
|
|
|
$path = ltrim($this->_request->get('PATH_INFO'), '/');
|
|
|
|
$path = preg_split('~/~', $path);
|
|
|
|
$path = array_shift($path);
|
2013-06-14 13:51:44 +02:00
|
|
|
$this->getResponse()->setHttpResponseCode(404);
|
2014-03-25 13:10:02 +01:00
|
|
|
$this->view->message = $this->translate('Page not found.');
|
|
|
|
if ($modules->hasInstalled($path) && ! $modules->hasEnabled($path)) {
|
|
|
|
$this->view->message .= ' ' . sprintf(
|
|
|
|
$this->translate('Enabling the "%s" module might help!'),
|
|
|
|
$path
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-06-14 13:51:44 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->getResponse()->setHttpResponseCode(500);
|
2014-03-25 13:10:02 +01:00
|
|
|
$this->view->title = 'Server error';
|
2014-01-23 16:03:47 +01:00
|
|
|
$this->view->message = $exception->getMessage();
|
2014-03-25 13:10:02 +01:00
|
|
|
if ($this->getInvokeArg('displayExceptions') == true) {
|
|
|
|
$this->view->stackTrace = $exception->getTraceAsString();
|
|
|
|
}
|
2013-06-14 13:51:44 +02:00
|
|
|
break;
|
|
|
|
}
|
2014-01-22 14:57:54 +01:00
|
|
|
$this->view->request = $error->request;
|
2013-06-14 13:51:44 +02:00
|
|
|
}
|
|
|
|
}
|
2013-06-20 13:47:51 +02:00
|
|
|
// @codingStandardsIgnoreEnd
|