laravel.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <?php namespace Laravel;
  2. /**
  3. * Bootstrap the core framework components like the IoC container,
  4. * configuration class, and the class auto-loader. Once this file
  5. * has run, the framework is essentially ready for use.
  6. */
  7. require 'bootstrap/core.php';
  8. /**
  9. * Register the default timezone for the application. This will be
  10. * the default timezone used by all date / timezone functions in
  11. * the entire application.
  12. */
  13. date_default_timezone_set(Config::$items['application']['timezone']);
  14. /**
  15. * Create the exception handler function. All of the error handlers
  16. * registered by the framework call this closure to avoid duplicate
  17. * code. This Closure will determine if the logging Closure should
  18. * be called, and will pass the exception to the developer defined
  19. * handler in the configuration file.
  20. */
  21. $handler = function($exception)
  22. {
  23. $config = Config::get('error');
  24. if ($config['log'])
  25. {
  26. call_user_func($config['logger'], $exception, $config);
  27. }
  28. call_user_func($config['handler'], $exception, $config);
  29. if ( ! $config['detail'])
  30. {
  31. exit(1);
  32. }
  33. };
  34. /**
  35. * Register the PHP exception handler. The framework throws exceptions
  36. * on every error that cannot be handled. All of those exceptions will
  37. * be sent through this closure for processing.
  38. */
  39. set_exception_handler(function($exception) use ($handler)
  40. {
  41. $handler($exception);
  42. });
  43. /**
  44. * Register the PHP error handler. All PHP errors will fall into this
  45. * handler, which will convert the error into an ErrorException object
  46. * and pass the exception into the common exception handler.
  47. */
  48. set_error_handler(function($number, $error, $file, $line) use ($handler)
  49. {
  50. $handler(new \ErrorException($error, $number, 0, $file, $line));
  51. });
  52. /**
  53. * Register the PHP shutdown handler. This function will be called
  54. * at the end of the PHP script or on a fatal PHP error. If an error
  55. * has occured, we will convert it to an ErrorException and pass it
  56. * to the common exception handler for the framework.
  57. */
  58. register_shutdown_function(function() use ($handler)
  59. {
  60. if ( ! is_null($error = error_get_last()))
  61. {
  62. extract($error, EXTR_SKIP);
  63. $handler(new \ErrorException($message, $type, 0, $file, $line));
  64. }
  65. });
  66. /**
  67. * Setting the PHP error reporting level to -1 essentially forces
  68. * PHP to report every error, and is guranteed to show every error
  69. * on future versions of PHP.
  70. */
  71. error_reporting(-1);
  72. /**
  73. * If error detail is turned off, we will turn off all PHP error
  74. * reporting and display since the framework will be displaying a
  75. * generic message and we don't want any sensitive details about
  76. * the exception leaking into the views.
  77. */
  78. if ( ! Config::$items['error']['detail'])
  79. {
  80. //ini_set('display_errors', 'Off');
  81. }
  82. /**
  83. * Load the session and session manager instance. The session
  84. * payload will be registered in the IoC container as an instance
  85. * so it can be retrieved easily throughout the application.
  86. */
  87. if (Config::$items['session']['driver'] !== '')
  88. {
  89. $driver = IoC::core('session.'.Config::$items['session']['driver']);
  90. $id = Cookie::get(Config::$items['session']['cookie']);
  91. IoC::container()->instance('laravel.session', new Session\Manager($driver, $id));
  92. }
  93. /**
  94. * Manually load some core classes that are used on every request so
  95. * we can avoid using the loader for these classes. This saves us
  96. * some overhead on each request.
  97. */
  98. require SYS_PATH.'input'.EXT;
  99. require SYS_PATH.'request'.EXT;
  100. require SYS_PATH.'response'.EXT;
  101. require SYS_PATH.'routing/route'.EXT;
  102. require SYS_PATH.'routing/router'.EXT;
  103. require SYS_PATH.'routing/loader'.EXT;
  104. require SYS_PATH.'routing/filter'.EXT;
  105. /**
  106. * Gather the input to the application based on the current request.
  107. * The input will be gathered based on the current request method and
  108. * will be set on the Input manager.
  109. */
  110. $input = array();
  111. switch (Request::method())
  112. {
  113. case 'GET':
  114. $input = $_GET;
  115. break;
  116. case 'POST':
  117. $input = $_POST;
  118. break;
  119. case 'PUT':
  120. case 'DELETE':
  121. if (Request::spoofed())
  122. {
  123. $input = $_POST;
  124. }
  125. else
  126. {
  127. parse_str(file_get_contents('php://input'), $input);
  128. }
  129. }
  130. /**
  131. * The spoofed request method is removed from the input so it is not
  132. * unexpectedly included in Input::all() or Input::get(). Leaving it
  133. * in the input array could cause unexpected results if the developer
  134. * fills an Eloquent model with the input.
  135. */
  136. unset($input[Request::spoofer]);
  137. Input::$input = $input;
  138. /**
  139. * Route the request to the proper route in the application. If a
  140. * route is found, the route will be called with the current request
  141. * instance. If no route is found, the 404 response will be returned
  142. * to the browser.
  143. */
  144. Routing\Filter::register(require APP_PATH.'filters'.EXT);
  145. list($uri, $method) = array(Request::uri(), Request::method());
  146. Request::$route = IoC::core('routing.router')->route($method, $uri);
  147. if ( ! is_null(Request::$route))
  148. {
  149. $response = Request::$route->call();
  150. }
  151. else
  152. {
  153. $response = Response::error('404');
  154. }
  155. /**
  156. * Stringify the response. We need to force the response to be
  157. * stringed before closing the session, since the developer may
  158. * be using the session within their views, so we cannot age
  159. * the session data until the view is rendered.
  160. */
  161. $response->content = $response->render();
  162. /**
  163. * Close the session and write the active payload to persistent
  164. * storage. The session cookie will also be written and if the
  165. * driver is a sweeper, session garbage collection might be
  166. * performed depending on the "sweepage" probability.
  167. */
  168. if (Config::$items['session']['driver'] !== '')
  169. {
  170. IoC::core('session')->save($driver);
  171. }
  172. $response->send();