index.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 1.4.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 directory containing the system directory.
  20. // --------------------------------------------------------------
  21. define('BASE_PATH', realpath(str_replace('system', '', $system)).'/');
  22. // --------------------------------------------------------------
  23. // The path to the public directory.
  24. // --------------------------------------------------------------
  25. define('PUBLIC_PATH', realpath(__DIR__).'/');
  26. // --------------------------------------------------------------
  27. // Define various other framework paths.
  28. // --------------------------------------------------------------
  29. $constants = array(
  30. 'CACHE_PATH' => APP_PATH.'storage/cache/',
  31. 'CONFIG_PATH' => APP_PATH.'config/',
  32. 'DATABASE_PATH' => APP_PATH.'storage/db/',
  33. 'LANG_PATH' => APP_PATH.'lang/',
  34. 'LIBRARY_PATH' => APP_PATH.'libraries/',
  35. 'MODEL_PATH' => APP_PATH.'models/',
  36. 'PACKAGE_PATH' => APP_PATH.'packages/',
  37. 'ROUTE_PATH' => APP_PATH.'routes/',
  38. 'SCRIPT_PATH' => PUBLIC_PATH.'js/',
  39. 'SESSION_PATH' => APP_PATH.'storage/sessions/',
  40. 'STORAGE_PATH' => APP_PATH.'storage/',
  41. 'STYLE_PATH' => PUBLIC_PATH.'css/',
  42. 'SYS_VIEW_PATH' => SYS_PATH.'views/',
  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. // Execute the global "before" filter.
  117. // --------------------------------------------------------------
  118. $response = System\Route\Filter::call('before', array(), true);
  119. // ----------------------------------------------------------
  120. // Execute the route function.
  121. // ----------------------------------------------------------
  122. if (is_null($response))
  123. {
  124. $route = System\Router::make(System\Request::method(), System\Request::uri())->route();
  125. $response = (is_null($route)) ? System\Response::make(System\View::make('error/404'), 404) : $route->call();
  126. }
  127. else
  128. {
  129. $response = System\Response::prepare($response);
  130. }
  131. // ----------------------------------------------------------
  132. // Execute the global "after" filter.
  133. // ----------------------------------------------------------
  134. System\Route\Filter::call('after', array($response));
  135. // ----------------------------------------------------------
  136. // Stringify the response.
  137. // ----------------------------------------------------------
  138. $response->content = (string) $response->content;
  139. // --------------------------------------------------------------
  140. // Close the session.
  141. // --------------------------------------------------------------
  142. if (System\Config::get('session.driver') != '')
  143. {
  144. System\Session::close();
  145. }
  146. // --------------------------------------------------------------
  147. // Send the response to the browser.
  148. // --------------------------------------------------------------
  149. $response->send();