index.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 1.0.0 Beta 1
  7. * @author Taylor Otwell
  8. * @license MIT License
  9. * @link http://laravel.com
  10. */
  11. // --------------------------------------------------------------
  12. // Set the framework starting time.
  13. // --------------------------------------------------------------
  14. define('LARAVEL_START', microtime(true));
  15. // --------------------------------------------------------------
  16. // Define the framework paths.
  17. // --------------------------------------------------------------
  18. define('APP_PATH', realpath('../application').'/');
  19. define('SYS_PATH', realpath('../system').'/');
  20. define('BASE_PATH', realpath('../').'/');
  21. // --------------------------------------------------------------
  22. // Define the PHP file extension.
  23. // --------------------------------------------------------------
  24. define('EXT', '.php');
  25. // --------------------------------------------------------------
  26. // Load the configuration and string classes.
  27. // --------------------------------------------------------------
  28. require SYS_PATH.'config'.EXT;
  29. require SYS_PATH.'str'.EXT;
  30. // --------------------------------------------------------------
  31. // Register the auto-loader.
  32. // --------------------------------------------------------------
  33. spl_autoload_register(require SYS_PATH.'loader'.EXT);
  34. // --------------------------------------------------------------
  35. // Set the Laravel starting time in the Benchmark class.
  36. // --------------------------------------------------------------
  37. System\Benchmark::$marks['laravel'] = LARAVEL_START;
  38. // --------------------------------------------------------------
  39. // Set the error reporting level.
  40. // --------------------------------------------------------------
  41. error_reporting((System\Config::get('error.detail')) ? E_ALL | E_STRICT : 0);
  42. // --------------------------------------------------------------
  43. // Register the error handlers.
  44. // --------------------------------------------------------------
  45. set_exception_handler(function($e)
  46. {
  47. System\Error::handle($e);
  48. });
  49. set_error_handler(function($number, $error, $file, $line)
  50. {
  51. System\Error::handle(new ErrorException($error, 0, $number, $file, $line));
  52. });
  53. register_shutdown_function(function()
  54. {
  55. if ( ! is_null($error = error_get_last()))
  56. {
  57. System\Error::handle(new ErrorException($error['message'], 0, $error['type'], $error['file'], $error['line']));
  58. }
  59. });
  60. // --------------------------------------------------------------
  61. // Set the default timezone.
  62. // --------------------------------------------------------------
  63. date_default_timezone_set(System\Config::get('application.timezone'));
  64. // --------------------------------------------------------------
  65. // Load the session.
  66. // --------------------------------------------------------------
  67. if (System\Config::get('session.driver') != '')
  68. {
  69. System\Session::load();
  70. }
  71. // --------------------------------------------------------------
  72. // Execute the global "before" filter.
  73. // --------------------------------------------------------------
  74. $response = System\Filter::call('before');
  75. // --------------------------------------------------------------
  76. // Only execute the route function if the "before" filter did
  77. // not override by sending a response.
  78. // --------------------------------------------------------------
  79. if (is_null($response))
  80. {
  81. // ----------------------------------------------------------
  82. // Route the request to the proper route.
  83. // ----------------------------------------------------------
  84. $route = System\Router::route(Request::method(), Request::uri());
  85. // ----------------------------------------------------------
  86. // Execute the route function.
  87. // ----------------------------------------------------------
  88. if ( ! is_null($route))
  89. {
  90. $response = $route->call();
  91. }
  92. else
  93. {
  94. $response = System\Response::view('error/404', 404);
  95. }
  96. }
  97. else
  98. {
  99. $response = ( ! $response instanceof System\Response) ? new System\Response($response) : $response;
  100. }
  101. // ----------------------------------------------------------
  102. // Execute the global "after" filter.
  103. // ----------------------------------------------------------
  104. System\Filter::call('after', array($response));
  105. // --------------------------------------------------------------
  106. // Close the session.
  107. // --------------------------------------------------------------
  108. if (System\Config::get('session.driver') != '')
  109. {
  110. System\Session::close();
  111. }
  112. // --------------------------------------------------------------
  113. // Send the response to the browser.
  114. // --------------------------------------------------------------
  115. $response->send();