2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ModelAsController will hand over all control to the appopriate model object
|
|
|
|
* It uses URLSegment to determine the right object. Also, if (ModelClass)_Controller exists,
|
|
|
|
* that controller will be used instead. It should be a subclass of ContentController.
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
|
|
|
* @package sapphire
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class ModelAsController extends Controller implements NestedController {
|
|
|
|
|
2008-08-09 05:19:54 +02:00
|
|
|
public function handleRequest($request) {
|
2007-08-18 01:11:43 +02:00
|
|
|
$this->pushCurrent();
|
2008-08-09 05:19:54 +02:00
|
|
|
$this->urlParams = $request->allParams();
|
2007-08-18 01:11:43 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
$this->init();
|
2008-11-13 03:10:15 +01:00
|
|
|
$result = $this->getNestedController();
|
|
|
|
|
|
|
|
if(is_object($result) && $result instanceOf RequestHandler) {
|
|
|
|
$result = $result->handleRequest($request);
|
2008-05-15 10:44:37 +02:00
|
|
|
}
|
2007-08-18 01:11:43 +02:00
|
|
|
|
|
|
|
$this->popCurrent();
|
|
|
|
return $result;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function init() {
|
2007-08-16 08:27:32 +02:00
|
|
|
singleton('SiteTree')->extend('modelascontrollerInit', $this);
|
2008-02-26 02:22:29 +01:00
|
|
|
|
|
|
|
Director::set_site_mode('site');
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getNestedController() {
|
|
|
|
if($this->urlParams['URLSegment']) {
|
2007-09-16 18:14:01 +02:00
|
|
|
$SQL_URLSegment = Convert::raw2sql($this->urlParams['URLSegment']);
|
|
|
|
if (Translatable::is_enabled()) {
|
2008-12-16 22:43:49 +01:00
|
|
|
$child = Translatable::get_one("SiteTree", "\"SiteTree\".\"URLSegment\" = '$SQL_URLSegment'", false);
|
2007-09-16 18:14:01 +02:00
|
|
|
} else {
|
2008-12-16 22:43:49 +01:00
|
|
|
$child = DataObject::get_one("SiteTree", "\"SiteTree\".\"URLSegment\" = '$SQL_URLSegment'", false);
|
2007-09-16 18:14:01 +02:00
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
if(!$child) {
|
2008-11-13 03:10:15 +01:00
|
|
|
if($child = $this->findOldPage($SQL_URLSegment)) {
|
|
|
|
$url = Controller::join_links(
|
|
|
|
Director::baseURL(),
|
|
|
|
$child->URLSegment,
|
|
|
|
$this->urlParams['Action'],
|
|
|
|
$this->urlParams['ID'],
|
|
|
|
$this->urlParams['OtherID']
|
|
|
|
);
|
|
|
|
|
|
|
|
$response = new HTTPResponse();
|
|
|
|
$response->redirect($url, 301);
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
$child = $this->get404Page();
|
|
|
|
}
|
|
|
|
|
|
|
|
if($child) {
|
|
|
|
if(isset($_REQUEST['debug'])) Debug::message("Using record #$child->ID of type $child->class with URL {$this->urlParams['URLSegment']}");
|
|
|
|
|
|
|
|
$controllerClass = "{$child->class}_Controller";
|
|
|
|
|
|
|
|
if($this->urlParams['Action'] && ClassInfo::exists($controllerClass.'_'.$this->urlParams['Action'])) {
|
|
|
|
$controllerClass = $controllerClass.'_'.$this->urlParams['Action'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ClassInfo::exists($controllerClass)) {
|
|
|
|
$controller = new $controllerClass($child);
|
|
|
|
} else {
|
|
|
|
$controller = $child;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $controller;
|
|
|
|
} else {
|
2008-11-22 04:33:00 +01:00
|
|
|
return new HTTPResponse("The requested page couldn't be found.",404);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
user_error("ModelAsController not geting a URLSegment. It looks like the site isn't redirecting to home", E_USER_ERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-13 03:10:15 +01:00
|
|
|
protected function findOldPage($urlSegment) {
|
|
|
|
$versionedQuery = new SQLQuery (
|
2008-11-24 00:28:16 +01:00
|
|
|
'"RecordID"', '"SiteTree_versions"',
|
|
|
|
"\"WasPublished\" AND \"URLSegment\" = '$urlSegment'",
|
2008-11-23 01:31:06 +01:00
|
|
|
'"LastEdited" DESC, "WasPublished"',
|
2008-11-13 03:10:15 +01:00
|
|
|
null, null, 1
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $versionedQuery->execute();
|
|
|
|
|
|
|
|
if($result->numRecords() == 1 && $redirectPage = $result->nextRecord()) {
|
|
|
|
if($redirectObj = DataObject::get_by_id('SiteTree', $redirectPage['RecordID'])) return $redirectObj;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
protected function get404Page() {
|
2008-11-24 00:28:16 +01:00
|
|
|
if($page = DataObject::get_one("ErrorPage", "\"ErrorCode\" = '404'")) return $page;
|
|
|
|
else return DataObject::get_one("SiteTree", "\"URLSegment\" = '404'");
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|