index.php 5.1 KB

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