2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2012-03-31 09:09:45 +02:00
|
|
|
|
2008-12-04 23:38:32 +01:00
|
|
|
/************************************************************************************
|
|
|
|
************************************************************************************
|
|
|
|
** **
|
|
|
|
** If you can read this text in your browser then you don't have PHP installed. **
|
2013-10-23 10:10:42 +02:00
|
|
|
** Please install PHP 5.3.3 or higher, preferably PHP 5.3.4+. **
|
2008-12-04 23:38:32 +01:00
|
|
|
** **
|
|
|
|
************************************************************************************
|
|
|
|
************************************************************************************/
|
|
|
|
|
2009-03-22 23:59:14 +01:00
|
|
|
/**
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2009-03-22 23:59:14 +01:00
|
|
|
* @subpackage core
|
|
|
|
*/
|
2009-08-11 05:50:40 +02:00
|
|
|
|
2013-10-23 10:10:42 +02:00
|
|
|
if (version_compare(phpversion(), '5.3.3', '<')) {
|
2008-12-04 23:38:32 +01:00
|
|
|
header("HTTP/1.1 500 Server Error");
|
|
|
|
echo str_replace('$PHPVersion', phpversion(), file_get_contents("dev/install/php5-required.html"));
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2008-01-09 05:18:36 +01:00
|
|
|
* Main file that handles every page request.
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
|
|
|
* The main.php does a number of set-up activities for the request.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
|
|
|
* - Includes the first one of the following files that it finds: (root)/_ss_environment.php,
|
2008-08-11 01:29:30 +02:00
|
|
|
* (root)/../_ss_environment.php, or (root)/../../_ss_environment.php
|
2008-02-25 03:10:37 +01:00
|
|
|
* - Gets an up-to-date manifest from {@link ManifestBuilder}
|
|
|
|
* - Sets up error handlers with {@link Debug::loadErrorHandlers()}
|
2014-08-15 08:53:05 +02:00
|
|
|
* - Calls {@link DB::connect()}, passing it the global variable $databaseConfig that should
|
2009-03-22 23:59:14 +01:00
|
|
|
* be defined in an _config.php
|
2013-03-21 19:48:54 +01:00
|
|
|
* - Sets up the default director rules using {@link Director::$rules}
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
|
|
|
* After that, it calls {@link Director::direct()}, which is responsible for doing most of the
|
2008-08-11 01:29:30 +02:00
|
|
|
* real work.
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
|
|
|
* CONFIGURING THE WEBSERVER
|
|
|
|
*
|
2012-03-24 04:38:57 +01:00
|
|
|
* To use SilverStripe, every request that doesn't point directly to a file should be rewritten to
|
2014-08-15 08:53:05 +02:00
|
|
|
* framework/main.php?url=(url). For example, http://www.example.com/about-us/rss would be rewritten
|
2012-03-24 04:38:57 +01:00
|
|
|
* to http://www.example.com/framework/main.php?url=about-us/rss
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
2014-08-15 08:53:05 +02:00
|
|
|
* It's important that requests that point directly to a file aren't rewritten; otherwise, visitors
|
2008-08-11 01:29:30 +02:00
|
|
|
* won't be able to download any CSS, JS, image files, or other downloads.
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
|
|
|
* On Apache, RewriteEngine can be used to do this.
|
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-02-25 03:10:37 +01:00
|
|
|
* @subpackage core
|
|
|
|
* @see Director::direct()
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
|
2013-07-22 03:52:00 +02:00
|
|
|
/**
|
|
|
|
* Include the defines that set BASE_PATH, etc
|
|
|
|
*/
|
|
|
|
require_once('core/Constants.php');
|
|
|
|
|
2013-07-24 02:09:44 +02:00
|
|
|
// IIS will sometimes generate this.
|
|
|
|
if(!empty($_SERVER['HTTP_X_ORIGINAL_URL'])) {
|
|
|
|
$_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
|
|
|
|
}
|
|
|
|
|
2016-10-16 17:48:41 +02:00
|
|
|
// Enable the entity loader to be able to load XML in Zend_Locale_Data
|
|
|
|
libxml_disable_entity_loader(false);
|
|
|
|
|
2013-07-22 03:52:00 +02:00
|
|
|
/**
|
|
|
|
* Figure out the request URL
|
|
|
|
*/
|
|
|
|
global $url;
|
|
|
|
|
2015-01-01 00:01:01 +01:00
|
|
|
// Helper to safely parse and load a querystring fragment
|
|
|
|
$parseQuery = function($query) {
|
|
|
|
parse_str($query, $_GET);
|
|
|
|
if ($_GET) $_REQUEST = array_merge((array)$_REQUEST, (array)$_GET);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Apache rewrite rules and IIS use this
|
|
|
|
if (isset($_GET['url']) && php_sapi_name() !== 'cli-server') {
|
|
|
|
|
|
|
|
// Prevent injection of url= querystring argument by prioritising any leading url argument
|
|
|
|
if(isset($_SERVER['QUERY_STRING']) &&
|
|
|
|
preg_match('/^(?<url>url=[^&?]*)(?<query>.*[&?]url=.*)$/', $_SERVER['QUERY_STRING'], $results)
|
|
|
|
) {
|
|
|
|
$queryString = $results['query'].'&'.$results['url'];
|
|
|
|
$parseQuery($queryString);
|
2013-07-24 02:09:44 +02:00
|
|
|
}
|
|
|
|
|
2013-07-22 03:52:00 +02:00
|
|
|
$url = $_GET['url'];
|
2015-01-01 00:01:01 +01:00
|
|
|
|
2013-07-22 03:52:00 +02:00
|
|
|
// IIS includes get variables in url
|
|
|
|
$i = strpos($url, '?');
|
|
|
|
if($i !== false) {
|
|
|
|
$url = substr($url, 0, $i);
|
|
|
|
}
|
|
|
|
|
2015-01-01 00:01:01 +01:00
|
|
|
// Lighttpd and PHP 5.4's built-in webserver use this
|
2013-07-22 03:52:00 +02:00
|
|
|
} else {
|
2016-04-01 20:44:29 +02:00
|
|
|
// Get raw URL -- still needs to be decoded below (after parsing out query string).
|
2015-01-01 00:01:01 +01:00
|
|
|
$url = $_SERVER['REQUEST_URI'];
|
|
|
|
|
|
|
|
// Querystring args need to be explicitly parsed
|
|
|
|
if(strpos($url,'?') !== false) {
|
|
|
|
list($url, $query) = explode('?',$url,2);
|
|
|
|
$parseQuery($query);
|
|
|
|
}
|
|
|
|
|
2016-04-01 20:44:29 +02:00
|
|
|
// Decode URL now that it has been separated from query string.
|
|
|
|
$url = urldecode($url);
|
|
|
|
|
2015-01-01 00:01:01 +01:00
|
|
|
// Pass back to the webserver for files that exist
|
|
|
|
if(php_sapi_name() === 'cli-server' && file_exists(BASE_PATH . $url) && is_file(BASE_PATH . $url)) {
|
|
|
|
return false;
|
2013-07-22 03:52:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove base folders from the URL if webroot is hosted in a subfolder
|
|
|
|
if (substr(strtolower($url), 0, strlen(BASE_URL)) == strtolower(BASE_URL)) $url = substr($url, strlen(BASE_URL));
|
2008-02-25 03:10:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-03-24 04:38:57 +01:00
|
|
|
* Include SilverStripe's core code
|
2008-02-25 03:10:37 +01:00
|
|
|
*/
|
2013-07-18 07:09:21 +02:00
|
|
|
require_once('core/startup/ErrorControlChain.php');
|
|
|
|
require_once('core/startup/ParameterConfirmationToken.php');
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2014-07-01 09:07:13 +02:00
|
|
|
// Prepare tokens and execute chain
|
|
|
|
$reloadToken = ParameterConfirmationToken::prepare_tokens(array('isTest', 'isDev', 'flush'));
|
2013-07-18 07:09:21 +02:00
|
|
|
$chain = new ErrorControlChain();
|
|
|
|
$chain
|
2014-07-01 09:07:13 +02:00
|
|
|
->then(function($chain) use ($reloadToken) {
|
|
|
|
// If no redirection is necessary then we can disable error supression
|
|
|
|
if (!$reloadToken) $chain->setSuppression(false);
|
2007-10-02 06:59:06 +02:00
|
|
|
|
2013-07-22 03:52:00 +02:00
|
|
|
// Load in core
|
|
|
|
require_once('core/Core.php');
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2013-07-22 03:52:00 +02:00
|
|
|
// Connect to database
|
2013-07-18 07:09:21 +02:00
|
|
|
require_once('model/DB.php');
|
|
|
|
global $databaseConfig;
|
|
|
|
if ($databaseConfig) DB::connect($databaseConfig);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-07-01 09:07:13 +02:00
|
|
|
// Check if a token is requesting a redirect
|
|
|
|
if (!$reloadToken) return;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-07-01 09:07:13 +02:00
|
|
|
// Otherwise, we start up the session if needed
|
|
|
|
if(!isset($_SESSION) && Session::request_contains_session_id()) {
|
|
|
|
Session::start();
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-07-01 09:07:13 +02:00
|
|
|
// Next, check if we're in dev mode, or the database doesn't have any security data, or we are admin
|
|
|
|
if (Director::isDev() || !Security::database_is_ready() || Permission::check('ADMIN')) {
|
|
|
|
return $reloadToken->reloadWithToken();
|
2013-07-18 07:09:21 +02:00
|
|
|
}
|
2014-07-01 09:07:13 +02:00
|
|
|
|
|
|
|
// Fail and redirect the user to the login page
|
|
|
|
$loginPage = Director::absoluteURL(Config::inst()->get('Security', 'login_url'));
|
|
|
|
$loginPage .= "?BackURL=" . urlencode($_SERVER['REQUEST_URI']);
|
|
|
|
header('location: '.$loginPage, true, 302);
|
|
|
|
die;
|
2013-07-18 07:09:21 +02:00
|
|
|
})
|
2014-07-01 09:07:13 +02:00
|
|
|
// Finally if a token was requested but there was an error while figuring out if it's allowed, do it anyway
|
|
|
|
->thenIfErrored(function() use ($reloadToken){
|
|
|
|
if ($reloadToken) {
|
|
|
|
$reloadToken->reloadWithToken();
|
2013-07-18 07:09:21 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
->execute();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2012-09-21 09:56:56 +02:00
|
|
|
global $databaseConfig;
|
|
|
|
|
2008-11-18 02:48:37 +01:00
|
|
|
// Redirect to the installer if no database is selected
|
|
|
|
if(!isset($databaseConfig) || !isset($databaseConfig['database']) || !$databaseConfig['database']) {
|
2011-10-28 23:31:58 +02:00
|
|
|
if(!file_exists(BASE_PATH . '/install.php')) {
|
2014-08-18 10:12:26 +02:00
|
|
|
header($_SERVER['SERVER_PROTOCOL'] . " 500 Server Error");
|
2011-10-28 23:31:58 +02:00
|
|
|
die('SilverStripe Framework requires a $databaseConfig defined.');
|
|
|
|
}
|
2009-01-05 07:19:48 +01:00
|
|
|
$s = (isset($_SERVER['SSL']) || (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off')) ? 's' : '';
|
2010-04-14 05:47:37 +02:00
|
|
|
$installURL = "http$s://" . $_SERVER['HTTP_HOST'] . BASE_URL . '/install.php';
|
2013-07-18 07:09:21 +02:00
|
|
|
|
2010-04-14 05:46:40 +02:00
|
|
|
// The above dirname() will equate to "\" on Windows when installing directly from http://localhost (not using
|
|
|
|
// a sub-directory), this really messes things up in some browsers. Let's get rid of the backslashes
|
|
|
|
$installURL = str_replace('\\', '', $installURL);
|
2013-07-18 07:09:21 +02:00
|
|
|
|
2008-11-18 02:48:37 +01:00
|
|
|
header("Location: $installURL");
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Direct away - this is the "main" function, that hands control to the appropriate controller
|
2011-05-01 07:33:02 +02:00
|
|
|
DataModel::set_inst(new DataModel());
|
2012-09-11 01:49:42 +02:00
|
|
|
Director::direct($url, DataModel::inst());
|