mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
85480142c1
Necessary to have the <get name="db" /> directive working in phpunit.xml definitions, which in turns allows us to use GET parameters to switch the database connection for running automated tests.
88 lines
2.4 KiB
PHP
Executable File
88 lines
2.4 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* File similar to main.php designed for command-line scripts
|
|
*
|
|
* This file lets you execute SilverStripe requests from the command-line. The URL is passed as the first argument to the scripts.
|
|
*
|
|
* @package framework
|
|
* @subpackage core
|
|
*/
|
|
|
|
/**
|
|
* Ensure that people can't access this from a web-server
|
|
*/
|
|
if(isset($_SERVER['HTTP_HOST'])) {
|
|
echo "cli-script.php can't be run from a web request, you have to run it on the command-line.";
|
|
die();
|
|
}
|
|
|
|
/**
|
|
* Identify the cli-script.php file and change to its container directory, so that require_once() works
|
|
*/
|
|
$_SERVER['SCRIPT_FILENAME'] = __FILE__;
|
|
chdir(dirname($_SERVER['SCRIPT_FILENAME']));
|
|
|
|
/**
|
|
* Process arguments and load them into the $_GET and $_REQUEST arrays
|
|
* For example,
|
|
* sake my/url somearg otherarg key=val --otherkey=val third=val&fourth=val
|
|
*
|
|
* Will result int he following get data:
|
|
* args => array('somearg', 'otherarg'),
|
|
* key => val
|
|
* otherkey => val
|
|
* third => val
|
|
* fourth => val
|
|
*/
|
|
if(isset($_SERVER['argv'][2])) {
|
|
$args = array_slice($_SERVER['argv'],2);
|
|
if(!isset($_GET)) $_GET = array();
|
|
if(!isset($_REQUEST)) $_REQUEST = array();
|
|
foreach($args as $arg) {
|
|
if(strpos($arg,'=') == false) {
|
|
$_GET['args'][] = $arg;
|
|
} else {
|
|
$newItems = array();
|
|
parse_str( (substr($arg,0,2) == '--') ? substr($arg,2) : $arg, $newItems );
|
|
$_GET = array_merge($_GET, $newItems);
|
|
}
|
|
}
|
|
$_REQUEST = array_merge($_REQUEST, $_GET);
|
|
}
|
|
|
|
// Set 'url' GET parameter
|
|
if(isset($_SERVER['argv'][1])) {
|
|
$_REQUEST['url'] = $_SERVER['argv'][1];
|
|
$_GET['url'] = $_SERVER['argv'][1];
|
|
}
|
|
|
|
/**
|
|
* Include SilverStripe's core code
|
|
*/
|
|
require_once("core/Core.php");
|
|
|
|
global $databaseConfig;
|
|
|
|
// We don't have a session in cli-script, but this prevents errors
|
|
$_SESSION = null;
|
|
|
|
// Connect to database
|
|
require_once("model/DB.php");
|
|
DB::connect($databaseConfig);
|
|
|
|
// Get the request URL from the querystring arguments
|
|
$url = isset($_SERVER['argv'][1]) ? $_SERVER['argv'][1] : null;
|
|
if(!$url) {
|
|
echo 'Please specify an argument to cli-script.php/sake. For more information, visit http://doc.silverstripe.org/doku.php?id=sake';
|
|
die();
|
|
}
|
|
|
|
$_SERVER['REQUEST_URI'] = BASE_URL . '/' . $url;
|
|
|
|
// Direct away - this is the "main" function, that hands control to the apporopriate controller
|
|
DataModel::set_inst(new DataModel());
|
|
Director::direct($url, DataModel::inst());
|
|
|
|
|