有没有在未构造的类中使用CakeResponse对象的方法?

时间:2017-04-27 19:14:57

标签: php cakephp error-handling cakephp-2.7

我目前正在为 CakePHP 中的应用做自定义 ErrorHandler 。 原因?好吧,机器人总是试图在你的服务器中找到东西,有时它们会引发异常或错误。

使用此 ErrorHandler 的想法是过滤请求并使用相应的标头进行响应,并通过处理此类请求防止进一步的请求损坏,并使其对用户客户端透明(因为它例如,可能会影响JavaScript

  

还有什么比使用Framework的功能更好的方法,对吗?

     

问题是因为这个ErrorHandler是静态使用的,   好吧,没有构造函数所以没有任何东西继承任何东西,它没有   如果您实例化任何其他 CakePHP对象

     

使用CakeResponse对象的适当方法是什么?

CakePHP的配置:

应用/配置/ bootstrap.php中:

App::uses('CustomErrorHandler', 'Lib');

应用/配置/ core.php中:

// Error and exception handlers.
Configure::write('Error', array(
    'handler' => 'CustomErrorHandler::handleError',
    'level' => E_ALL & ~E_DEPRECATED,
    'trace' => true
));
Configure::write('Exception', array(
    'handler' => 'CustomErrorHandler::handleException',
    'renderer' => 'ExceptionRenderer',
    'log' => true
));

应用/ LIB / CustomErrorHandler.php:

  ... rest of class code ...

  /**
   * Named after convention: This method receives all CakePHP's
   * errors and exceptions…
   *
   * @param  array $e The exception object.
   * @return mixed    Returns the error handling or header redirection.
   */
   public static function handleException($e)
   {
       $message = (string) $e->getMessage();
       $code    = (int)    $e->getCode();
       $file    = (string) $e->getFile();
       $line    = (string) $e->getLine();

       // If it's a Blacklist resource exception it will log it and redirect to home.
       if (self::__isResourceException($message))
       {
           return self::__dismissError();
       }

       return parent::handleException($e);
   }

  /**
   * This method redirects to home address using CakeResponse Object.
   *
   * @return mixed
   */
   private static function __dismissError()
   {
       return (new CakeResponse)->header(array(
           'Location' => self::$redirectUrl
       ));
   }
}

更新2:

将在ExceptionRenderer上尝试一个小层。

1 个答案:

答案 0 :(得分:1)

在那里使用CakeResponse对象并不是真的有意义......如果您在其上调用send(),它会起作用,但只有一个标题,与直接使用header()相比没有优势。

话虽如此,但无论如何你都放弃了Controller.shutdownDispatcher.afterDispatch事件。它们在ExceptionRenderer::_shutdown()中被调度,并且通常用于设置响应头(CORS相关头是一个很好的例子),因此您应该确定是否可以删除它们,甚至可能需要它。

如果您需要保留shutdownafterDispatch事件,那么您应该自行触发它们,或者甚至使用处理该特定类型的异常的扩展ExceptionRenderer并发送一个空的响应,并添加了您的位置标题。

另见