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.
|
|
|
|
*/
|
|
|
|
class ModelAsController extends Controller implements NestedController {
|
|
|
|
|
|
|
|
public function run($requestParams) {
|
2007-08-18 01:11:43 +02:00
|
|
|
$this->pushCurrent();
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
$this->init();
|
2007-08-17 05:09:46 +02:00
|
|
|
$nested = $this->getNestedController();
|
2007-08-18 01:11:43 +02:00
|
|
|
$result = $nested->run($requestParams);
|
|
|
|
|
|
|
|
$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);
|
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()) {
|
|
|
|
$child = Translatable::get_one("SiteTree", "URLSegment = '$SQL_URLSegment'");
|
|
|
|
} else {
|
|
|
|
$child = DataObject::get_one("SiteTree", "URLSegment = '$SQL_URLSegment'");
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
if(!$child) {
|
2007-09-16 18:14:01 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
header("HTTP/1.0 404 Not Found");
|
|
|
|
$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;
|
|
|
|
}
|
|
|
|
$controller->setURLParams($this->urlParams);
|
|
|
|
|
|
|
|
return $controller;
|
|
|
|
} else {
|
|
|
|
die("The requested page couldn't be found.");
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
user_error("ModelAsController not geting a URLSegment. It looks like the site isn't redirecting to home", E_USER_ERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function get404Page() {
|
|
|
|
if($page = DataObject::get_one("ErrorPage", "ErrorCode = '404'")) return $page;
|
|
|
|
else return DataObject::get_one("SiteTree", "URLSegment = '404'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|