handler.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php namespace System\Exception;
  2. use System\View;
  3. use System\Config;
  4. use System\Response;
  5. class Handler {
  6. /**
  7. * The exception examiner for the exception being handled.
  8. *
  9. * @var Examiner
  10. */
  11. public $exception;
  12. /**
  13. * Create a new exception handler instance.
  14. *
  15. * @param Exception $e
  16. * @return void
  17. */
  18. public function __construct($e)
  19. {
  20. $this->exception = new Examiner($e);
  21. }
  22. /**
  23. * Create a new exception handler instance.
  24. *
  25. * @param Exception $e
  26. * @return Handler
  27. */
  28. public static function make($e)
  29. {
  30. return new static($e);
  31. }
  32. /**
  33. * Handle the exception and display the error report.
  34. *
  35. * The exception will be logged if error logging is enabled.
  36. *
  37. * The output buffer will be cleaned so nothing is sent to the browser except the
  38. * error message. This prevents any views that have already been rendered from
  39. * being shown in an incomplete or erroneous state.
  40. *
  41. * After the exception is displayed, the request will be halted.
  42. *
  43. * @return void
  44. */
  45. public function handle()
  46. {
  47. if (ob_get_level() > 0) ob_clean();
  48. if (Config::get('error.log')) $this->log();
  49. $this->get_response(Config::get('error.detail'))->send();
  50. exit(1);
  51. }
  52. /**
  53. * Log the exception using the logger closure specified in the error configuration.
  54. *
  55. * @return void
  56. */
  57. private function log()
  58. {
  59. $parameters = array(
  60. $this->exception->severity(),
  61. $this->exception->message(),
  62. $this->exception->getTraceAsString(),
  63. );
  64. call_user_func_array(Config::get('error.logger'), $parameters);
  65. }
  66. /**
  67. * Get the error report response for the exception.
  68. *
  69. * @param bool $detailed
  70. * @return Resposne
  71. */
  72. private function get_response($detailed)
  73. {
  74. return ($detailed) ? $this->detailed_response() : Response::error('500');
  75. }
  76. /**
  77. * Get the detailed error report for the exception.
  78. *
  79. * @return Response
  80. */
  81. private function detailed_response()
  82. {
  83. $data = array(
  84. 'severity' => $this->exception->severity(),
  85. 'message' => $this->exception->message(),
  86. 'line' => $this->exception->getLine(),
  87. 'trace' => $this->exception->getTraceAsString(),
  88. 'contexts' => $this->exception->context(),
  89. );
  90. return Response::make(View::make('error.exception', $data), 500);
  91. }
  92. }