index.php 7.7 KB

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