error.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. // -----------------------------------------------------
  68. // Build the error view.
  69. // -----------------------------------------------------
  70. $view = View::make('error/exception')
  71. ->bind('severity', $severity)
  72. ->bind('message', $message)
  73. ->bind('file', $file)
  74. ->bind('line', $e->getLine())
  75. ->bind('trace', $e->getTraceAsString())
  76. ->bind('contexts', static::context($file, $e->getLine()));
  77. // -----------------------------------------------------
  78. // Send the detailed error response.
  79. // -----------------------------------------------------
  80. Response::make($view, 500)->send();
  81. }
  82. else
  83. {
  84. // -----------------------------------------------------
  85. // Send the generic error response.
  86. // -----------------------------------------------------
  87. Response::make(View::make('error/500'), 500)->send();
  88. }
  89. exit(1);
  90. }
  91. /**
  92. * Get the file context of an exception.
  93. *
  94. * @param string $path
  95. * @param int $line
  96. * @param int $padding
  97. * @return array
  98. */
  99. private static function context($path, $line, $padding = 5)
  100. {
  101. // -----------------------------------------------------
  102. // Verify that the file exists.
  103. // -----------------------------------------------------
  104. if (file_exists($path))
  105. {
  106. // -----------------------------------------------------
  107. // Get the contents of the file.
  108. // -----------------------------------------------------
  109. $file = file($path, FILE_IGNORE_NEW_LINES);
  110. // -----------------------------------------------------
  111. // Unshift the array.
  112. // -----------------------------------------------------
  113. array_unshift($file, '');
  114. // -----------------------------------------------------
  115. // Calculate the starting position.
  116. // -----------------------------------------------------
  117. $start = $line - $padding;
  118. if ($start < 0)
  119. {
  120. $start = 0;
  121. }
  122. // -----------------------------------------------------
  123. // Calculate the context length.
  124. // -----------------------------------------------------
  125. $length = ($line - $start) + $padding + 1;
  126. if (($start + $length) > count($file) - 1)
  127. {
  128. $length = null;
  129. }
  130. // -----------------------------------------------------
  131. // Return the context.
  132. // -----------------------------------------------------
  133. return array_slice($file, $start, $length, true);
  134. }
  135. return array();
  136. }
  137. }