error.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php namespace System;
  2. class Error {
  3. /**
  4. * 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. // -----------------------------------------------------
  32. // Clean the output buffer. We don't want any rendered
  33. // views or text to be sent to the browser.
  34. // -----------------------------------------------------
  35. if (ob_get_level() > 0)
  36. {
  37. ob_clean();
  38. }
  39. // -----------------------------------------------------
  40. // Get the error severity in human readable format.
  41. // -----------------------------------------------------
  42. $severity = (array_key_exists($e->getCode(), static::$levels)) ? static::$levels[$e->getCode()] : $e->getCode();
  43. // -----------------------------------------------------
  44. // Get the error file. Views require special handling
  45. // since view errors occur within eval'd code.
  46. // -----------------------------------------------------
  47. if (strpos($e->getFile(), 'view.php') !== false and strpos($e->getFile(), "eval()'d code") !== false)
  48. {
  49. $file = APP_PATH.'views/'.View::$last.EXT;
  50. }
  51. else
  52. {
  53. $file = $e->getFile();
  54. }
  55. $message = rtrim($e->getMessage(), '.');
  56. if (Config::get('error.log'))
  57. {
  58. Log::error($message.' in '.$e->getFile().' on line '.$e->getLine());
  59. }
  60. // -----------------------------------------------------
  61. // Detailed error view contains the file name and stack
  62. // trace of the error. It is not wise to have details
  63. // enabled in a production environment.
  64. //
  65. // The generic error view (error/500) only has a simple,
  66. // generic error message suitable for production.
  67. // -----------------------------------------------------
  68. if (Config::get('error.detail'))
  69. {
  70. $view = View::make('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. Response::make($view, 500)->send();
  78. }
  79. else
  80. {
  81. Response::make(View::make('error/500'), 500)->send();
  82. }
  83. exit(1);
  84. }
  85. /**
  86. * Get the file context of an exception.
  87. *
  88. * @param string $path
  89. * @param int $line
  90. * @param int $padding
  91. * @return array
  92. */
  93. private static function context($path, $line, $padding = 5)
  94. {
  95. if (file_exists($path))
  96. {
  97. $file = file($path, FILE_IGNORE_NEW_LINES);
  98. array_unshift($file, '');
  99. // -----------------------------------------------------
  100. // Calculate the starting position of the file context.
  101. // -----------------------------------------------------
  102. $start = $line - $padding;
  103. $start = ($start < 0) ? 0 : $start;
  104. // -----------------------------------------------------
  105. // Calculate the context length.
  106. // -----------------------------------------------------
  107. $length = ($line - $start) + $padding + 1;
  108. $length = (($start + $length) > count($file) - 1) ? null : $length;
  109. return array_slice($file, $start, $length, true);
  110. }
  111. return array();
  112. }
  113. }