laravel.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php namespace Laravel;
  2. /**
  3. * Bootstrap the core framework components like the IoC container, configuration
  4. * class, and the class auto-loader. Once this file has run, the framework is
  5. * essentially ready for use.
  6. */
  7. require 'bootstrap/core.php';
  8. /**
  9. * Register the framework error handling methods and set the error_reporting levels.
  10. * This file will register handlers for exceptions, errors, and shutdown.
  11. */
  12. require SYS_PATH.'bootstrap/errors'.EXT;
  13. /**
  14. * Set the application's default timezone.
  15. */
  16. date_default_timezone_set(Config::get('application.timezone'));
  17. /**
  18. * Load the session and session manager instance. The session payload will be
  19. * registered in the IoC container as an instance so it can be retrieved easily
  20. * throughout the application.
  21. */
  22. if (Config::get('session.driver') !== '')
  23. {
  24. $session = $container->resolve('laravel.session.manager');
  25. $container->instance('laravel.session', $session->payload(Config::get('session')));
  26. }
  27. /**
  28. * Resolve the incoming request instance from the IoC container and route the
  29. * request to the proper route in the application. If a route is found, the route
  30. * will be called with the current requst instance. If no route is found, the 404
  31. * response will be returned to the browser.
  32. */
  33. $request = $container->resolve('laravel.request');
  34. list($method, $uri) = array($request->method(), $request->uri());
  35. $route = $container->resolve('laravel.routing.router')->route($request, $method, $uri);
  36. if ( ! is_null($route))
  37. {
  38. $response = $container->resolve('laravel.routing.caller')->call($route);
  39. }
  40. else
  41. {
  42. $response = Response::error('404');
  43. }
  44. /**
  45. * Stringify the response. We need to force the response to be stringed before
  46. * closing the session, since the developer may be using the session within their
  47. * views, so we cannot age the session data until the view is rendered.
  48. */
  49. $response->content = $response->render();
  50. /**
  51. * Close the session and write the active payload to persistent storage. The input
  52. * for the current request is also flashed to the session so it will be available
  53. * for the next request via the Input::old method.
  54. */
  55. if (isset($session))
  56. {
  57. $flash = array(Input::old_input => $container->resolve('laravel.input')->get());
  58. $session->close($container->resolve('laravel.session'), Config::get('session'), $flash);
  59. }
  60. /**
  61. * Finally, we can send the response to the browser.
  62. */
  63. $response->send();