123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?php namespace Laravel;
- /**
- * Bootstrap the core framework components like the IoC container,
- * configuration class, and the class auto-loader. Once this file
- * has run, the framework is essentially ready for use.
- */
- require 'bootstrap/core.php';
- /**
- * Register the framework error handling methods and set the
- * error_reporting levels. This file will register handlers
- * for exceptions, errors, and shutdown.
- */
- require SYS_PATH.'bootstrap/errors'.EXT;
- /**
- * Set the application's default timezone.
- */
- date_default_timezone_set(Config::$items['application']['timezone']);
- /**
- * Load the session and session manager instance. The session
- * payload will be registered in the IoC container as an instance
- * so it can be retrieved easily throughout the application.
- */
- if (Config::$items['session']['driver'] !== '')
- {
- $driver = IoC::container()->core('session.'.Config::$items['session']['driver']);
- $id = Cookie::get(Config::$items['session']['cookie']);
- IoC::container()->instance('laravel.session', new Session\Manager($driver, $id));
- }
- /**
- * Manually load some core classes that are used on every request
- * This allows to avoid using the loader for these classes.
- */
- require SYS_PATH.'input'.EXT;
- require SYS_PATH.'request'.EXT;
- require SYS_PATH.'response'.EXT;
- require SYS_PATH.'routing/route'.EXT;
- require SYS_PATH.'routing/router'.EXT;
- require SYS_PATH.'routing/loader'.EXT;
- require SYS_PATH.'routing/filter'.EXT;
- /**
- * Gather the input to the application for the current request.
- * The input will be gathered based on the current request method
- * and will be set on the Input manager.
- */
- $input = array();
- switch (Request::method())
- {
- case 'GET':
- $input = $_GET;
- break;
- case 'POST':
- $input = $_POST;
- break;
- case 'PUT':
- case 'DELETE':
- if (Request::spoofed())
- {
- $input = $_POST;
- }
- else
- {
- parse_str(file_get_contents('php://input'), $input);
- }
- }
- /**
- * The spoofed request method is removed from the input so it is
- * not unexpectedly included in Input::all() or Input::get().
- */
- unset($input[Request::spoofer]);
- Input::$input = $input;
- /**
- * Route the request to the proper route in the application. If a
- * route is found, the route will be called with the current request
- * instance. If no route is found, the 404 response will be returned
- * to the browser.
- */
- Routing\Filter::register(require APP_PATH.'filters'.EXT);
- list($uri, $method) = array(Request::uri(), Request::method());
- Request::$route = IoC::container()->core('routing.router')->route($method, $uri);
- if ( ! is_null(Request::$route))
- {
- $response = Request::$route->call();
- }
- else
- {
- $response = Response::error('404');
- }
- /**
- * Stringify the response. We need to force the response to be
- * stringed before closing the session, since the developer may
- * be using the session within their views, so we cannot age
- * the session data until the view is rendered.
- */
- $response->content = $response->render();
- /**
- * Close the session and write the active payload to persistent
- * storage. The session cookie will also be written and if the
- * driver is a sweeper, session garbage collection might be
- * performed depending on the "sweepage" probability.
- */
- if (Config::$items['session']['driver'] !== '')
- {
- IoC::container()->core('session')->save($driver);
- }
- /**
- * Finally, we can send the response to the browser.
- */
- $response->send();
|