index.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 1.3.0
  7. * @author Taylor Otwell
  8. * @link http://laravel.com
  9. */
  10. // --------------------------------------------------------------
  11. // Define the core framework paths.
  12. // --------------------------------------------------------------
  13. define('APP_PATH', realpath('../application').'/');
  14. define('SYS_PATH', realpath('../system').'/');
  15. define('PUBLIC_PATH', realpath(__DIR__.'/'));
  16. define('BASE_PATH', realpath('../').'/');
  17. // --------------------------------------------------------------
  18. // Define various other framework paths.
  19. // --------------------------------------------------------------
  20. define('CACHE_PATH', APP_PATH.'storage/cache/');
  21. define('CONFIG_PATH', APP_PATH.'config/');
  22. define('DATABASE_PATH', APP_PATH.'storage/db/');
  23. define('LIBRARY_PATH', APP_PATH.'libraries/');
  24. define('MODEL_PATH', APP_PATH.'models/');
  25. define('PACKAGE_PATH', APP_PATH.'packages/');
  26. define('ROUTE_PATH', APP_PATH.'routes/');
  27. define('SESSION_PATH', APP_PATH.'storage/sessions/');
  28. define('STORAGE_PATH', APP_PATH.'storage/');
  29. define('SYS_VIEW_PATH', SYS_PATH.'views/');
  30. define('VIEW_PATH', APP_PATH.'views/');
  31. // --------------------------------------------------------------
  32. // Define the PHP file extension.
  33. // --------------------------------------------------------------
  34. define('EXT', '.php');
  35. // --------------------------------------------------------------
  36. // Load the classes used by the auto-loader.
  37. // --------------------------------------------------------------
  38. require SYS_PATH.'config'.EXT;
  39. require SYS_PATH.'arr'.EXT;
  40. // --------------------------------------------------------------
  41. // Register the auto-loader.
  42. // --------------------------------------------------------------
  43. spl_autoload_register(function($class)
  44. {
  45. $file = strtolower(str_replace('\\', '/', $class));
  46. if (array_key_exists($class, $aliases = System\Config::get('aliases')))
  47. {
  48. return class_alias($aliases[$class], $class);
  49. }
  50. foreach (array(BASE_PATH, MODEL_PATH, LIBRARY_PATH) as $directory)
  51. {
  52. if (file_exists($path = $directory.$file.EXT))
  53. {
  54. require $path;
  55. return;
  56. }
  57. }
  58. });
  59. // --------------------------------------------------------------
  60. // Set the error reporting and display levels.
  61. // --------------------------------------------------------------
  62. error_reporting(E_ALL | E_STRICT);
  63. ini_set('display_errors', 'Off');
  64. // --------------------------------------------------------------
  65. // Register the error handlers.
  66. // --------------------------------------------------------------
  67. set_exception_handler(function($e)
  68. {
  69. require_once SYS_PATH.'error'.EXT;
  70. System\Error::handle($e);
  71. });
  72. set_error_handler(function($number, $error, $file, $line)
  73. {
  74. require_once SYS_PATH.'error'.EXT;
  75. System\Error::handle(new ErrorException($error, $number, 0, $file, $line));
  76. });
  77. register_shutdown_function(function()
  78. {
  79. if ( ! is_null($error = error_get_last()))
  80. {
  81. require_once SYS_PATH.'error'.EXT;
  82. System\Error::handle(new ErrorException($error['message'], $error['type'], 0, $error['file'], $error['line']));
  83. }
  84. });
  85. // --------------------------------------------------------------
  86. // Set the default timezone.
  87. // --------------------------------------------------------------
  88. date_default_timezone_set(System\Config::get('application.timezone'));
  89. // --------------------------------------------------------------
  90. // Load the session.
  91. // --------------------------------------------------------------
  92. if (System\Config::get('session.driver') != '')
  93. {
  94. System\Session::load(System\Cookie::get('laravel_session'));
  95. }
  96. // --------------------------------------------------------------
  97. // Execute the global "before" filter.
  98. // --------------------------------------------------------------
  99. $response = System\Route\Filter::call('before', array(), true);
  100. // ----------------------------------------------------------
  101. // Execute the route function.
  102. // ----------------------------------------------------------
  103. if (is_null($response))
  104. {
  105. $route = System\Router::route(System\Request::method(), System\Request::uri());
  106. $response = (is_null($route)) ? System\Response::make(System\View::make('error/404'), 404) : $route->call();
  107. }
  108. else
  109. {
  110. $response = System\Response::prepare($response);
  111. }
  112. // ----------------------------------------------------------
  113. // Execute the global "after" filter.
  114. // ----------------------------------------------------------
  115. System\Route\Filter::call('after', array($response));
  116. // ----------------------------------------------------------
  117. // Stringify the response.
  118. // ----------------------------------------------------------
  119. $response->content = (string) $response->content;
  120. // --------------------------------------------------------------
  121. // Close the session.
  122. // --------------------------------------------------------------
  123. if (System\Config::get('session.driver') != '')
  124. {
  125. System\Session::close();
  126. }
  127. // --------------------------------------------------------------
  128. // Send the response to the browser.
  129. // --------------------------------------------------------------
  130. $response->send();