| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- <?php
- /**
- * PHP 5
- *
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since CakePHP(tm) v 2.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Error;
- use Cake\Controller\Controller;
- use Cake\Controller\ErrorController;
- use Cake\Core\Configure;
- use Cake\Error;
- use Cake\Event\Event;
- use Cake\Network\Request;
- use Cake\Network\Response;
- use Cake\Routing\Router;
- use Cake\Utility\Inflector;
- use Cake\View\View;
- /**
- * Exception Renderer.
- *
- * Captures and handles all unhandled exceptions. Displays helpful framework errors when debug > 1.
- * When debug < 1 a CakeException will render 404 or 500 errors. If an uncaught exception is thrown
- * and it is a type that ExceptionHandler does not know about it will be treated as a 500 error.
- *
- * ### Implementing application specific exception rendering
- *
- * You can implement application specific exception handling by creating a subclass of
- * ExceptionRenderer and configure it to be the `exceptionRenderer` in App/Config/error.php
- *
- * #### Using a subclass of ExceptionRenderer
- *
- * Using a subclass of ExceptionRenderer gives you full control over how Exceptions are rendered, you
- * can configure your class in your App/Config/error.php.
- */
- class ExceptionRenderer {
- /**
- * Controller instance.
- *
- * @var Controller
- */
- public $controller = null;
- /**
- * template to render for Cake\Error\Exception
- *
- * @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;
- /**
- * Creates the controller to perform rendering on the error response.
- * If the error is a Cake\Error\Exception it will be converted to either a 400 or a 500
- * code error depending on the code used to construct the error.
- *
- * @param \Exception $exception Exception
- */
- public function __construct(\Exception $exception) {
- $this->controller = $this->_getController($exception);
- list(, $baseClass) = namespaceSplit(get_class($exception));
- $baseClass = substr($baseClass, 0, -9);
- $method = $template = Inflector::variable($baseClass);
- $code = $exception->getCode();
- $methodExists = method_exists($this, $method);
- if ($exception instanceof Exception && !$methodExists) {
- $method = '_cakeError';
- if (empty($template) || $template === 'internalError') {
- $template = 'error500';
- }
- } elseif ($exception instanceof \PDOException) {
- $method = 'pdoError';
- $template = 'pdo_error';
- $code = 500;
- } elseif (!$methodExists) {
- $method = 'error500';
- if ($code >= 400 && $code < 500) {
- $method = 'error400';
- }
- }
- $isNotDebug = !Configure::read('debug');
- if ($isNotDebug && $method === '_cakeError') {
- $method = 'error400';
- }
- if ($isNotDebug && $code == 500) {
- $method = 'error500';
- }
- $this->template = $template;
- $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 `ErrorController` 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) {
- if (!$request = Router::getRequest(true)) {
- $request = Request::createFromGlobals();
- }
- $response = new Response();
- if (method_exists($exception, 'responseHeader')) {
- $response->header($exception->responseHeader());
- }
- try {
- $controller = new ErrorController($request, $response);
- $controller->startupProcess();
- } catch (\Exception $e) {
- if (!empty($controller) && isset($controller->RequestHandler)) {
- $event = new Event('Controller.startup', $controller);
- $controller->RequestHandler->startup($event);
- }
- }
- if (empty($controller)) {
- $controller = new Controller($request, $response);
- $controller->viewPath = 'Error';
- }
- return $controller;
- }
- /**
- * Renders the response for the exception.
- *
- * @return void
- */
- public function render() {
- if ($this->method) {
- call_user_func_array(array($this, $this->method), array($this->error));
- }
- }
- /**
- * Generic handler for the internal framework errors CakePHP can generate.
- *
- * @param Cake\Error\Exception $error
- * @return void
- */
- protected function _cakeError(Exception $error) {
- $url = $this->controller->request->here();
- $code = ($error->getCode() >= 400 && $error->getCode() < 506) ? $error->getCode() : 500;
- $this->controller->response->statusCode($code);
- $this->controller->set(array(
- 'code' => $code,
- 'url' => h($url),
- 'name' => h($error->getMessage()),
- 'error' => $error,
- '_serialize' => array('code', 'url', 'name')
- ));
- $this->controller->set($error->getAttributes());
- $this->_outputMessage($this->template);
- }
- /**
- * Convenience method to display a 400 series page.
- *
- * @param Exception $error
- * @return void
- */
- public function error400($error) {
- $message = $error->getMessage();
- if (!Configure::read('debug') && $error instanceof Exception) {
- $message = __d('cake', 'Not Found');
- }
- $url = $this->controller->request->here();
- $this->controller->response->statusCode($error->getCode());
- $this->controller->set(array(
- 'name' => h($message),
- 'url' => h($url),
- 'error' => $error,
- '_serialize' => array('name', 'url')
- ));
- $this->_outputMessage('error400');
- }
- /**
- * Convenience method to display a 500 page.
- *
- * @param \Exception $error
- * @return void
- */
- public function error500($error) {
- $message = $error->getMessage();
- if (!Configure::read('debug')) {
- $message = __d('cake', 'An Internal Error Has Occurred.');
- }
- $url = $this->controller->request->here();
- $code = ($error->getCode() > 500 && $error->getCode() < 506) ? $error->getCode() : 500;
- $this->controller->response->statusCode($code);
- $this->controller->set(array(
- 'name' => h($message),
- 'message' => h($url),
- 'error' => $error,
- '_serialize' => array('name', 'message')
- ));
- $this->_outputMessage('error500');
- }
- /**
- * Convenience method to display a PDOException.
- *
- * @param \PDOException $error
- * @return void
- */
- public function pdoError(\PDOException $error) {
- $url = $this->controller->request->here();
- $code = 500;
- $this->controller->response->statusCode($code);
- $this->controller->set(array(
- 'code' => $code,
- 'url' => h($url),
- 'name' => h($error->getMessage()),
- 'error' => $error,
- '_serialize' => array('code', 'url', 'name', 'error')
- ));
- $this->_outputMessage($this->template);
- }
- /**
- * Generate the response using the controller object.
- *
- * @param string $template The template to render.
- * @return void
- */
- protected function _outputMessage($template) {
- try {
- $this->controller->render($template);
- $event = new Event('Controller.shutdown', $this->controller);
- $this->controller->afterFilter($event);
- $this->controller->response->send();
- } catch (Error\MissingViewException $e) {
- $attributes = $e->getAttributes();
- if (isset($attributes['file']) && strpos($attributes['file'], 'error500') !== false) {
- $this->_outputMessageSafe('error500');
- } else {
- $this->_outputMessage('error500');
- }
- } catch (\Exception $e) {
- $this->_outputMessageSafe('error500');
- }
- }
- /**
- * A safer way to render error messages, replaces all helpers, with basics
- * and doesn't call component methods.
- *
- * @param string $template The template to render
- * @return void
- */
- protected function _outputMessageSafe($template) {
- $this->controller->layoutPath = null;
- $this->controller->subDir = null;
- $this->controller->viewPath = 'Error';
- $this->controller->layout = 'error';
- $this->controller->helpers = array('Form', 'Html', 'Session');
- $view = new View($this->controller);
- $this->controller->response->body($view->render($template, 'error'));
- $this->controller->response->type('html');
- $this->controller->response->send();
- }
- }
|