index.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 1.3.1
  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. // Define various other framework paths.
  24. // --------------------------------------------------------------
  25. $constants = array(
  26. 'CACHE_PATH' => APP_PATH.'storage/cache/',
  27. 'CONFIG_PATH' => APP_PATH.'config/',
  28. 'DATABASE_PATH' => APP_PATH.'storage/db/',
  29. 'LANG_PATH' => APP_PATH.'lang/',
  30. 'LIBRARY_PATH' => APP_PATH.'libraries/',
  31. 'MODEL_PATH' => APP_PATH.'models/',
  32. 'PACKAGE_PATH' => APP_PATH.'packages/',
  33. 'PUBLIC_PATH' => realpath(__DIR__).'/',
  34. 'ROUTE_PATH' => APP_PATH.'routes/',
  35. 'SESSION_PATH' => APP_PATH.'storage/sessions/',
  36. 'STORAGE_PATH' => APP_PATH.'storage/',
  37. 'SYS_VIEW_PATH' => SYS_PATH.'views/',
  38. 'VIEW_PATH' => APP_PATH.'views/',
  39. );
  40. foreach ($constants as $key => $value)
  41. {
  42. define($key, $value);
  43. }
  44. unset($constants, $system);
  45. // --------------------------------------------------------------
  46. // Define the PHP file extension.
  47. // --------------------------------------------------------------
  48. define('EXT', '.php');
  49. // --------------------------------------------------------------
  50. // Load the classes used by the auto-loader.
  51. // --------------------------------------------------------------
  52. require SYS_PATH.'config'.EXT;
  53. require SYS_PATH.'arr'.EXT;
  54. // --------------------------------------------------------------
  55. // Register the auto-loader.
  56. // --------------------------------------------------------------
  57. spl_autoload_register(function($class)
  58. {
  59. $file = strtolower(str_replace('\\', '/', $class));
  60. if (array_key_exists($class, $aliases = System\Config::get('aliases')))
  61. {
  62. return class_alias($aliases[$class], $class);
  63. }
  64. foreach (array(BASE_PATH, MODEL_PATH, LIBRARY_PATH) as $directory)
  65. {
  66. if (file_exists($path = $directory.$file.EXT))
  67. {
  68. require $path;
  69. return;
  70. }
  71. }
  72. });
  73. // --------------------------------------------------------------
  74. // Set the error reporting and display levels.
  75. // --------------------------------------------------------------
  76. error_reporting(E_ALL | E_STRICT);
  77. ini_set('display_errors', 'Off');
  78. // --------------------------------------------------------------
  79. // Register the error handlers.
  80. // --------------------------------------------------------------
  81. set_exception_handler(function($e)
  82. {
  83. require_once SYS_PATH.'error'.EXT;
  84. System\Error::handle($e);
  85. });
  86. set_error_handler(function($number, $error, $file, $line)
  87. {
  88. require_once SYS_PATH.'error'.EXT;
  89. System\Error::handle(new ErrorException($error, $number, 0, $file, $line));
  90. });
  91. register_shutdown_function(function()
  92. {
  93. if ( ! is_null($error = error_get_last()))
  94. {
  95. require_once SYS_PATH.'error'.EXT;
  96. System\Error::handle(new ErrorException($error['message'], $error['type'], 0, $error['file'], $error['line']));
  97. }
  98. });
  99. // --------------------------------------------------------------
  100. // Set the default timezone.
  101. // --------------------------------------------------------------
  102. date_default_timezone_set(System\Config::get('application.timezone'));
  103. // --------------------------------------------------------------
  104. // Load the session.
  105. // --------------------------------------------------------------
  106. if (System\Config::get('session.driver') != '')
  107. {
  108. System\Session::load(System\Cookie::get('laravel_session'));
  109. }
  110. // --------------------------------------------------------------
  111. // Execute the global "before" filter.
  112. // --------------------------------------------------------------
  113. $response = System\Route\Filter::call('before', array(), true);
  114. // ----------------------------------------------------------
  115. // Execute the route function.
  116. // ----------------------------------------------------------
  117. if (is_null($response))
  118. {
  119. $route = System\Router::route(System\Request::method(), System\Request::uri());
  120. $response = (is_null($route)) ? System\Response::make(System\View::make('error/404'), 404) : $route->call();
  121. }
  122. else
  123. {
  124. $response = System\Response::prepare($response);
  125. }
  126. // ----------------------------------------------------------
  127. // Execute the global "after" filter.
  128. // ----------------------------------------------------------
  129. System\Route\Filter::call('after', array($response));
  130. // ----------------------------------------------------------
  131. // Stringify the response.
  132. // ----------------------------------------------------------
  133. $response->content = (string) $response->content;
  134. // --------------------------------------------------------------
  135. // Close the session.
  136. // --------------------------------------------------------------
  137. if (System\Config::get('session.driver') != '')
  138. {
  139. System\Session::close();
  140. }
  141. // --------------------------------------------------------------
  142. // Send the response to the browser.
  143. // --------------------------------------------------------------
  144. $response->send();