2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2008-08-22 01:52:37 +00:00
|
|
|
* Error handler
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2008-08-22 01:52:37 +00:00
|
|
|
* Provides Error Capturing for Framework errors.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-09-03 14:30:35 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
|
|
|
* @since CakePHP(tm) v 0.10.5.1732
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2008-11-08 02:54:07 +00:00
|
|
|
* Error Handler.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-09-02 20:39:09 +00:00
|
|
|
* Captures and handles all unhandled exceptions. Displays helpful framework errors when debug > 1.
|
2010-09-04 05:34:45 +00:00
|
|
|
* When debug < 1 a CakeException will render 404 or 500 errors. If an uncaught exception is thrown
|
|
|
|
* and it is a type that ErrorHandler does not know about it will be treated as a 500 error.
|
2010-09-02 20:39:09 +00:00
|
|
|
*
|
|
|
|
* ### Implementing application specific exception handling
|
|
|
|
*
|
|
|
|
* You can implement application specific exception handling in one of a few ways:
|
|
|
|
*
|
|
|
|
* - Create a AppController::appError();
|
|
|
|
* - Create an AppError class.
|
|
|
|
*
|
|
|
|
* #### Using AppController::appError();
|
|
|
|
*
|
|
|
|
* This controller method is called instead of the default exception handling. It receives the
|
|
|
|
* thrown exception as its only argument. You should implement your error handling in that method.
|
|
|
|
*
|
|
|
|
* #### Using an AppError class
|
|
|
|
*
|
|
|
|
* This approach gives more flexibility and power in how you handle exceptions. You can create
|
|
|
|
* `app/libs/app_error.php` and create a class called `AppError`. The core ErrorHandler class
|
|
|
|
* will attempt to construct this class and let it handle the exception. This provides a more
|
|
|
|
* flexible way to handle exceptions in your application.
|
|
|
|
*
|
|
|
|
* Finally, in your `app/config/bootstrap.php` you can configure use `set_exception_handler()`
|
|
|
|
* to take total control over application exception handling.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-08-28 05:39:02 +00:00
|
|
|
class ErrorHandler {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Controller instance.
|
|
|
|
*
|
2009-03-19 21:10:13 +00:00
|
|
|
* @var Controller
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $controller = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-08-30 01:37:25 +00:00
|
|
|
/**
|
|
|
|
* template to render for CakeException
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $template = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The method corresponding to the Exception this object is for.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $method = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The exception being handled.
|
|
|
|
*
|
|
|
|
* @var Exception
|
|
|
|
*/
|
|
|
|
public $error = null;
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-09-02 00:29:55 +00:00
|
|
|
* Creates the controller to perform rendering on the error response.
|
2010-09-04 23:06:10 +00:00
|
|
|
* If the error is a CakeException it will be converted to either a 400 or a 500
|
|
|
|
* code error depending on the code used to construct the error.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @param string $method Method producing the error
|
|
|
|
* @param array $messages Error messages
|
|
|
|
*/
|
2010-08-28 05:39:02 +00:00
|
|
|
function __construct(Exception $exception) {
|
|
|
|
App::import('Core', 'Sanitize');
|
2008-11-08 02:54:07 +00:00
|
|
|
|
2010-08-28 23:53:21 +00:00
|
|
|
$this->controller = $this->_getController($exception);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if (method_exists($this->controller, 'apperror')) {
|
2010-08-28 05:39:02 +00:00
|
|
|
return $this->controller->appError($exception);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-08-30 01:37:25 +00:00
|
|
|
$method = $template = Inflector::variable(str_replace('Exception', '', get_class($exception)));
|
2010-09-04 19:38:10 +00:00
|
|
|
$code = $exception->getCode();
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-09-04 19:38:10 +00:00
|
|
|
$methodExists = method_exists($this, $method);
|
|
|
|
|
|
|
|
if ($exception instanceof CakeException && !$methodExists) {
|
2010-08-30 01:37:25 +00:00
|
|
|
$method = '_cakeError';
|
2010-09-05 06:05:31 +00:00
|
|
|
if ($template == 'internalError') {
|
|
|
|
$template = 'error500';
|
|
|
|
}
|
2010-09-04 19:38:10 +00:00
|
|
|
} elseif (!$methodExists) {
|
2010-09-02 00:29:55 +00:00
|
|
|
$method = 'error500';
|
2010-09-04 19:38:10 +00:00
|
|
|
if ($code >= 400) {
|
|
|
|
$method = 'error400';
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-08-30 01:37:25 +00:00
|
|
|
|
2010-09-04 19:38:10 +00:00
|
|
|
if (Configure::read('debug') == 0) {
|
2010-08-30 01:37:25 +00:00
|
|
|
$parentClass = get_parent_class($this);
|
|
|
|
if ($parentClass != 'ErrorHandler') {
|
2010-09-04 19:38:10 +00:00
|
|
|
$method = 'error400';
|
2010-08-30 01:37:25 +00:00
|
|
|
}
|
|
|
|
$parentMethods = (array)get_class_methods($parentClass);
|
|
|
|
if (in_array($method, $parentMethods)) {
|
2010-09-04 19:38:10 +00:00
|
|
|
$method = 'error400';
|
2010-08-30 01:37:25 +00:00
|
|
|
}
|
|
|
|
if ($code == 500) {
|
|
|
|
$method = 'error500';
|
2008-06-21 15:35:17 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-08-30 01:37:25 +00:00
|
|
|
$this->template = $template;
|
2010-08-28 23:53:21 +00:00
|
|
|
$this->method = $method;
|
|
|
|
$this->error = $exception;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the controller instance to handle the exception.
|
|
|
|
* Override this method in subclasses to customize the controller used.
|
|
|
|
* This method returns the built in `CakeErrorController` normally, or if an error is repeated
|
|
|
|
* a bare controller will be used.
|
|
|
|
*
|
|
|
|
* @param Exception $exception The exception to get a controller for.
|
|
|
|
* @return Controller
|
|
|
|
*/
|
|
|
|
protected function _getController($exception) {
|
|
|
|
static $__previousError = null;
|
|
|
|
App::import('Controller', 'CakeError');
|
|
|
|
|
|
|
|
if ($__previousError != $exception) {
|
|
|
|
$__previousError = $exception;
|
|
|
|
$controller = new CakeErrorController();
|
|
|
|
} else {
|
|
|
|
$controller = new Controller();
|
|
|
|
$controller->viewPath = 'errors';
|
|
|
|
}
|
2010-08-29 03:32:14 +00:00
|
|
|
return $controller;
|
2010-08-28 05:39:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set as the default exception handler by the CakePHP bootstrap process.
|
2010-09-03 19:03:33 +00:00
|
|
|
*
|
|
|
|
* This will either use an AppError class if your application has one,
|
|
|
|
* or use the default ErrorHandler.
|
2010-08-28 05:39:02 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @see http://php.net/manual/en/function.set-exception-handler.php
|
|
|
|
*/
|
|
|
|
public static function handleException(Exception $exception) {
|
2010-09-03 19:03:33 +00:00
|
|
|
if (file_exists(APP . 'app_error.php') || class_exists('AppError')) {
|
|
|
|
if (!class_exists('AppError')) {
|
|
|
|
require(APP . 'app_error.php');
|
|
|
|
}
|
|
|
|
$AppError = new AppError($exception);
|
|
|
|
return $AppError->render();
|
|
|
|
}
|
2010-08-28 05:39:02 +00:00
|
|
|
$error = new ErrorHandler($exception);
|
2010-08-28 23:53:21 +00:00
|
|
|
$error->render();
|
|
|
|
}
|
|
|
|
|
2010-11-15 01:00:27 +00:00
|
|
|
/**
|
|
|
|
* Set as the default error handler by CakePHP. Use Configure::write('Error.handler', $callback), to use your own
|
|
|
|
* error handling methods. This function will use Debugger to display errors when debug > 0. And
|
|
|
|
* will log errors to CakeLog, when debug == 0.
|
|
|
|
*
|
|
|
|
* You can use Configure::write('Error.level', $value); to set what type of errors will be handled here.
|
2010-11-15 03:06:18 +00:00
|
|
|
* Stack traces for errors can be enabled with Configure::write('Error.trace', true);
|
2010-11-15 01:00:27 +00:00
|
|
|
*
|
|
|
|
* @param integer $code Code of error
|
|
|
|
* @param string $description Error description
|
|
|
|
* @param string $file File on which error occurred
|
|
|
|
* @param integer $line Line that triggered the error
|
|
|
|
* @param array $context Context
|
|
|
|
* @return boolean true if error was handled
|
|
|
|
*/
|
|
|
|
public static function handleError($code, $description, $file = null, $line = null, $context = null) {
|
2010-11-15 03:06:18 +00:00
|
|
|
$errorConfig = Configure::read('Error');
|
|
|
|
if ($errorConfig['level'] && ($code & ~$errorConfig['level'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
list($error, $log) = self::_mapErrorCode($code);
|
|
|
|
|
2010-11-15 01:00:27 +00:00
|
|
|
$debug = Configure::read('debug');
|
|
|
|
if ($debug) {
|
2010-11-15 01:32:44 +00:00
|
|
|
if (!class_exists('Debugger')) {
|
|
|
|
require LIBS . 'debugger.php';
|
|
|
|
}
|
2010-11-15 03:06:18 +00:00
|
|
|
$data = array(
|
|
|
|
'level' => $log,
|
|
|
|
'code' => $code,
|
|
|
|
'error' => $error,
|
|
|
|
'description' => $description,
|
|
|
|
'file' => $file,
|
|
|
|
'line' => $line,
|
|
|
|
'context' => $context,
|
|
|
|
'start' => 2,
|
|
|
|
'path' => Debugger::trimPath($file)
|
|
|
|
);
|
|
|
|
return Debugger::getInstance()->outputError($data);
|
2010-11-15 01:00:27 +00:00
|
|
|
} else {
|
2010-11-15 01:32:44 +00:00
|
|
|
if (!class_exists('CakeLog')) {
|
|
|
|
require LIBS . 'cake_log.php';
|
|
|
|
}
|
2010-11-15 03:06:18 +00:00
|
|
|
$message = $error . ' (' . $code . '): ' . $description . ' in [' . $file . ', line ' . $line . ']';
|
|
|
|
if (!empty($errorConfig['trace'])) {
|
|
|
|
if (!class_exists('Debugger')) {
|
|
|
|
require LIBS . 'debugger.php';
|
|
|
|
}
|
|
|
|
$trace = Debugger::trace(array('start' => 1, 'format' => 'log'));
|
|
|
|
$message .= "\nTrace:\n" . $trace . "\n";
|
|
|
|
}
|
|
|
|
return CakeLog::write($log, $message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Map an error code into an Error word, and log location.
|
|
|
|
*
|
|
|
|
* @param int $code Error code to map
|
|
|
|
* @return array Array of error word, and log location.
|
|
|
|
*/
|
|
|
|
protected static function _mapErrorCode($code) {
|
|
|
|
switch ($code) {
|
|
|
|
case E_PARSE:
|
|
|
|
case E_ERROR:
|
|
|
|
case E_CORE_ERROR:
|
|
|
|
case E_COMPILE_ERROR:
|
|
|
|
case E_USER_ERROR:
|
|
|
|
$error = 'Fatal Error';
|
|
|
|
$log = LOG_ERROR;
|
|
|
|
break;
|
|
|
|
case E_WARNING:
|
|
|
|
case E_USER_WARNING:
|
|
|
|
case E_COMPILE_WARNING:
|
|
|
|
case E_RECOVERABLE_ERROR:
|
|
|
|
$error = 'Warning';
|
|
|
|
$log = LOG_WARNING;
|
|
|
|
break;
|
|
|
|
case E_NOTICE:
|
|
|
|
case E_USER_NOTICE:
|
|
|
|
$error = 'Notice';
|
|
|
|
$log = LOG_NOTICE;
|
|
|
|
break;
|
|
|
|
case E_STRICT:
|
|
|
|
$error = 'Strict';
|
|
|
|
$log = LOG_NOTICE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return array();
|
|
|
|
break;
|
2010-11-15 01:00:27 +00:00
|
|
|
}
|
2010-11-15 03:06:18 +00:00
|
|
|
return array($error, $log);
|
2010-11-15 01:00:27 +00:00
|
|
|
}
|
|
|
|
|
2010-08-28 23:53:21 +00:00
|
|
|
/**
|
|
|
|
* Renders the response for the exception.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function render() {
|
|
|
|
call_user_func_array(array($this, $this->method), array($this->error));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-08-30 01:37:25 +00:00
|
|
|
/**
|
|
|
|
* Generic handler for the internal framework errors CakePHP can generate.
|
|
|
|
*
|
|
|
|
* @param CakeExeption $error
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function _cakeError(CakeException $error) {
|
|
|
|
$url = Router::normalize($this->controller->request->here);
|
|
|
|
$code = $error->getCode();
|
|
|
|
$this->controller->response->statusCode($code);
|
|
|
|
$this->controller->set(array(
|
|
|
|
'code' => $code,
|
|
|
|
'url' => h($url),
|
2010-09-06 21:54:48 +00:00
|
|
|
'name' => $error->getMessage(),
|
|
|
|
'error' => $error,
|
2010-08-30 01:37:25 +00:00
|
|
|
));
|
|
|
|
$this->controller->set($error->getAttributes());
|
|
|
|
$this->_outputMessage($this->template);
|
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-09-04 19:38:10 +00:00
|
|
|
* Convenience method to display a 400 series page.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @param array $params Parameters for controller
|
|
|
|
*/
|
2010-09-04 19:38:10 +00:00
|
|
|
public function error400($error) {
|
2010-08-29 17:49:10 +00:00
|
|
|
$message = $error->getMessage();
|
2010-08-30 03:39:28 +00:00
|
|
|
if (Configure::read('debug') == 0 && $error instanceof CakeException) {
|
2010-08-29 17:49:10 +00:00
|
|
|
$message = __('Not Found');
|
|
|
|
}
|
2010-08-29 03:32:14 +00:00
|
|
|
$url = Router::normalize($this->controller->request->here);
|
2010-09-04 19:38:10 +00:00
|
|
|
$this->controller->response->statusCode($error->getCode());
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->controller->set(array(
|
2010-08-29 17:49:10 +00:00
|
|
|
'name' => $message,
|
2010-08-29 03:32:14 +00:00
|
|
|
'url' => h($url),
|
2010-09-06 22:09:11 +00:00
|
|
|
'error' => $error,
|
2008-05-30 11:40:08 +00:00
|
|
|
));
|
2010-09-04 19:38:10 +00:00
|
|
|
$this->_outputMessage('error400');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-12-13 20:35:51 +00:00
|
|
|
/**
|
|
|
|
* Convenience method to display a 500 page.
|
|
|
|
*
|
|
|
|
* @param array $params Parameters for controller
|
|
|
|
*/
|
2010-09-04 19:38:10 +00:00
|
|
|
public function error500($error) {
|
2010-08-29 17:49:10 +00:00
|
|
|
$url = Router::normalize($this->controller->request->here);
|
2010-09-04 23:06:10 +00:00
|
|
|
$code = ($error->getCode() > 500) ? $error->getCode() : 500;
|
|
|
|
$this->controller->response->statusCode($code);
|
2009-12-13 20:35:51 +00:00
|
|
|
$this->controller->set(array(
|
2010-04-15 16:00:25 +00:00
|
|
|
'name' => __('An Internal Error Has Occurred'),
|
2009-12-13 20:35:51 +00:00
|
|
|
'message' => h($url),
|
2010-09-06 22:09:11 +00:00
|
|
|
'error' => $error,
|
2009-12-13 20:35:51 +00:00
|
|
|
));
|
|
|
|
$this->_outputMessage('error500');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-08-30 01:37:25 +00:00
|
|
|
* Generate the response using the controller object.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-08-30 01:37:25 +00:00
|
|
|
* @param string $template The template to render.
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:21:28 +00:00
|
|
|
protected function _outputMessage($template) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->controller->render($template);
|
|
|
|
$this->controller->afterFilter();
|
2010-08-28 05:39:02 +00:00
|
|
|
$this->controller->response->send();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|