mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			105 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
 | 
						|
 | 
						|
namespace Icinga\Controllers;
 | 
						|
 | 
						|
use Icinga\Web\Response\JsonResponse;
 | 
						|
use Zend_Controller_Plugin_ErrorHandler;
 | 
						|
use Icinga\Application\Icinga;
 | 
						|
use Icinga\Application\Logger;
 | 
						|
use Icinga\Exception\Http\HttpBadRequestException;
 | 
						|
use Icinga\Exception\Http\HttpMethodNotAllowedException;
 | 
						|
use Icinga\Exception\Http\HttpNotFoundException;
 | 
						|
use Icinga\Exception\MissingParameterException;
 | 
						|
use Icinga\Security\SecurityException;
 | 
						|
use Icinga\Web\Controller\ActionController;
 | 
						|
 | 
						|
/**
 | 
						|
 * Application wide controller for displaying exceptions
 | 
						|
 */
 | 
						|
class ErrorController extends ActionController
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    protected $requiresAuthentication = false;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Display exception
 | 
						|
     */
 | 
						|
    public function errorAction()
 | 
						|
    {
 | 
						|
        $error      = $this->_getParam('error_handler');
 | 
						|
        $exception  = $error->exception;
 | 
						|
        /** @var \Exception $exception */
 | 
						|
        Logger::error($exception);
 | 
						|
        Logger::error('Stacktrace: %s', $exception->getTraceAsString());
 | 
						|
 | 
						|
        if (! ($isAuthenticated = $this->Auth()->isAuthenticated())) {
 | 
						|
            $this->innerLayout = 'error';
 | 
						|
        }
 | 
						|
 | 
						|
        switch ($error->type) {
 | 
						|
            case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE:
 | 
						|
            case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER:
 | 
						|
            case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION:
 | 
						|
                $modules = Icinga::app()->getModuleManager();
 | 
						|
                $path = ltrim($this->_request->get('PATH_INFO'), '/');
 | 
						|
                $path = preg_split('~/~', $path);
 | 
						|
                $path = array_shift($path);
 | 
						|
                $this->getResponse()->setHttpResponseCode(404);
 | 
						|
                $this->view->message = $this->translate('Page not found.');
 | 
						|
                if ($isAuthenticated) {
 | 
						|
                    if ($modules->hasInstalled($path) && ! $modules->hasEnabled($path)) {
 | 
						|
                        $this->view->message .= ' ' . sprintf(
 | 
						|
                            $this->translate('Enabling the "%s" module might help!'),
 | 
						|
                            $path
 | 
						|
                        );
 | 
						|
                    }
 | 
						|
                }
 | 
						|
 | 
						|
                break;
 | 
						|
            default:
 | 
						|
                switch (true) {
 | 
						|
                    case $exception instanceof HttpMethodNotAllowedException:
 | 
						|
                        $this->getResponse()->setHttpResponseCode(405);
 | 
						|
                        $this->getResponse()->setHeader('Allow', $exception->getAllowedMethods());
 | 
						|
                        break;
 | 
						|
                    case $exception instanceof HttpNotFoundException:
 | 
						|
                        $this->getResponse()->setHttpResponseCode(404);
 | 
						|
                        break;
 | 
						|
                    case $exception instanceof MissingParameterException:
 | 
						|
                        $this->getResponse()->setHttpResponseCode(400);
 | 
						|
                        $this->getResponse()->setHeader(
 | 
						|
                            'X-Status-Reason',
 | 
						|
                            'Missing parameter ' . $exception->getParameter()
 | 
						|
                        );
 | 
						|
                        break;
 | 
						|
                    case $exception instanceof HttpBadRequestException:
 | 
						|
                        $this->getResponse()->setHttpResponseCode(400);
 | 
						|
                        break;
 | 
						|
                    case $exception instanceof SecurityException:
 | 
						|
                        $this->getResponse()->setHttpResponseCode(403);
 | 
						|
                        break;
 | 
						|
                    default:
 | 
						|
                        $this->getResponse()->setHttpResponseCode(500);
 | 
						|
                        break;
 | 
						|
                }
 | 
						|
                $this->view->message = $exception->getMessage();
 | 
						|
                if ($this->getInvokeArg('displayExceptions')) {
 | 
						|
                    $this->view->stackTrace = $exception->getTraceAsString();
 | 
						|
                }
 | 
						|
                break;
 | 
						|
        }
 | 
						|
 | 
						|
        if ($this->getRequest()->isApiRequest()) {
 | 
						|
            $this->getResponse()->json()
 | 
						|
                ->setErrorMessage($this->view->message)
 | 
						|
                ->sendResponse();
 | 
						|
        }
 | 
						|
 | 
						|
        $this->view->request = $error->request;
 | 
						|
        $this->view->hideControls = ! $isAuthenticated;
 | 
						|
    }
 | 
						|
}
 |