index.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. 'VIEW_PATH' => APP_PATH.'views/',
  43. );
  44. foreach ($constants as $key => $value)
  45. {
  46. define($key, $value);
  47. }
  48. unset($constants, $system);
  49. // --------------------------------------------------------------
  50. // Define the PHP file extension.
  51. // --------------------------------------------------------------
  52. define('EXT', '.php');
  53. // --------------------------------------------------------------
  54. // Load the classes used by the auto-loader.
  55. // --------------------------------------------------------------
  56. require SYS_PATH.'config'.EXT;
  57. require SYS_PATH.'arr'.EXT;
  58. // --------------------------------------------------------------
  59. // Register the auto-loader.
  60. // --------------------------------------------------------------
  61. spl_autoload_register(function($class)
  62. {
  63. $file = strtolower(str_replace('\\', '/', $class));
  64. if (array_key_exists($class, $aliases = System\Config::get('aliases')))
  65. {
  66. return class_alias($aliases[$class], $class);
  67. }
  68. foreach (array(BASE_PATH, MODEL_PATH, LIBRARY_PATH) as $directory)
  69. {
  70. if (file_exists($path = $directory.$file.EXT))
  71. {
  72. require $path;
  73. return;
  74. }
  75. }
  76. });
  77. // --------------------------------------------------------------
  78. // Set the error reporting and display levels.
  79. // --------------------------------------------------------------
  80. error_reporting(E_ALL | E_STRICT);
  81. ini_set('display_errors', 'Off');
  82. // --------------------------------------------------------------
  83. // Register the error handlers.
  84. // --------------------------------------------------------------
  85. set_exception_handler(function($e)
  86. {
  87. require_once SYS_PATH.'error'.EXT;
  88. System\Error::handle($e);
  89. });
  90. set_error_handler(function($number, $error, $file, $line)
  91. {
  92. require_once SYS_PATH.'error'.EXT;
  93. System\Error::handle(new ErrorException($error, $number, 0, $file, $line));
  94. });
  95. register_shutdown_function(function()
  96. {
  97. if ( ! is_null($error = error_get_last()))
  98. {
  99. require_once SYS_PATH.'error'.EXT;
  100. System\Error::handle(new ErrorException($error['message'], $error['type'], 0, $error['file'], $error['line']));
  101. }
  102. });
  103. // --------------------------------------------------------------
  104. // Set the default timezone.
  105. // --------------------------------------------------------------
  106. date_default_timezone_set(System\Config::get('application.timezone'));
  107. // --------------------------------------------------------------
  108. // Load the session.
  109. // --------------------------------------------------------------
  110. if (System\Config::get('session.driver') != '')
  111. {
  112. System\Session::load(System\Cookie::get('laravel_session'));
  113. }
  114. // --------------------------------------------------------------
  115. // Execute the global "before" filter.
  116. // --------------------------------------------------------------
  117. $response = System\Route\Filter::call('before', array(), true);
  118. // ----------------------------------------------------------
  119. // Execute the route function.
  120. // ----------------------------------------------------------
  121. if (is_null($response))
  122. {
  123. $route = System\Router::make(System\Request::method(), System\Request::uri())->route();
  124. $response = (is_null($route)) ? System\Response::make(System\View::make('error/404'), 404) : $route->call();
  125. }
  126. else
  127. {
  128. $response = System\Response::prepare($response);
  129. }
  130. // ----------------------------------------------------------
  131. // Execute the global "after" filter.
  132. // ----------------------------------------------------------
  133. System\Route\Filter::call('after', array($response));
  134. // ----------------------------------------------------------
  135. // Stringify the response.
  136. // ----------------------------------------------------------
  137. $response->content = (string) $response->content;
  138. // --------------------------------------------------------------
  139. // Close the session.
  140. // --------------------------------------------------------------
  141. if (System\Config::get('session.driver') != '')
  142. {
  143. System\Session::close();
  144. }
  145. // --------------------------------------------------------------
  146. // Send the response to the browser.
  147. // --------------------------------------------------------------
  148. $response->send();