error.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php namespace System;
  2. class Error {
  3. /**
  4. * Human-readable error levels and descriptions.
  5. *
  6. * @var array
  7. */
  8. public static $levels = array(
  9. 0 => 'Error',
  10. E_ERROR => 'Error',
  11. E_WARNING => 'Warning',
  12. E_PARSE => 'Parsing Error',
  13. E_NOTICE => 'Notice',
  14. E_CORE_ERROR => 'Core Error',
  15. E_CORE_WARNING => 'Core Warning',
  16. E_COMPILE_ERROR => 'Compile Error',
  17. E_COMPILE_WARNING => 'Compile Warning',
  18. E_USER_ERROR => 'User Error',
  19. E_USER_WARNING => 'User Warning',
  20. E_USER_NOTICE => 'User Notice',
  21. E_STRICT => 'Runtime Notice'
  22. );
  23. /**
  24. * Handle an exception.
  25. *
  26. * @param Exception $e
  27. * @return void
  28. */
  29. public static function handle($e)
  30. {
  31. // Clear the output buffer so nothing is sent to the browser except the error
  32. // message. This prevents any views that have already been rendered from being
  33. // in an incomplete or erroneous state.
  34. if (ob_get_level() > 0) ob_clean();
  35. $severity = (array_key_exists($e->getCode(), static::$levels)) ? static::$levels[$e->getCode()] : $e->getCode();
  36. $message = static::format($e);
  37. if (Config::get('error.log'))
  38. {
  39. call_user_func(Config::get('error.logger'), $severity, $message, $e->getTraceAsString());
  40. }
  41. static::show($e, $severity, $message);
  42. exit(1);
  43. }
  44. /**
  45. * Format the error message for a given exception.
  46. *
  47. * @param Exception $e
  48. * @return string
  49. */
  50. private static function format($e)
  51. {
  52. $file = str_replace(array(APP_PATH, SYS_PATH), array('APP_PATH/', 'SYS_PATH/'), $e->getFile());
  53. return rtrim($e->getMessage(), '.').' in '.$file.' on line '.$e->getLine().'.';
  54. }
  55. /**
  56. * Show the error view.
  57. *
  58. * @param Exception $e
  59. * @param string $severity
  60. * @param string $message
  61. * @return void
  62. */
  63. private static function show($e, $severity, $message)
  64. {
  65. if (Config::get('error.detail'))
  66. {
  67. $view = View::make('error/exception')
  68. ->bind('severity', $severity)
  69. ->bind('message', $message)
  70. ->bind('line', $e->getLine())
  71. ->bind('trace', $e->getTraceAsString())
  72. ->bind('contexts', static::context($e->getFile(), $e->getLine()));
  73. Response::make($view, 500)->send();
  74. }
  75. else
  76. {
  77. Response::error('500')->send();
  78. }
  79. }
  80. /**
  81. * Get the code surrounding a given line in a file.
  82. *
  83. * @param string $path
  84. * @param int $line
  85. * @param int $padding
  86. * @return string
  87. */
  88. private static function context($path, $line, $padding = 5)
  89. {
  90. if (file_exists($path))
  91. {
  92. $file = file($path, FILE_IGNORE_NEW_LINES);
  93. array_unshift($file, '');
  94. if (($start = $line - $padding) < 0) $start = 0;
  95. if (($length = ($line - $start) + $padding + 1) < 0) $length = 0;
  96. return array_slice($file, $start, $length, true);
  97. }
  98. return array();
  99. }
  100. }