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