project to the project. * * The url to match a project is in the format * /p/(\w+)/whatever. This means that it will not try to match on * /login/ or /logout/. * * @param Pluf_HTTP_Request The request * @return bool false or redirect. */ function process_request(&$request) { $match = array(); if (preg_match('#^/p/([\-\w]+)/#', $request->query, $match)) { try { $request->project = IDF_Project::getOr404($match[1]); } catch (Pluf_HTTP_Error404 $e) { return new Pluf_HTTP_Response_NotFound(sprintf(__('The page %s was not found on the server.'), htmlspecialchars($request->query))); } $request->conf = new IDF_Conf(); $request->conf->setProject($request->project); $ak = array('downloads_access_rights' => 'hasDownloadsAccess', 'source_access_rights' => 'hasSourceAccess', 'issues_access_rights' => 'hasIssuesAccess'); $request->rights = array(); foreach ($ak as $key=>$val) { $request->rights[$val] = (true === IDF_Precondition::accessTabGeneric($request, $key)); } } return false; } } function IDF_Middleware_ContextPreProcessor($request) { $c = array(); $c['request'] = $request; if (isset($request->project)) { $c['project'] = $request->project; $c['isOwner'] = $request->user->hasPerm('IDF.project-owner', $request->project); $c['isMember'] = $request->user->hasPerm('IDF.project-member', $request->project); $c = array_merge($c, $request->rights); } return $c; }