index.php 7.3 KB

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