* Convert "$dbw =& wfGetDB( DB_MASTER );" --> "$dbw = wfGetDB( DB_MASTER );" * convert "$skin =& $wgUser->getSkin();" --> "$skin = $wgUser->getSkin();" For the time being have not changed the function definitions of wfGetDB() or User::getSkin() [i.e. they are still both return-by-ref], so as to ensure the interface does not change for extensions [some of which may still be trying to run on PHP4 environments]. However presumably at some point this can be changed too. Also includes tiny tweak to newlines in parserTests - will show 1 rather than 2 newlines between the "Reading tests from" strings when in quiet mode.
57 lines
1.7 KiB
PHP
57 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* @addtogroup SpecialPage
|
|
*/
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param $par The namespace to get a random page from (default NS_MAIN),
|
|
* used as e.g. Special:Randompage/Category
|
|
*/
|
|
function wfSpecialRandompage( $par = NS_MAIN ) {
|
|
global $wgOut, $wgExtraRandompageSQL;
|
|
$fname = 'wfSpecialRandompage';
|
|
|
|
# Determine namespace
|
|
$t = Title::newFromText ( $par . ":Dummy" ) ;
|
|
$namespace = $t->getNamespace () ;
|
|
|
|
# NOTE! We use a literal constant in the SQL instead of the RAND()
|
|
# function because RAND() will return a different value for every row
|
|
# in the table. That's both very slow and returns results heavily
|
|
# biased towards low values, as rows later in the table will likely
|
|
# never be reached for comparison.
|
|
#
|
|
# Using a literal constant means the whole thing gets optimized on
|
|
# the index, and the comparison is both fast and fair.
|
|
|
|
# interpolation and sprintf() can muck up with locale-specific decimal separator
|
|
$randstr = wfRandom();
|
|
|
|
$db = wfGetDB( DB_SLAVE );
|
|
$use_index = $db->useIndexClause( 'page_random' );
|
|
$page = $db->tableName( 'page' );
|
|
|
|
$extra = $wgExtraRandompageSQL ? "AND ($wgExtraRandompageSQL)" : '';
|
|
$sql = "SELECT page_id,page_title
|
|
FROM $page $use_index
|
|
WHERE page_namespace=$namespace AND page_is_redirect=0 $extra
|
|
AND page_random>$randstr
|
|
ORDER BY page_random";
|
|
$sql = $db->limitResult($sql, 1, 0);
|
|
$res = $db->query( $sql, $fname );
|
|
|
|
$title = null;
|
|
if( $s = $db->fetchObject( $res ) ) {
|
|
$title =& Title::makeTitle( $namespace, $s->page_title );
|
|
}
|
|
if( is_null( $title ) ) {
|
|
# That's not supposed to happen :)
|
|
$title = Title::newMainPage();
|
|
}
|
|
$wgOut->reportTime(); # for logfile
|
|
$wgOut->redirect( $title->getFullUrl() );
|
|
}
|
|
|
|
?>
|