error.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. // Clean the output buffer so no previously rendered views or text is sent to the browser.
  32. if (ob_get_level() > 0)
  33. {
  34. ob_clean();
  35. }
  36. // Get the error severity in human readable format.
  37. $severity = (array_key_exists($e->getCode(), static::$levels)) ? static::$levels[$e->getCode()] : $e->getCode();
  38. // Get the file in which the error occured.
  39. // Views require special handling since view errors occur in eval'd code.
  40. if (strpos($e->getFile(), 'view.php') !== false and strpos($e->getFile(), "eval()'d code") !== false)
  41. {
  42. $file = APP_PATH.'views/'.View::$last.EXT;
  43. }
  44. else
  45. {
  46. $file = $e->getFile();
  47. }
  48. // Trim the period off the error message since we will be formatting it oursevles.
  49. $message = rtrim($e->getMessage(), '.');
  50. if (Config::get('error.log'))
  51. {
  52. Log::error($message.' in '.$e->getFile().' on line '.$e->getLine());
  53. }
  54. if (Config::get('error.detail'))
  55. {
  56. $view = View::make('exception')
  57. ->bind('severity', $severity)
  58. ->bind('message', $message)
  59. ->bind('file', $file)
  60. ->bind('line', $e->getLine())
  61. ->bind('trace', $e->getTraceAsString())
  62. Response::make($view, 500)->send();
  63. }
  64. else
  65. {
  66. Response::make(View::make('error/500'), 500)->send();
  67. }
  68. exit(1);
  69. }
  70. }