error.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php namespace System;
  2. class Error {
  3. /**
  4. * Error levels.
  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. // -----------------------------------------------------
  32. // Clean the output buffer.
  33. // -----------------------------------------------------
  34. if (ob_get_level() > 0)
  35. {
  36. ob_clean();
  37. }
  38. // -----------------------------------------------------
  39. // Get the error severity.
  40. // -----------------------------------------------------
  41. $severity = (array_key_exists($e->getCode(), static::$levels)) ? static::$levels[$e->getCode()] : $e->getCode();
  42. // -----------------------------------------------------
  43. // Get the error file. Views require special handling
  44. // since view errors occur within eval'd code.
  45. // -----------------------------------------------------
  46. if (strpos($e->getFile(), 'view.php') !== false and strpos($e->getFile(), "eval()'d code") !== false)
  47. {
  48. $file = APP_PATH.'views/'.View::$last.EXT;
  49. }
  50. else
  51. {
  52. $file = $e->getFile();
  53. }
  54. // -----------------------------------------------------
  55. // Trim the period off of the error message.
  56. // -----------------------------------------------------
  57. $message = rtrim($e->getMessage(), '.');
  58. // -----------------------------------------------------
  59. // Log the error.
  60. // -----------------------------------------------------
  61. if (Config::get('error.log'))
  62. {
  63. Log::error($message.' in '.$e->getFile().' on line '.$e->getLine());
  64. }
  65. if (Config::get('error.detail'))
  66. {
  67. $view = View::make('exception')
  68. ->bind('severity', $severity)
  69. ->bind('message', $message)
  70. ->bind('file', $file)
  71. ->bind('line', $e->getLine())
  72. ->bind('trace', $e->getTraceAsString())
  73. ->bind('contexts', static::context($file, $e->getLine()));
  74. Response::make($view, 500)->send();
  75. }
  76. else
  77. {
  78. Response::make(View::make('error/500'), 500)->send();
  79. }
  80. exit(1);
  81. }
  82. /**
  83. * Get the file context of an exception.
  84. *
  85. * @param string $path
  86. * @param int $line
  87. * @param int $padding
  88. * @return array
  89. */
  90. private static function context($path, $line, $padding = 5)
  91. {
  92. if (file_exists($path))
  93. {
  94. $file = file($path, FILE_IGNORE_NEW_LINES);
  95. array_unshift($file, '');
  96. // -----------------------------------------------------
  97. // Calculate the starting position.
  98. // -----------------------------------------------------
  99. $start = $line - $padding;
  100. if ($start < 0)
  101. {
  102. $start = 0;
  103. }
  104. // -----------------------------------------------------
  105. // Calculate the context length.
  106. // -----------------------------------------------------
  107. $length = ($line - $start) + $padding + 1;
  108. if (($start + $length) > count($file) - 1)
  109. {
  110. $length = null;
  111. }
  112. return array_slice($file, $start, $length, true);
  113. }
  114. return array();
  115. }
  116. }