laravel.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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 framework error handling methods and set the
  10. * error_reporting levels. This file will register handlers
  11. * for exceptions, errors, and shutdown.
  12. */
  13. require SYS_PATH.'bootstrap/errors'.EXT;
  14. /**
  15. * Set the application's default timezone.
  16. */
  17. date_default_timezone_set(Config::$items['application']['timezone']);
  18. /**
  19. * Load the session and session manager instance. The session
  20. * payload will be registered in the IoC container as an instance
  21. * so it can be retrieved easily throughout the application.
  22. */
  23. if (Config::$items['session']['driver'] !== '')
  24. {
  25. $driver = IoC::container()->core('session.'.Config::$items['session']['driver']);
  26. $transporter = IoC::container()->core('session.transporter');
  27. Session\Manager::start($driver, $transporter);
  28. }
  29. /**
  30. * Manually load some core classes that are used on every request
  31. * This allows to avoid using the loader for these classes.
  32. */
  33. require SYS_PATH.'request'.EXT;
  34. require SYS_PATH.'routing/route'.EXT;
  35. require SYS_PATH.'routing/router'.EXT;
  36. require SYS_PATH.'routing/loader'.EXT;
  37. require SYS_PATH.'routing/filter'.EXT;
  38. /**
  39. * Gather the input to the application for the current request.
  40. * The input will be gathered based on the current request method
  41. * and will be set on the Input manager.
  42. */
  43. $input = array();
  44. switch (Request::method())
  45. {
  46. case 'GET':
  47. $input = $_GET;
  48. break;
  49. case 'POST':
  50. $input = $_POST;
  51. break;
  52. case 'PUT':
  53. case 'DELETE':
  54. if (Request::spoofed())
  55. {
  56. $input = $_POST;
  57. }
  58. else
  59. {
  60. parse_str(file_get_contents('php://input'), $input);
  61. }
  62. }
  63. /**
  64. * The spoofed request method is removed from the input so it is
  65. * not unexpectedly included in Input::all() or Input::get().s
  66. */
  67. unset($input[Request::spoofer]);
  68. Input::$input = $input;
  69. /**
  70. * Route the request to the proper route in the application. If a
  71. * route is found, the route will be called with the current request
  72. * instance. If no route is found, the 404 response will be returned
  73. * to the browser.
  74. */
  75. Routing\Filter::register(require APP_PATH.'filters'.EXT);
  76. list($uri, $method) = array(Request::uri(), Request::method());
  77. $route = IoC::container()->core('routing.router')->route($method, $uri);
  78. if ( ! is_null($route))
  79. {
  80. $response = $route->call();
  81. }
  82. else
  83. {
  84. $response = Response::error('404');
  85. }
  86. /**
  87. * Stringify the response. We need to force the response to be
  88. * stringed before closing the session, since the developer may
  89. * be using the session within their views, so we cannot age
  90. * the session data until the view is rendered.
  91. */
  92. $response->content = $response->render();
  93. /**
  94. * Close the session and write the active payload to persistent
  95. * storage. The input for the current request is also flashed
  96. * to the session so it will be available for the next request
  97. * via the Input::old method.
  98. */
  99. if (Config::$items['session']['driver'] !== '')
  100. {
  101. Session\Manager::close(array(Input::old_input => Input::get()));
  102. }
  103. /**
  104. * Finally, we can send the response to the browser.
  105. */
  106. $response->send();