0) { require SYS_PATH.'package'.EXT; Package::load(Config::get('application.packages')); } // -------------------------------------------------------------- // Determine the module that should handle the request. // -------------------------------------------------------------- $segments = explode('/', Request::uri()); define('ACTIVE_MODULE', (in_array($segments[0], Config::get('application.modules'))) ? $segments[0] : 'application'); // -------------------------------------------------------------- // Determine the path to the root of the active module. // -------------------------------------------------------------- define('ACTIVE_MODULE_PATH', (ACTIVE_MODULE == 'application') ? APP_PATH : MODULE_PATH.ACTIVE_MODULE.'/'); // -------------------------------------------------------------- // Register the filters for the active module. // -------------------------------------------------------------- Routing\Filter::register(require APP_PATH.'filters'.EXT); if (ACTIVE_MODULE !== 'application' and file_exists($filters = ACTIVE_MODULE_PATH.'filters'.EXT)) { Routing\Filter::register(require $filters); } // -------------------------------------------------------------- // Call the "before" filter for the application and module. // -------------------------------------------------------------- foreach (array('before', ACTIVE_MODULE.'::before') as $filter) { $response = Routing\Filter::call($filter, array(), true); } // -------------------------------------------------------------- // Route the request and get the response from the route. // -------------------------------------------------------------- if (is_null($response)) { $route = Routing\Router::make(Request::method(), Request::uri(), new Routing\Loader(ACTIVE_MODULE_PATH))->route(); $response = (is_null($route)) ? Response::error('404') : $route->call(); } $response = Response::prepare($response); // -------------------------------------------------------------- // Call the "after" filter for the application and module. // -------------------------------------------------------------- foreach (array(ACTIVE_MODULE.'::after', 'after') as $filter) { Routing\Filter::call($filter, array($response)); } // -------------------------------------------------------------- // Stringify the response. // -------------------------------------------------------------- $response->content = (string) $response->content; // -------------------------------------------------------------- // Close the session. // -------------------------------------------------------------- if (Config::get('session.driver') != '') { Session::close(); } // -------------------------------------------------------------- // Send the response to the browser. // -------------------------------------------------------------- $response->send();