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. Session::start($driver);
  27. }
  28. /**
  29. * Manually load some core classes that are used on every request
  30. * This allows to avoid using the loader for these classes.
  31. */
  32. require SYS_PATH.'input'.EXT;
  33. require SYS_PATH.'request'.EXT;
  34. require SYS_PATH.'response'.EXT;
  35. require SYS_PATH.'routing/route'.EXT;
  36. require SYS_PATH.'routing/router'.EXT;
  37. require SYS_PATH.'routing/loader'.EXT;
  38. require SYS_PATH.'routing/filter'.EXT;
  39. /**
  40. * Gather the input to the application for the current request.
  41. * The input will be gathered based on the current request method
  42. * and will be set on the Input manager.
  43. */
  44. $input = array();
  45. switch (Request::method())
  46. {
  47. case 'GET':
  48. $input = $_GET;
  49. break;
  50. case 'POST':
  51. $input = $_POST;
  52. break;
  53. case 'PUT':
  54. case 'DELETE':
  55. if (Request::spoofed())
  56. {
  57. $input = $_POST;
  58. }
  59. else
  60. {
  61. parse_str(file_get_contents('php://input'), $input);
  62. }
  63. }
  64. /**
  65. * The spoofed request method is removed from the input so it is
  66. * not unexpectedly included in Input::all() or Input::get().
  67. */
  68. unset($input[Request::spoofer]);
  69. Input::$input = $input;
  70. /**
  71. * Route the request to the proper route in the application. If a
  72. * route is found, the route will be called with the current request
  73. * instance. If no route is found, the 404 response will be returned
  74. * to the browser.
  75. */
  76. Routing\Filter::register(require APP_PATH.'filters'.EXT);
  77. list($uri, $method) = array(Request::uri(), Request::method());
  78. Request::$route = IoC::container()->core('routing.router')->route($method, $uri);
  79. if ( ! is_null(Request::$route))
  80. {
  81. $response = Request::$route->call();
  82. }
  83. else
  84. {
  85. $response = Response::error('404');
  86. }
  87. /**
  88. * Stringify the response. We need to force the response to be
  89. * stringed before closing the session, since the developer may
  90. * be using the session within their views, so we cannot age
  91. * the session data until the view is rendered.
  92. */
  93. $response->content = $response->render();
  94. /**
  95. * Close the session and write the active payload to persistent
  96. * storage. The session cookie will also be written and if the
  97. * driver is a sweeper, session garbage collection might be
  98. * performed depending on the "sweepage" probability.
  99. */
  100. if (Config::$items['session']['driver'] !== '')
  101. {
  102. Session::save($driver);
  103. }
  104. /**
  105. * Finally, we can send the response to the browser.
  106. */
  107. $response->send();