laravel.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php namespace Laravel;
  2. /**
  3. * Bootstrap the core framework components like the IoC container and
  4. * the configuration class, and the class auto-loader. Once this file
  5. * has run, the framework is essentially ready for use.
  6. */
  7. require 'core.php';
  8. /**
  9. * Register the PHP exception handler. The framework throws exceptions
  10. * on every error that cannot be handled. All of those exceptions will
  11. * be sent through this closure for processing.
  12. */
  13. set_exception_handler(function($e)
  14. {
  15. Error::exception($e);
  16. });
  17. /**
  18. * Register the PHP error handler. All PHP errors will fall into this
  19. * handler which will convert the error into an ErrorException object
  20. * and pass the exception into the exception handler.
  21. */
  22. set_error_handler(function($code, $error, $file, $line)
  23. {
  24. Error::native($code, $error, $file, $line);
  25. });
  26. /**
  27. * Register the shutdown handler. This function will be called at the
  28. * end of the PHP script or on a fatal PHP error. If a PHP error has
  29. * occured, we will convert it to an ErrorException and pass it
  30. * to the common exception handler for the framework.
  31. */
  32. register_shutdown_function(function()
  33. {
  34. Error::shutdown();
  35. });
  36. /**
  37. * Setting the PHP error reporting level to -1 essentially forces
  38. * PHP to report every error, and it is guranteed to show every
  39. * error on future versions of PHP.
  40. *
  41. * If error detail is turned off, we will turn off all PHP error
  42. * reporting and display since the framework will be displaying
  43. * a generic message and we do not want any sensitive details
  44. * about the exception leaking into the views.
  45. */
  46. error_reporting(-1);
  47. ini_set('display_errors', Config::get('error.display'));
  48. /**
  49. * Determine if we need to set the application key to a random
  50. * string for the developer. This provides the developer with
  51. * a zero configuration install process.
  52. */
  53. if (Config::get('application.key') == '')
  54. {
  55. ob_start() and with(new CLI\Tasks\Key)->generate();
  56. ob_end_clean();
  57. }
  58. /**
  59. * Even though "Magic Quotes" are deprecated in PHP 5.3, they may
  60. * still be enabled on the server. To account for this, we will
  61. * strip slashes on all input arrays if magic quotes are turned
  62. * on for the server environment.
  63. */
  64. if (magic_quotes())
  65. {
  66. $magics = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
  67. foreach ($magics as &$magic)
  68. {
  69. $magic = array_strip_slashes($magic);
  70. }
  71. }
  72. /**
  73. * Load the session using the session manager. The payload will
  74. * be registered in the IoC container as an instance so it can
  75. * be easily access throughout the framework.
  76. */
  77. if (Config::get('session.driver') !== '')
  78. {
  79. Session::start(Config::get('session.driver'));
  80. Session::load(Cookie::get(Config::get('session.cookie')));
  81. IoC::instance('laravel.session', Session::$instance);
  82. }
  83. /**
  84. * Gather the input to the application based on the global input
  85. * variables for the current request. The input will be gathered
  86. * based on the current request method and will be set on the
  87. * Input manager class' static $input property.
  88. */
  89. $input = array();
  90. switch (Request::method())
  91. {
  92. case 'GET':
  93. $input = $_GET;
  94. break;
  95. case 'POST':
  96. $input = $_POST;
  97. break;
  98. case 'PUT':
  99. case 'DELETE':
  100. if (Request::spoofed())
  101. {
  102. $input = $_POST;
  103. }
  104. else
  105. {
  106. parse_str(file_get_contents('php://input'), $input);
  107. if (magic_quotes()) $input = array_strip_slashes($input);
  108. }
  109. }
  110. /**
  111. * The spoofed request method is removed from the input so it is not
  112. * unexpectedly included in Input::all() or Input::get(). Leaving it
  113. * in the input array could cause unexpected results if an Eloquent
  114. * model is filled with the input.
  115. */
  116. unset($input[Request::spoofer]);
  117. Input::$input = $input;
  118. /**
  119. * Load the "application" bundle. Though the application folder is
  120. * not typically considered a bundle, it is started like one and
  121. * essentially serves as the "default" bundle.
  122. */
  123. Bundle::start(DEFAULT_BUNDLE);
  124. /**
  125. * Auto-start any bundles configured to start on every request.
  126. * This is especially useful for debug bundles or bundles that
  127. * are used throughout the application.
  128. */
  129. foreach (Bundle::$bundles as $bundle => $config)
  130. {
  131. if ($config['auto']) Bundle::start($bundle);
  132. }
  133. /**
  134. * Register the "catch-all" route that handles 404 responses for
  135. * routes that can not be matched to any other route within the
  136. * application. We'll just raise the 404 event.
  137. */
  138. Routing\Router::register('*', '(:all)', function()
  139. {
  140. return Event::first('404');
  141. });
  142. /**
  143. * If the requset URI has too many segments, we will bomb out of
  144. * the request. This is too avoid potential DDoS attacks against
  145. * the framework by overloading the controller lookup method
  146. * with thousands of segments.
  147. */
  148. $uri = URI::current();
  149. if (count(URI::$segments) > 15)
  150. {
  151. throw new \Exception("Invalid request. Too many URI segments.");
  152. }
  153. /**
  154. * Route the request to the proper route in the application. If a
  155. * route is found, the route will be called via the request class
  156. * static property. If no route is found, the 404 response will
  157. * be returned to the browser.
  158. */
  159. Request::$route = Routing\Router::route(Request::method(), $uri);
  160. $response = Request::$route->call();
  161. /**
  162. * Close the session and write the active payload to persistent
  163. * storage. The session cookie will also be written and if the
  164. * driver is a sweeper, session garbage collection might be
  165. * performed depending on the "sweepage" probability.
  166. */
  167. if (Config::get('session.driver') !== '')
  168. {
  169. Session::save();
  170. }
  171. /**
  172. * Send all of the cookies to the browser. The cookies are
  173. * stored in a "jar" until the end of a request, primarily
  174. * to make testing the cookie functionality of the site
  175. * much easier since the jar can be inspected.
  176. */
  177. Cookie::send();
  178. /**
  179. * Send the final response to the browser and fire the
  180. * final event indicating that the processing for the
  181. * current request is completed.
  182. */
  183. $response->send();
  184. Event::fire('laravel: done');