3 * Implements Special:Randompage
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
22 * @author Rob Church <robchur@gmail.com>, Ilmari Karonen
26 * Special page to direct the user to a random page
28 * @ingroup SpecialPage
30 class RandomPage
extends SpecialPage
{
31 private $namespaces; // namespaces to select pages from
32 protected $isRedir = false; // should the result be a redirect?
33 protected $extra = array(); // Extra SQL statements
35 public function __construct( $name = 'Randompage' ) {
36 $this->namespaces
= MWNamespace
::getContentNamespaces();
37 parent
::__construct( $name );
40 public function getNamespaces() {
41 return $this->namespaces
;
44 public function setNamespace( $ns ) {
45 if ( !$ns ||
$ns < NS_MAIN
) {
48 $this->namespaces
= array( $ns );
51 // select redirects instead of normal pages?
52 public function isRedirect() {
53 return $this->isRedir
;
56 public function execute( $par ) {
60 $this->setNamespace( $wgContLang->getNsIndex( $par ) );
63 $title = $this->getRandomTitle();
65 if ( is_null( $title ) ) {
67 $this->getOutput()->addWikiMsg( strtolower( $this->getName() ) . '-nopages',
68 $this->getNsList(), count( $this->namespaces
) );
72 $redirectParam = $this->isRedirect() ?
array( 'redirect' => 'no' ) : array();
73 $query = array_merge( $this->getRequest()->getValues(), $redirectParam );
74 unset( $query['title'] );
75 $this->getOutput()->redirect( $title->getFullURL( $query ) );
79 * Get a comma-delimited list of namespaces we don't have
83 private function getNsList() {
86 foreach ( $this->namespaces
as $n ) {
87 if ( $n === NS_MAIN
) {
88 $nsNames[] = $this->msg( 'blanknamespace' )->plain();
90 $nsNames[] = $wgContLang->getNsText( $n );
93 return $wgContLang->commaList( $nsNames );
97 * Choose a random title.
98 * @return Title object (or null if nothing to choose from)
100 public function getRandomTitle() {
101 $randstr = wfRandom();
103 if ( !wfRunHooks( 'SpecialRandomGetRandomTitle', array( &$randstr, &$this->isRedir
, &$this->namespaces
,
104 &$this->extra
, &$title ) ) ) {
107 $row = $this->selectRandomPageFromDB( $randstr );
109 /* If we picked a value that was higher than any in
110 * the DB, wrap around and select the page with the
111 * lowest value instead! One might think this would
112 * skew the distribution, but in fact it won't cause
113 * any more bias than what the page_random scheme
114 * causes anyway. Trust me, I'm a mathematician. :)
117 $row = $this->selectRandomPageFromDB( "0" );
121 return Title
::makeTitleSafe( $row->page_namespace
, $row->page_title
);
127 protected function getQueryInfo( $randstr ) {
128 $redirect = $this->isRedirect() ?
1 : 0;
131 'tables' => array( 'page' ),
132 'fields' => array( 'page_title', 'page_namespace' ),
133 'conds' => array_merge( array(
134 'page_namespace' => $this->namespaces
,
135 'page_is_redirect' => $redirect,
136 'page_random >= ' . $randstr
139 'ORDER BY' => 'page_random',
140 'USE INDEX' => 'page_random',
143 'join_conds' => array()
147 private function selectRandomPageFromDB( $randstr, $fname = __METHOD__
) {
148 $dbr = wfGetDB( DB_SLAVE
);
150 $query = $this->getQueryInfo( $randstr );
160 return $dbr->fetchObject( $res );
163 protected function getGroupName() {