error.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. if (ob_get_level() > 0)
  32. {
  33. ob_clean();
  34. }
  35. $severity = (array_key_exists($e->getCode(), static::$levels)) ? static::$levels[$e->getCode()] : $e->getCode();
  36. $file = static::file($e);
  37. $message = rtrim($e->getMessage(), '.');
  38. if (Config::get('error.log'))
  39. {
  40. Log::error($message.' in '.$e->getFile().' on line '.$e->getLine());
  41. }
  42. static::show($e, $severity, $message, $file);
  43. exit(1);
  44. }
  45. /**
  46. * Get the path to the file in which an exception occured.
  47. *
  48. * @param Exception $e
  49. * @return string
  50. */
  51. private static function file($e)
  52. {
  53. if (strpos($e->getFile(), 'view.php') !== false and strpos($e->getFile(), "eval()'d code") !== false)
  54. {
  55. return APP_PATH.'views/'.View::$last.EXT;
  56. }
  57. return $e->getFile();
  58. }
  59. /**
  60. * Show the error view.
  61. *
  62. * @param Exception $e
  63. * @param string $severity
  64. * @param string $message
  65. * @param string $file
  66. * @return void
  67. */
  68. private static function show($e, $severity, $message, $file)
  69. {
  70. if (Config::get('error.detail'))
  71. {
  72. $view = View::make('exception')
  73. ->bind('severity', $severity)
  74. ->bind('message', $message)
  75. ->bind('file', $file)
  76. ->bind('line', $e->getLine())
  77. ->bind('trace', $e->getTraceAsString());
  78. Response::make($view, 500)->send();
  79. }
  80. else
  81. {
  82. Response::make(View::make('error/500'), 500)->send();
  83. }
  84. }
  85. }