class}_Controller"; if($action && class_exists($controller . '_' . ucfirst($action))) { $controller = $controller . '_' . ucfirst($action); } return class_exists($controller) ? new $controller($sitetree) : $sitetree; } public function init() { singleton('SiteTree')->extend('modelascontrollerInit', $this); } /** * @uses ModelAsController::getNestedController() * @return SS_HTTPResponse */ public function handleRequest(SS_HTTPRequest $request) { $this->request = $request; $this->pushCurrent(); $this->init(); // If the database has not yet been created, redirect to the build page. if(!DB::isActive() || !ClassInfo::hasTable('SiteTree')) { $this->response = new SS_HTTPResponse(); $this->response->redirect('dev/build?returnURL=' . (isset($_GET['url']) ? urlencode($_GET['url']) : null)); $this->popCurrent(); return $this->response; } try { $result = $this->getNestedController(); if($result instanceof RequestHandler) { $result = $result->handleRequest($this->request); } } catch(SS_HTTPResponse_Exception $responseException) { $result = $responseException->getResponse(); } $this->popCurrent(); return $result; } /** * @return ContentController */ public function getNestedController() { $request = $this->request; if(!$URLSegment = $request->param('URLSegment')) { throw new Exception('ModelAsController->getNestedController(): was not passed a URLSegment value.'); } Translatable::disable_locale_filter(); $sitetree = DataObject::get_one('SiteTree', sprintf ( '"URLSegment" = \'%s\' %s', Convert::raw2sql($URLSegment), (SiteTree::nested_urls() ? 'AND "ParentID" = 0' : null) )); Translatable::enable_locale_filter(); if(!$sitetree) { // If a root page has been renamed, redirect to the new location. if($redirect = $this->findOldPage($URLSegment)) { $this->response = new SS_HTTPResponse(); $this->response->redirect($redirect->Link ( Controller::join_links($request->param('Action'), $request->param('ID'), $request->param('OtherID')) )); return $this->response; } if($response = ErrorPage::response_for(404)) { return $response; } else { $this->httpError(404, 'The requested page could not be found.'); } } if($sitetree->Locale) Translatable::set_current_locale($sitetree->Locale); if(isset($_REQUEST['debug'])) { Debug::message("Using record #$sitetree->ID of type $sitetree->class with link {$sitetree->Link()}"); } return self::controller_for($sitetree, $this->request->param('Action')); } /** * @param string $URLSegment * @return SiteTree */ protected function findOldPage($URLSegment) { $URLSegment = Convert::raw2sql($URLSegment); // First look for a non-nested page that has a unique URLSegment and can be redirected to. if(SiteTree::nested_urls() && $pages = DataObject::get('SiteTree', "\"URLSegment\" = '$URLSegment'")) { if($pages->Count() == 1) return $pages->First(); } // Get an old version of a page that has been renamed. $query = new SQLQuery ( '"RecordID"', '"SiteTree_versions"', "\"URLSegment\" = '$URLSegment' AND \"WasPublished\" = 1" . (SiteTree::nested_urls() ? ' AND "ParentID" = 0' : null), '"LastEdited" DESC', null, null, 1 ); if(($result = $query->execute()) && $result->numRecords()) { $recordID = $result->column(); if($oldPage = DataObject::get_by_id('SiteTree', $recordID[0])) { // Run the page through an extra filter to ensure that all decorators are applied. if(SiteTree::get_by_link($oldPage->RelativeLink())) return $oldPage; } } } }