index.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 1.4.1
  7. * @author Taylor Otwell
  8. * @link http://laravel.com
  9. */
  10. // --------------------------------------------------------------
  11. // Get the framework start time.
  12. // --------------------------------------------------------------
  13. $start = microtime(true);
  14. // --------------------------------------------------------------
  15. // The path to the application directory.
  16. // --------------------------------------------------------------
  17. define('APP_PATH', realpath('../application').'/');
  18. // --------------------------------------------------------------
  19. // The path to the system directory.
  20. // --------------------------------------------------------------
  21. define('SYS_PATH', realpath($system = '../system').'/');
  22. // --------------------------------------------------------------
  23. // The path to the directory containing the system directory.
  24. // --------------------------------------------------------------
  25. define('BASE_PATH', realpath(str_replace('system', '', $system)).'/');
  26. // --------------------------------------------------------------
  27. // The path to the public directory.
  28. // --------------------------------------------------------------
  29. define('PUBLIC_PATH', realpath(__DIR__).'/');
  30. // --------------------------------------------------------------
  31. // Define various other framework paths.
  32. // --------------------------------------------------------------
  33. $constants = array(
  34. 'CACHE_PATH' => APP_PATH.'storage/cache/',
  35. 'CONFIG_PATH' => APP_PATH.'config/',
  36. 'DATABASE_PATH' => APP_PATH.'storage/db/',
  37. 'LANG_PATH' => APP_PATH.'lang/',
  38. 'LIBRARY_PATH' => APP_PATH.'libraries/',
  39. 'MODEL_PATH' => APP_PATH.'models/',
  40. 'PACKAGE_PATH' => APP_PATH.'packages/',
  41. 'ROUTE_PATH' => APP_PATH.'routes/',
  42. 'SCRIPT_PATH' => PUBLIC_PATH.'js/',
  43. 'SESSION_PATH' => APP_PATH.'storage/sessions/',
  44. 'STORAGE_PATH' => APP_PATH.'storage/',
  45. 'STYLE_PATH' => PUBLIC_PATH.'css/',
  46. 'VIEW_PATH' => APP_PATH.'views/',
  47. );
  48. foreach ($constants as $key => $value)
  49. {
  50. define($key, $value);
  51. }
  52. unset($constants, $system);
  53. // --------------------------------------------------------------
  54. // Define the PHP file extension.
  55. // --------------------------------------------------------------
  56. define('EXT', '.php');
  57. // --------------------------------------------------------------
  58. // Load the classes used by the auto-loader.
  59. // --------------------------------------------------------------
  60. require SYS_PATH.'loader'.EXT;
  61. require SYS_PATH.'config'.EXT;
  62. require SYS_PATH.'arr'.EXT;
  63. // --------------------------------------------------------------
  64. // Register the auto-loader.
  65. // --------------------------------------------------------------
  66. System\Loader::bootstrap();
  67. spl_autoload_register(array('System\\Loader', 'load'));
  68. // --------------------------------------------------------------
  69. // Register the framework starting time with the Benchmarker.
  70. // --------------------------------------------------------------
  71. System\Benchmark::$marks['laravel'] = $start;
  72. // --------------------------------------------------------------
  73. // Set the error reporting and display levels.
  74. // --------------------------------------------------------------
  75. error_reporting(E_ALL | E_STRICT);
  76. ini_set('display_errors', 'Off');
  77. // --------------------------------------------------------------
  78. // Register the error handlers.
  79. // --------------------------------------------------------------
  80. set_exception_handler(function($e)
  81. {
  82. require_once SYS_PATH.'error'.EXT;
  83. System\Error::handle($e);
  84. });
  85. set_error_handler(function($number, $error, $file, $line)
  86. {
  87. require_once SYS_PATH.'error'.EXT;
  88. System\Error::handle(new ErrorException($error, $number, 0, $file, $line));
  89. });
  90. register_shutdown_function(function()
  91. {
  92. if ( ! is_null($error = error_get_last()))
  93. {
  94. require_once SYS_PATH.'error'.EXT;
  95. System\Error::handle(new ErrorException($error['message'], $error['type'], 0, $error['file'], $error['line']));
  96. }
  97. });
  98. // --------------------------------------------------------------
  99. // Set the default timezone.
  100. // --------------------------------------------------------------
  101. date_default_timezone_set(System\Config::get('application.timezone'));
  102. // --------------------------------------------------------------
  103. // Load the session.
  104. // --------------------------------------------------------------
  105. if (System\Config::get('session.driver') != '')
  106. {
  107. System\Session::load(System\Cookie::get('laravel_session'));
  108. }
  109. // --------------------------------------------------------------
  110. // Load all of the core routing classes.
  111. // --------------------------------------------------------------
  112. require SYS_PATH.'request'.EXT;
  113. require SYS_PATH.'response'.EXT;
  114. require SYS_PATH.'routing/route'.EXT;
  115. require SYS_PATH.'routing/router'.EXT;
  116. require SYS_PATH.'routing/loader'.EXT;
  117. require SYS_PATH.'routing/filter'.EXT;
  118. // --------------------------------------------------------------
  119. // Load the packages that are in the auto-loaded packages array.
  120. // --------------------------------------------------------------
  121. require SYS_PATH.'package'.EXT;
  122. System\Package::load(System\Config::get('package.autoload'));
  123. // --------------------------------------------------------------
  124. // Register the route filters.
  125. // --------------------------------------------------------------
  126. System\Routing\Filter::register(require ROUTE_PATH.'filters'.EXT);
  127. // --------------------------------------------------------------
  128. // Execute the global "before" filter.
  129. // --------------------------------------------------------------
  130. $response = System\Routing\Filter::call('before', array(), true);
  131. // ----------------------------------------------------------
  132. // Execute the route function.
  133. // ----------------------------------------------------------
  134. if (is_null($response))
  135. {
  136. $route = System\Routing\Router::make(System\Request::method(), System\Request::uri(), new System\Routing\Loader(ROUTE_PATH))->route();
  137. $response = (is_null($route)) ? System\Response::error('404') : $route->call();
  138. }
  139. else
  140. {
  141. $response = System\Response::prepare($response);
  142. }
  143. // ----------------------------------------------------------
  144. // Execute the global "after" filter.
  145. // ----------------------------------------------------------
  146. System\Routing\Filter::call('after', array($response));
  147. // ----------------------------------------------------------
  148. // Stringify the response.
  149. // ----------------------------------------------------------
  150. $response->content = (string) $response->content;
  151. // --------------------------------------------------------------
  152. // Close the session.
  153. // --------------------------------------------------------------
  154. if (System\Config::get('session.driver') != '')
  155. {
  156. System\Session::close();
  157. }
  158. // --------------------------------------------------------------
  159. // Send the response to the browser.
  160. // --------------------------------------------------------------
  161. $response->send();