2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2008-02-25 03:10:37 +01:00
|
|
|
* @package sapphire
|
|
|
|
* @subpackage control
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Director is responsible for processing URLs, and providing environment information.
|
|
|
|
*
|
|
|
|
* The most important part of director is {@link Director::direct()}, which is passed a URL and will execute the appropriate
|
|
|
|
* controller.
|
|
|
|
*
|
|
|
|
* Director also has a number of static methods that provide information about the environment, such as {@link Director::set_environment_type()}.
|
|
|
|
*
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage control
|
|
|
|
* @see Director::direct(),Director::addRules(),Director::set_environment_type()
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class Director {
|
2007-11-10 06:17:30 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static private $urlSegment;
|
2007-11-10 06:17:30 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static private $urlParams;
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static private $rules = array();
|
2007-11-10 06:17:30 +01:00
|
|
|
|
|
|
|
static $siteMode;
|
|
|
|
|
|
|
|
static $alternateBaseFolder;
|
|
|
|
|
|
|
|
static $alternateBaseURL;
|
|
|
|
|
|
|
|
static $dev_servers = array(
|
|
|
|
'localhost',
|
|
|
|
'127.0.0.1'
|
|
|
|
);
|
|
|
|
|
|
|
|
static $test_servers = array();
|
|
|
|
|
|
|
|
static protected $environment_type;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the site mode (if it is the public site or the cms),
|
|
|
|
* and runs registered modules.
|
|
|
|
*/
|
|
|
|
static protected $callbacks;
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function __construct() {
|
|
|
|
if(isset($_GET['debug_profile'])) Profiler::mark("Director", "construct");
|
|
|
|
Session::addToArray('history', substr($_SERVER['REQUEST_URI'], strlen(Director::baseURL())));
|
|
|
|
if(isset($_GET['debug_profile'])) Profiler::unmark("Director", "construct");
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Return a URL from this user's navigation history.
|
|
|
|
* @param pagesBack The number of pages back to go. The default, 1, returns the previous
|
|
|
|
* page.
|
|
|
|
*/
|
|
|
|
static function history($pagesBack = 1) {
|
|
|
|
return Session::get('history.' . sizeof(Session::get('history')) - $pagesBack - 1);
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2008-02-25 03:10:37 +01:00
|
|
|
* Add URL matching rules to the Director.
|
|
|
|
*
|
|
|
|
* The director is responsible for turning URLs into Controller objects. It does thi
|
|
|
|
*
|
|
|
|
* @param $priority The priority of the rules; higher values will get your rule checked first.
|
|
|
|
* We recommend priority 100 for your site's rules. The built-in rules are priority 10, standard modules are priority 50.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function addRules($priority, $rules) {
|
|
|
|
Director::$rules[$priority] = isset(Director::$rules[$priority]) ? array_merge($rules, (array)Director::$rules[$priority]) : $rules;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-02-25 03:10:37 +01:00
|
|
|
* Process the given URL, creating the appropriate controller and executing it.
|
|
|
|
*
|
|
|
|
* This method will:
|
|
|
|
* - iterate over all of the rules given in {@link Director::addRules()}, and find the first one that matches.
|
|
|
|
* - instantiate the {@link Controller} object required by that rule, and call {@link Controller::setURLParams()} to give the URL paramters to the controller.
|
|
|
|
* - link the Controller's session to PHP's main session, using {@link Controller::setSession()}.
|
|
|
|
* - call {@link Controller::run()} on that controller
|
|
|
|
* - save the Controller's session back into PHP's main session.
|
|
|
|
* - output the response to the browser, using {@link HTTPResponse::output()}.
|
|
|
|
*
|
|
|
|
* @param $url String, the URL the user is visiting, without the querystring.
|
|
|
|
* @uses getControllerForURL() rule-lookup logic is handled by this.
|
|
|
|
* @uses Controller::run() Controller::run() handles the page logic for a Director::direct() call.
|
2007-09-14 19:47:45 +02:00
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
function direct($url) {
|
|
|
|
if(isset($_GET['debug_profile'])) Profiler::mark("Director","direct");
|
|
|
|
$controllerObj = Director::getControllerForURL($url);
|
2007-08-17 07:45:15 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if(is_string($controllerObj) && substr($controllerObj,0,9) == 'redirect:') {
|
2008-02-25 03:10:37 +01:00
|
|
|
$response = new HTTPResponse();
|
|
|
|
$response->redirect(substr($controllerObj, 9));
|
|
|
|
$response->output();
|
2007-07-19 12:40:28 +02:00
|
|
|
} else if($controllerObj) {
|
2008-02-25 03:10:37 +01:00
|
|
|
// Load the session into the controller
|
|
|
|
$controllerObj->setSession(new Session($_SESSION));
|
|
|
|
|
2007-08-17 05:09:46 +02:00
|
|
|
$response = $controllerObj->run(array_merge((array)$_GET, (array)$_POST, (array)$_FILES));
|
2007-08-17 07:45:15 +02:00
|
|
|
|
2007-11-12 02:47:48 +01:00
|
|
|
|
|
|
|
$controllerObj->getSession()->inst_save();
|
2007-09-16 17:31:44 +02:00
|
|
|
|
|
|
|
if(isset($_GET['debug_profile'])) Profiler::mark("Outputting to browser");
|
2007-08-17 05:09:46 +02:00
|
|
|
$response->output();
|
2007-09-16 17:31:44 +02:00
|
|
|
if(isset($_GET['debug_profile'])) Profiler::unmark("Outputting to browser");
|
2007-08-17 05:09:46 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
if(isset($_GET['debug_profile'])) Profiler::unmark("Director","direct");
|
|
|
|
}
|
2007-08-21 00:39:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test a URL request, returning a response object.
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
|
|
|
* This method is the counterpart of Director::direct() that is used in functional testing. It will execute the URL given,
|
|
|
|
*
|
2007-08-21 00:39:44 +02:00
|
|
|
* @param $url The URL to visit
|
|
|
|
* @param $post The $_POST & $_FILES variables
|
2008-02-25 03:10:37 +01:00
|
|
|
* @param $session The {@link Session} object representing the current session. By passing the same object to multiple
|
|
|
|
* calls of Director::test(), you can simulate a peristed session.
|
|
|
|
*
|
|
|
|
* @uses getControllerForURL() The rule-lookup logic is handled by this.
|
|
|
|
* @uses Controller::run() Controller::run() handles the page logic for a Director::direct() call.
|
2007-08-21 00:39:44 +02:00
|
|
|
*/
|
|
|
|
function test($url, $post = null, $session = null) {
|
|
|
|
$getVars = array();
|
|
|
|
if(strpos($url,'?') !== false) {
|
|
|
|
list($url, $getVarsEncoded) = explode('?', $url, 2);
|
|
|
|
parse_str($getVarsEncoded, $getVars);
|
|
|
|
}
|
Merged revisions 53150,53681,53700,53820,54200,54459 via svnmerge from
svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/roa
........
r53150 | ischommer | 2008-04-22 11:12:43 +1200 (Tue, 22 Apr 2008) | 1 line
FEATURE Added a "test mode" for /db/build which allows mock-DataObject-subclasses which are just built in a test run
........
r53681 | mrickerby | 2008-04-29 15:26:52 +1200 (Tue, 29 Apr 2008) | 1 line
adding default wrapping header and footer methods, and configurable reporting to the TestRunner
........
r53700 | mrickerby | 2008-04-29 16:41:57 +1200 (Tue, 29 Apr 2008) | 1 line
FEATURE: adding support for /dev/tests --> DevelopmentAdmin-->tests() --> TestRunner, /dev/tasks --> DevelopmentAdmin-->tasks() --> TaskRunner
........
r53820 | mrickerby | 2008-04-30 19:27:52 +1200 (Wed, 30 Apr 2008) | 1 line
BUGFIX fixing up BuildTask interface and task runner action
........
r54200 | sminnee | 2008-05-09 00:28:44 +1200 (Fri, 09 May 2008) | 1 line
Added TestSession object to help with the testing of forms
........
r54459 | sminnee | 2008-05-13 17:28:25 +1200 (Tue, 13 May 2008) | 1 line
Added a basic menu of options to /dev
........
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@54456 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-05-13 07:57:09 +02:00
|
|
|
|
2008-04-26 08:31:24 +02:00
|
|
|
$existingRequestVars = $_REQUEST;
|
|
|
|
$existingGetVars = $_GET;
|
|
|
|
$existingPostVars = $_POST;
|
|
|
|
$existingSessionVars = $_SESSION;
|
Merged revisions 53150,53681,53700,53820,54200,54459 via svnmerge from
svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/roa
........
r53150 | ischommer | 2008-04-22 11:12:43 +1200 (Tue, 22 Apr 2008) | 1 line
FEATURE Added a "test mode" for /db/build which allows mock-DataObject-subclasses which are just built in a test run
........
r53681 | mrickerby | 2008-04-29 15:26:52 +1200 (Tue, 29 Apr 2008) | 1 line
adding default wrapping header and footer methods, and configurable reporting to the TestRunner
........
r53700 | mrickerby | 2008-04-29 16:41:57 +1200 (Tue, 29 Apr 2008) | 1 line
FEATURE: adding support for /dev/tests --> DevelopmentAdmin-->tests() --> TestRunner, /dev/tasks --> DevelopmentAdmin-->tasks() --> TaskRunner
........
r53820 | mrickerby | 2008-04-30 19:27:52 +1200 (Wed, 30 Apr 2008) | 1 line
BUGFIX fixing up BuildTask interface and task runner action
........
r54200 | sminnee | 2008-05-09 00:28:44 +1200 (Fri, 09 May 2008) | 1 line
Added TestSession object to help with the testing of forms
........
r54459 | sminnee | 2008-05-13 17:28:25 +1200 (Tue, 13 May 2008) | 1 line
Added a basic menu of options to /dev
........
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@54456 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-05-13 07:57:09 +02:00
|
|
|
|
|
|
|
$_REQUEST = $existingRequestVars;
|
|
|
|
$_GET = $existingGetVars;
|
|
|
|
$_POST = $existingPostVars;
|
|
|
|
$_SESSION = $existingSessionVars;
|
|
|
|
|
2008-04-26 08:31:24 +02:00
|
|
|
$_REQUEST = array_merge((array)$getVars, (array)$post);
|
|
|
|
$_GET = (array)$getVars;
|
|
|
|
$_POST = (array)$post;
|
|
|
|
$_SESSION = $session ? $session->inst_getAll() : array();
|
|
|
|
|
2007-08-21 00:39:44 +02:00
|
|
|
$controllerObj = Director::getControllerForURL($url);
|
|
|
|
|
|
|
|
// Load the session into the controller
|
|
|
|
$controllerObj->setSession($session ? $session : new Session(null));
|
|
|
|
|
|
|
|
if(is_string($controllerObj) && substr($controllerObj,0,9) == 'redirect:') {
|
|
|
|
user_error("Redirection not implemented in Director::test", E_USER_ERROR);
|
|
|
|
|
|
|
|
} else if($controllerObj) {
|
|
|
|
$response = $controllerObj->run( array_merge($getVars, (array)$post) );
|
2008-04-26 08:31:24 +02:00
|
|
|
$_REQUEST = $existingRequestVars;
|
|
|
|
$_GET = $existingGetVars;
|
|
|
|
$_POST = $existingPostVars;
|
|
|
|
$_SESSION = $existingSessionVars;
|
2007-08-21 00:39:44 +02:00
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the controller that should be used to handle the given URL.
|
|
|
|
* @todo More information about director rules.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function getControllerForURL($url) {
|
|
|
|
if(isset($_GET['debug_profile'])) Profiler::mark("Director","getControllerForURL");
|
|
|
|
$url = preg_replace( array( '/\/+/','/^\//', '/\/$/'),array('/','',''),$url);
|
|
|
|
$urlParts = split('/+', $url);
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
krsort(Director::$rules);
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if(isset($_REQUEST['debug'])) Debug::show(Director::$rules);
|
2007-09-14 19:47:45 +02:00
|
|
|
|
|
|
|
foreach(Director::$rules as $priority => $rules) {
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach($rules as $pattern => $controller) {
|
|
|
|
$patternParts = explode('/', $pattern);
|
|
|
|
$matched = true;
|
|
|
|
$arguments = array();
|
|
|
|
foreach($patternParts as $i => $part) {
|
|
|
|
$part = trim($part);
|
|
|
|
if(isset($part[0]) && $part[0] == '$') {
|
|
|
|
$arguments[substr($part,1)] = isset($urlParts[$i]) ? $urlParts[$i] : null;
|
|
|
|
if($part == '$Controller' && !class_exists($arguments['Controller'])) {
|
|
|
|
$matched = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if(!isset($urlParts[$i]) || $urlParts[$i] != $part) {
|
|
|
|
$matched = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($matched) {
|
|
|
|
|
|
|
|
if(substr($controller,0,2) == '->') {
|
2008-04-14 00:05:03 +02:00
|
|
|
if(isset($_REQUEST['debug']) && $_REQUEST['debug'] == 1) Debug::message("Redirecting to $controller");
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if(isset($_GET['debug_profile'])) Profiler::unmark("Director","getControllerForURL");
|
2007-09-16 18:12:07 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
return "redirect:" . Director::absoluteURL(substr($controller,2), true);
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
} else {
|
|
|
|
if(isset($arguments['Controller']) && $controller == "*") {
|
|
|
|
$controller = $arguments['Controller'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isset($_REQUEST['debug'])) Debug::message("Using controller $controller");
|
|
|
|
if(isset($arguments['Action'])) {
|
|
|
|
$arguments['Action'] = str_replace('-','',$arguments['Action']);
|
|
|
|
}
|
|
|
|
if(isset($arguments['Action']) && ClassInfo::exists($controller.'_'.$arguments['Action']))
|
2007-09-14 19:47:45 +02:00
|
|
|
$controller = $controller.'_'.$arguments['Action'];
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
Director::$urlParams = $arguments;
|
|
|
|
$controllerObj = new $controller();
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
$controllerObj->setURLParams($arguments);
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if(isset($arguments['URLSegment'])) self::$urlSegment = $arguments['URLSegment'] . "/";
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if(isset($_GET['debug_profile'])) Profiler::unmark("Director","getControllerForURL");
|
2007-09-16 18:12:07 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
return $controllerObj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the urlParam with the given name
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function urlParam($name) {
|
2008-03-11 02:01:54 +01:00
|
|
|
if(isset(Director::$urlParams[$name])) return Director::$urlParams[$name];
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-11-10 06:17:30 +01:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Returns an array of urlParams
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function urlParams() {
|
|
|
|
return Director::$urlParams;
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the dataobject of the current page.
|
|
|
|
* This will only return a value if you are looking at a SiteTree page
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function currentPage() {
|
|
|
|
if(isset(Director::$urlParams['URLSegment'])) {
|
|
|
|
$SQL_urlSegment = Convert::raw2sql(Director::$urlParams['URLSegment']);
|
2007-09-16 18:12:07 +02:00
|
|
|
if (Translatable::is_enabled()) {
|
|
|
|
return Translatable::get_one("SiteTree", "URLSegment = '$SQL_urlSegment'");
|
|
|
|
} else {
|
|
|
|
return DataObject::get_one("SiteTree", "URLSegment = '$SQL_urlSegment'");
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
} else {
|
2007-10-25 04:38:35 +02:00
|
|
|
return Controller::curr();
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Turns the given URL into an absolute URL.
|
|
|
|
* @todo Document how relativeToSiteBase works
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function absoluteURL($url, $relativeToSiteBase = false) {
|
|
|
|
if(strpos($url,'/') === false && !$relativeToSiteBase) $url = dirname($_SERVER['REQUEST_URI'] . 'x') . '/' . $url;
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if(substr($url,0,4) != "http") {
|
|
|
|
if($url[0] != "/") $url = Director::baseURL() . $url;
|
|
|
|
$url = self::protocolAndHost() . $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the part of the URL, 'http://www.mysite.com'.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function protocolAndHost() {
|
2007-09-25 05:44:07 +02:00
|
|
|
if(self::$alternateBaseURL) {
|
2008-04-22 05:30:16 +02:00
|
|
|
if(preg_match('/^(http[^:]*:\/\/[^\/]+)\//', self::$alternateBaseURL, $matches)) {
|
2007-09-25 05:44:07 +02:00
|
|
|
return $matches[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
$s = (isset($_SERVER['SSL']) || isset($_SERVER['HTTPS'])) ? 's' : '';
|
|
|
|
return "http$s://" . $_SERVER['HTTP_HOST'];
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Redirect to another page.
|
2007-08-31 02:26:41 +02:00
|
|
|
* - $url can be an absolute URL
|
|
|
|
* - or it can be a URL relative to the "site base"
|
|
|
|
* - if it is just a word without an slashes, then it redirects to another action on the current controller.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2008-04-22 03:45:55 +02:00
|
|
|
static function redirect($url, $code=302) {
|
|
|
|
Controller::curr()->redirect($url, $code);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
2007-08-31 02:26:41 +02:00
|
|
|
/**
|
|
|
|
* Tests whether a redirection has been requested.
|
|
|
|
* @return string If redirect() has been called, it will return the URL redirected to. Otherwise, it will return null;
|
|
|
|
*/
|
|
|
|
static function redirected_to() {
|
2008-02-25 03:10:37 +01:00
|
|
|
return Controller::curr()->redirectedTo();
|
2007-08-31 02:26:41 +02:00
|
|
|
}
|
2007-12-02 22:29:31 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the HTTP status code
|
|
|
|
*/
|
|
|
|
static function set_status_code($code) {
|
|
|
|
return Controller::curr()->getResponse()->setStatusCode($code);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current HTTP status code
|
|
|
|
*/
|
|
|
|
static function get_status_code() {
|
|
|
|
return Controller::curr()->getResponse()->getStatusCode();
|
|
|
|
}
|
2007-08-31 02:26:41 +02:00
|
|
|
|
2007-09-16 17:34:05 +02:00
|
|
|
/*
|
|
|
|
* Redirect back
|
|
|
|
*
|
|
|
|
* Uses either the HTTP_REFERER or a manually set request-variable called
|
|
|
|
* _REDIRECT_BACK_URL.
|
|
|
|
* This variable is needed in scenarios where not HTTP-Referer is sent (
|
|
|
|
* e.g when calling a page by location.href in IE).
|
|
|
|
* If none of the two variables is available, it will redirect to the base
|
|
|
|
* URL (see {@link baseURL()}).
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function redirectBack() {
|
2007-09-16 17:34:05 +02:00
|
|
|
$url = self::baseURL();
|
|
|
|
|
|
|
|
if(isset($_REQUEST['_REDIRECT_BACK_URL'])) {
|
|
|
|
$url = $_REQUEST['_REDIRECT_BACK_URL'];
|
|
|
|
} else if(isset($_SERVER['HTTP_REFERER'])) {
|
2007-09-16 18:00:35 +02:00
|
|
|
$url = $_SERVER['HTTP_REFERER'];
|
2007-09-16 17:34:05 +02:00
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
Director::redirect($url);
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* @deprecated This seems like a bit of a hack; is it used anywhere?
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function currentURLSegment() {
|
|
|
|
return Director::$urlSegment;
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Returns a URL to composed of the given segments - usually controller, action, parameter
|
2008-03-03 00:24:10 +01:00
|
|
|
* @deprecated This function has little value. Just craft links yourself.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function link() {
|
|
|
|
$parts = func_get_args();
|
|
|
|
return Director::baseURL() . implode("/",$parts) . (sizeof($parts) > 2 ? "" : "/");
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2008-03-03 00:24:10 +01:00
|
|
|
* Returns the root URL for the site.
|
|
|
|
* It will be automatically calculated unless it is overridden with {@link setBaseURL()}.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function baseURL() {
|
|
|
|
if(self::$alternateBaseURL) return self::$alternateBaseURL;
|
|
|
|
else {
|
|
|
|
$base = dirname(dirname($_SERVER['SCRIPT_NAME']));
|
2008-03-11 02:30:42 +01:00
|
|
|
if($base == '/' || $base == '/.' || $base == '\\') return '/';
|
2007-07-19 12:40:28 +02:00
|
|
|
else return $base . '/';
|
|
|
|
}
|
|
|
|
}
|
2007-11-10 06:17:30 +01:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Sets the root URL for the website.
|
|
|
|
* If the site isn't accessible from the URL you provide, weird things will happen.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function setBaseURL($baseURL) {
|
|
|
|
self::$alternateBaseURL = $baseURL;
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the root filesystem folder for the site.
|
|
|
|
* It will be automatically calculated unless it is overridden with {@link setBaseFolder()}.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function baseFolder() {
|
|
|
|
if(self::$alternateBaseFolder) return self::$alternateBaseFolder;
|
|
|
|
else return dirname(dirname($_SERVER['SCRIPT_FILENAME']));
|
|
|
|
}
|
2008-03-03 00:24:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the root folder for the website.
|
|
|
|
* If the site isn't accessible from the folder you provide, weird things will happen.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function setBaseFolder($baseFolder) {
|
|
|
|
self::$alternateBaseFolder = $baseFolder;
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Turns an absolute URL or folder into one that's relative to the root of the site.
|
|
|
|
* This is useful when turning a URL into a filesystem reference, or vice versa.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function makeRelative($url) {
|
|
|
|
$base1 = self::absoluteBaseURL();
|
|
|
|
$base2 = self::baseFolder();
|
2008-05-26 08:21:30 +02:00
|
|
|
$base3 = self::baseURL();
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Allow for the accidental inclusion of a // in the URL
|
|
|
|
$url = ereg_replace('([^:])//','\\1/',$url);
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if(substr($url,0,strlen($base1)) == $base1) return substr($url,strlen($base1));
|
2008-05-26 08:21:30 +02:00
|
|
|
else if(substr($url,0,strlen($base2)) == $base2) return substr($url,strlen($base2));
|
|
|
|
else if(substr($url,0,strlen($base3)) == $base3) return substr($url,strlen($base3));
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* @deprecated This method's behaviour isn't very useful or consistent.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function getAbsURL($url) {
|
2008-02-25 03:10:37 +01:00
|
|
|
return Director::baseURL() . $url;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2008-03-03 00:24:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a filesystem reference relative to the site root, return the full filesystem path
|
|
|
|
*/
|
2008-04-06 06:00:43 +02:00
|
|
|
/**
|
|
|
|
* Cleans up a given file-path
|
|
|
|
*
|
|
|
|
* @param string $file
|
|
|
|
* @return string
|
|
|
|
*/
|
2008-04-09 12:59:30 +02:00
|
|
|
/**
|
|
|
|
* Cleans up a given file-path
|
|
|
|
*
|
|
|
|
* @param string $file
|
|
|
|
* @return string
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function getAbsFile($file) {
|
|
|
|
if($file[0] == '/') return $file;
|
|
|
|
return Director::baseFolder() . '/' . $file;
|
|
|
|
}
|
2007-11-10 06:17:30 +01:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Returns true if the given file exists.
|
|
|
|
* @param $file Filename specified relative to the site root
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function fileExists($file) {
|
2008-04-06 06:00:43 +02:00
|
|
|
// replace any appended query-strings, e.g. /path/to/foo.php?bar=1 to /path/to/foo.php
|
|
|
|
$file = preg_replace('/([^\?]*)?.*/','$1',$file);
|
2007-07-19 12:40:28 +02:00
|
|
|
return file_exists(Director::getAbsFile($file));
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2008-03-03 00:24:10 +01:00
|
|
|
* Returns the Absolute URL of the site root.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function absoluteBaseURL() {
|
|
|
|
return Director::absoluteURL(Director::baseURL());
|
|
|
|
}
|
2007-11-10 06:17:30 +01:00
|
|
|
|
2008-03-03 00:24:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the Absolute URL of the site root, embedding the current basic-auth credentials into the URL.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function absoluteBaseURLWithAuth() {
|
|
|
|
if($_SERVER['PHP_AUTH_USER'])
|
|
|
|
$login = "$_SERVER[PHP_AUTH_USER]:$_SERVER[PHP_AUTH_PW]@";
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if($_SERVER['SSL']) $s = "s";
|
|
|
|
return "http$s://" . $login . $_SERVER['HTTP_HOST'] . Director::baseURL();
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2008-03-03 00:24:10 +01:00
|
|
|
* Force the site to run on SSL. To use, call from _config.php.
|
|
|
|
*
|
|
|
|
* For example:
|
|
|
|
* <code>
|
|
|
|
* if(Director::isLive()) Director::forceSSL();
|
|
|
|
* </code>
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function forceSSL() {
|
|
|
|
if(!isset($_SERVER['HTTPS']) && !Director::isDev()){
|
|
|
|
$destURL = str_replace('http:','https:',Director::absoluteURL($_SERVER['REQUEST_URI']));
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
header("Location: $destURL");
|
|
|
|
die("<h1>Your browser is not accepting header redirects</h1><p>Please <a href=\"$destURL\">click here</a>");
|
|
|
|
}
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2008-03-03 00:24:10 +01:00
|
|
|
* Force a redirect to a domain starting with "www."
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function forceWWW() {
|
|
|
|
if(!Director::isDev() && !Director::isTest() && strpos( $_SERVER['SERVER_NAME'], 'www') !== 0 ){
|
|
|
|
if( $_SERVER['HTTPS'] )
|
|
|
|
$destURL = str_replace('https://','https://www.',Director::absoluteURL($_SERVER['REQUEST_URI']));
|
|
|
|
else
|
|
|
|
$destURL = str_replace('http://','http://www.',Director::absoluteURL($_SERVER['REQUEST_URI']));
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
header("Location: $destURL");
|
|
|
|
die("<h1>Your browser is not accepting header redirects</h1><p>Please <a href=\"$destURL\">click here</a>");
|
|
|
|
}
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Checks if the current HTTP-Request is an "Ajax-Request"
|
|
|
|
* by checking for a custom header set by prototype.js or
|
|
|
|
* wether a manually set request-parameter 'ajax' is present.
|
2007-09-14 19:47:45 +02:00
|
|
|
*
|
2007-07-19 12:40:28 +02:00
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
static function is_ajax() {
|
2007-08-21 00:39:44 +02:00
|
|
|
if(Controller::has_curr()) {
|
|
|
|
return Controller::curr()->isAjax();
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
isset($_REQUEST['ajax']) ||
|
|
|
|
(isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == "XMLHttpRequest")
|
|
|
|
);
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-11-11 03:54:19 +01:00
|
|
|
|
|
|
|
/**
|
2008-02-25 03:10:37 +01:00
|
|
|
* Returns true if this script is being run from the command line rather than the webserver.
|
|
|
|
*
|
2007-11-11 03:54:19 +01:00
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public static function is_cli() {
|
|
|
|
return preg_match('/cli-script\.php/', $_SERVER['SCRIPT_NAME']);
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Site mode methods
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-09-16 17:31:44 +02:00
|
|
|
/**
|
2008-03-03 00:24:10 +01:00
|
|
|
* Sets the site mode (if it is the public site or the cms), and runs registered modules.
|
2008-02-26 02:23:19 +01:00
|
|
|
*
|
|
|
|
* @param string $mode 'site' or 'cms'
|
2007-09-16 17:31:44 +02:00
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function set_site_mode($mode) {
|
|
|
|
Director::$siteMode = $mode;
|
2007-09-14 02:54:02 +02:00
|
|
|
|
2007-11-10 06:17:30 +01:00
|
|
|
if(isset(self::$callbacks[$mode])) {
|
|
|
|
foreach(self::$callbacks[$mode] as $extension) {
|
2007-09-16 17:31:44 +02:00
|
|
|
call_user_func($extension);
|
|
|
|
}
|
2007-09-14 02:54:02 +02:00
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-11-10 06:17:30 +01:00
|
|
|
|
2008-02-26 02:23:19 +01:00
|
|
|
/**
|
|
|
|
* @return string 'site' or 'cms'
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function get_site_mode() {
|
|
|
|
return Director::$siteMode;
|
|
|
|
}
|
2007-09-16 17:31:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows a module to register with the director to be run once
|
|
|
|
* the controller is instantiated. The optional 'mode' parameter
|
|
|
|
* can be either 'site' or 'cms', as those are the two values currently
|
|
|
|
* set by controllers. The callback function will be run at the
|
2007-11-10 06:17:30 +01:00
|
|
|
* initialization of the relevant controller.
|
|
|
|
*
|
|
|
|
* @param $function string PHP-function array based on http://php.net/call_user_func
|
|
|
|
* @param $mode string
|
2007-09-16 17:31:44 +02:00
|
|
|
*/
|
2007-11-10 06:17:30 +01:00
|
|
|
static function add_callback($function, $mode = 'site') {
|
|
|
|
self::$callbacks[$mode][] = $function;
|
2007-09-16 17:31:44 +02:00
|
|
|
}
|
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Environment type methods
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2008-02-25 03:10:37 +01:00
|
|
|
* Set the environment type of the current site.
|
|
|
|
*
|
|
|
|
* Typically, a SilverStripe site have a number of environments:
|
|
|
|
* - development environments, such a copy on your local machine.
|
|
|
|
* - test sites, such as the one you show the client before going live.
|
|
|
|
* - the live site itself.
|
|
|
|
*
|
|
|
|
* The behaviour of these environments often varies slightly. For example, development sites may have errors dumped to the screen,
|
|
|
|
* and order confirmation emails might be sent to the developer instead of the client.
|
|
|
|
*
|
|
|
|
* To help with this, Sapphire support the notion of an environment type. The environment type can be dev, test, or live.
|
|
|
|
*
|
|
|
|
* You can set it explicitly with Director::set_environment_tpye(). Or you can use {@link Director::set_dev_servers()} and {@link Director::set_test_servers()}
|
|
|
|
* to set it implicitly, based on the value of $_SERVER['HTTP_HOST']. If the HTTP_HOST value is one of the servers listed, then
|
|
|
|
* the environment type will be test or dev. Otherwise, the environment type will be live.
|
|
|
|
*
|
|
|
|
* Dev mode can also be forced by putting ?isDev=1 in your URL, which will ask you to log in and then push the site into dev
|
|
|
|
* mode for the remainder of the session. Putting ?isDev=0 onto the URL can turn it back.
|
|
|
|
* Generally speaking, these methods will be called from your _config.php file.
|
|
|
|
*
|
|
|
|
* Once the environment type is set, it can be checked with {@link Director::isDev()}, {@link Director::isTest()}, and
|
|
|
|
* {@link Director::isLive()}.
|
|
|
|
*
|
|
|
|
* @param $et string The environment type: dev, test, or live.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function set_environment_type($et) {
|
|
|
|
if($et != 'dev' && $et != 'test' && $et != 'live') {
|
|
|
|
user_error("Director::set_environment_type passed '$et'. It should be passed dev, test, or live");
|
|
|
|
} else {
|
|
|
|
self::$environment_type = $et;
|
|
|
|
}
|
|
|
|
}
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
/**
|
|
|
|
* Specify HTTP_HOST values that are development environments.
|
|
|
|
* For information about environment types, see {@link Director::set_environment_type()}.
|
|
|
|
* @param $servers array An array of HTTP_HOST values that should be treated as development environments.
|
|
|
|
*/
|
|
|
|
static function set_dev_servers($servers) {
|
|
|
|
Director::$dev_servers = $servers;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specify HTTP_HOST values that are test environments.
|
|
|
|
* For information about environment types, see {@link Director::set_environment_type()}.
|
|
|
|
* @param $servers array An array of HTTP_HOST values that should be treated as test environments.
|
|
|
|
*/
|
|
|
|
static function set_test_servers($servers) {
|
|
|
|
Director::$test_servers = $servers;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function will return true if the site is in a live environment.
|
|
|
|
* For information about environment types, see {@link Director::set_environment_type()}.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function isLive() {
|
|
|
|
return !(Director::isDev() || Director::isTest());
|
|
|
|
}
|
2007-11-10 06:17:30 +01:00
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
/**
|
|
|
|
* This function will return true if the site is in a development environment.
|
|
|
|
* For information about environment types, see {@link Director::set_environment_type()}.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function isDev() {
|
|
|
|
if(self::$environment_type) return self::$environment_type == 'dev';
|
2007-09-14 19:47:45 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Use ?isDev=1 to get development access on the live server
|
|
|
|
if(isset($_GET['isDev'])) {
|
|
|
|
if(ClassInfo::ready()) {
|
|
|
|
BasicAuth::requireLogin("SilverStripe developer access. Use your CMS login", "ADMIN");
|
|
|
|
$_SESSION['isDev'] = $_GET['isDev'];
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2007-11-04 22:15:41 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if(isset($_SESSION['isDev']) && $_SESSION['isDev']) return true;
|
2007-09-27 23:50:10 +02:00
|
|
|
|
|
|
|
// Check if we are running on one of the development servers
|
2007-11-04 22:15:41 +01:00
|
|
|
if(in_array($_SERVER['HTTP_HOST'], Director::$dev_servers)) {
|
2007-09-27 23:50:10 +02:00
|
|
|
return true;
|
|
|
|
}
|
2008-04-26 08:55:11 +02:00
|
|
|
/*
|
2007-09-27 23:50:10 +02:00
|
|
|
// Check if we are running on one of the test servers
|
2007-11-04 22:15:41 +01:00
|
|
|
if(in_array($_SERVER['HTTP_HOST'], Director::$test_servers)) {
|
2007-09-27 23:50:10 +02:00
|
|
|
return true;
|
|
|
|
}
|
2008-04-26 08:55:11 +02:00
|
|
|
*/
|
2007-09-27 23:50:10 +02:00
|
|
|
|
|
|
|
return false;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-09-27 23:50:10 +02:00
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
/**
|
|
|
|
* This function will return true if the site is in a test environment.
|
|
|
|
* For information about environment types, see {@link Director::set_environment_type()}.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function isTest() {
|
2007-09-27 23:50:10 +02:00
|
|
|
if(self::$environment_type) {
|
|
|
|
return self::$environment_type == 'test';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we are running on one of the test servers
|
2007-11-04 22:15:41 +01:00
|
|
|
if(in_array($_SERVER['HTTP_HOST'], Director::$test_servers)) {
|
2007-09-27 23:50:10 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-02-25 03:10:37 +01:00
|
|
|
* @deprecated use isDev() instead
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2008-02-25 03:10:37 +01:00
|
|
|
function isDevMode() {
|
|
|
|
user_error('Director::isDevMode() is deprecated. Use Director::isDev() instead.', E_USER_NOTICE);
|
|
|
|
return self::isDev();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated use isTest() instead
|
|
|
|
*/
|
|
|
|
function isTestMode() {
|
|
|
|
user_error('Director::isTestMode() is deprecated. Use Director::isTest() instead.', E_USER_NOTICE);
|
|
|
|
return self::isTest();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated use isLive() instead
|
|
|
|
*/
|
|
|
|
function isLiveMode() {
|
|
|
|
user_error('Director::isLiveMode() is deprecated. Use Director::isLive() instead.', E_USER_NOTICE);
|
|
|
|
return self::isLive();
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-11-12 02:47:48 +01:00
|
|
|
?>
|