index.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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.'config'.EXT;
  61. require SYS_PATH.'arr'.EXT;
  62. // --------------------------------------------------------------
  63. // Register the auto-loader.
  64. // --------------------------------------------------------------
  65. spl_autoload_register(function($class)
  66. {
  67. $file = strtolower(str_replace('\\', '/', $class));
  68. if (array_key_exists($class, $aliases = System\Config::get('aliases')))
  69. {
  70. return class_alias($aliases[$class], $class);
  71. }
  72. foreach (array(BASE_PATH, MODEL_PATH, LIBRARY_PATH) as $directory)
  73. {
  74. if (file_exists($path = $directory.$file.EXT))
  75. {
  76. require $path;
  77. return;
  78. }
  79. }
  80. });
  81. // --------------------------------------------------------------
  82. // Register the framework starting time with the Benchmarker.
  83. // --------------------------------------------------------------
  84. System\Benchmark::$marks['laravel'] = $start;
  85. // --------------------------------------------------------------
  86. // Set the error reporting and display levels.
  87. // --------------------------------------------------------------
  88. error_reporting(E_ALL | E_STRICT);
  89. ini_set('display_errors', 'Off');
  90. // --------------------------------------------------------------
  91. // Register the error handlers.
  92. // --------------------------------------------------------------
  93. set_exception_handler(function($e)
  94. {
  95. require_once SYS_PATH.'error'.EXT;
  96. System\Error::handle($e);
  97. });
  98. set_error_handler(function($number, $error, $file, $line)
  99. {
  100. require_once SYS_PATH.'error'.EXT;
  101. System\Error::handle(new ErrorException($error, $number, 0, $file, $line));
  102. });
  103. register_shutdown_function(function()
  104. {
  105. if ( ! is_null($error = error_get_last()))
  106. {
  107. require_once SYS_PATH.'error'.EXT;
  108. System\Error::handle(new ErrorException($error['message'], $error['type'], 0, $error['file'], $error['line']));
  109. }
  110. });
  111. // --------------------------------------------------------------
  112. // Set the default timezone.
  113. // --------------------------------------------------------------
  114. date_default_timezone_set(System\Config::get('application.timezone'));
  115. // --------------------------------------------------------------
  116. // Load the session.
  117. // --------------------------------------------------------------
  118. if (System\Config::get('session.driver') != '')
  119. {
  120. System\Session::load(System\Cookie::get('laravel_session'));
  121. }
  122. // --------------------------------------------------------------
  123. // Load all of the core routing classes.
  124. // --------------------------------------------------------------
  125. require SYS_PATH.'request'.EXT;
  126. require SYS_PATH.'response'.EXT;
  127. require SYS_PATH.'routing/route'.EXT;
  128. require SYS_PATH.'routing/router'.EXT;
  129. require SYS_PATH.'routing/loader'.EXT;
  130. require SYS_PATH.'routing/filter'.EXT;
  131. // --------------------------------------------------------------
  132. // Register the route filters.
  133. // --------------------------------------------------------------
  134. System\Routing\Filter::register(require ROUTE_PATH.'filters'.EXT);
  135. // --------------------------------------------------------------
  136. // Execute the global "before" filter.
  137. // --------------------------------------------------------------
  138. $response = System\Routing\Filter::call('before', array(), true);
  139. // ----------------------------------------------------------
  140. // Execute the route function.
  141. // ----------------------------------------------------------
  142. if (is_null($response))
  143. {
  144. $route = System\Routing\Router::make(System\Request::method(), System\Request::uri(), new System\Routing\Loader(ROUTE_PATH))->route();
  145. $response = (is_null($route)) ? System\Response::error('404') : $route->call();
  146. }
  147. else
  148. {
  149. $response = System\Response::prepare($response);
  150. }
  151. // ----------------------------------------------------------
  152. // Execute the global "after" filter.
  153. // ----------------------------------------------------------
  154. System\Routing\Filter::call('after', array($response));
  155. // ----------------------------------------------------------
  156. // Stringify the response.
  157. // ----------------------------------------------------------
  158. $response->content = (string) $response->content;
  159. // --------------------------------------------------------------
  160. // Close the session.
  161. // --------------------------------------------------------------
  162. if (System\Config::get('session.driver') != '')
  163. {
  164. System\Session::close();
  165. }
  166. // --------------------------------------------------------------
  167. // Send the response to the browser.
  168. // --------------------------------------------------------------
  169. $response->send();