laravel.php 3.3 KB

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