6 * Created on Monday, January 28, 2008
8 * Copyright © 2008 Brent Garber
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
29 * Query module to get list of random pages
34 class ApiQueryRandom
extends ApiQueryGeneratorBase
{
38 public function __construct( $query, $moduleName ) {
39 parent
::__construct( $query, $moduleName, 'rn' );
42 public function execute() {
46 public function executeGenerator( $resultPageSet ) {
47 $this->run( $resultPageSet );
54 * @param $resultPageSet ApiPageSet
58 protected function prepareQuery( $randstr, $limit, $namespace, &$resultPageSet, $redirect ) {
59 $this->resetQueryParams();
60 $this->addTables( 'page' );
61 $this->addOption( 'LIMIT', $limit );
62 $this->addWhereFld( 'page_namespace', $namespace );
63 $this->addWhereRange( 'page_random', 'newer', $randstr, null );
64 $this->addWhereFld( 'page_is_redirect', $redirect );
65 $this->addOption( 'USE INDEX', 'page_random' );
66 if ( is_null( $resultPageSet ) ) {
67 $this->addFields( array( 'page_id', 'page_title', 'page_namespace' ) );
69 $this->addFields( $resultPageSet->getPageTableFields() );
74 * @param $resultPageSet ApiPageSet
77 protected function runQuery( $resultPageSet = null ) {
78 $res = $this->select( __METHOD__
);
80 foreach ( $res as $row ) {
82 if ( is_null( $resultPageSet ) ) {
84 if ( !in_array( $row->page_id
, $this->pageIDs
) ) {
85 $fit = $this->getResult()->addValue(
86 array( 'query', $this->getModuleName() ),
87 null, $this->extractRowInfo( $row ) );
89 // We can't really query-continue a random list.
90 // Return an insanely high value so
91 // $count < $limit is false
94 $this->pageIDs
[] = $row->page_id
;
97 $resultPageSet->processDbRow( $row );
105 * @param $resultPageSet ApiPageSet
108 public function run( $resultPageSet = null ) {
109 $params = $this->extractRequestParams();
110 $result = $this->getResult();
111 $this->pageIDs
= array();
113 $this->prepareQuery( wfRandom(), $params['limit'], $params['namespace'], $resultPageSet, $params['redirect'] );
114 $count = $this->runQuery( $resultPageSet );
115 if ( $count < $params['limit'] ) {
116 /* We got too few pages, we probably picked a high value
117 * for page_random. We'll just take the lowest ones, see
118 * also the comment in Title::getRandomTitle()
120 $this->prepareQuery( 0, $params['limit'] - $count, $params['namespace'], $resultPageSet, $params['redirect'] );
121 $this->runQuery( $resultPageSet );
124 if ( is_null( $resultPageSet ) ) {
125 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'page' );
129 private function extractRowInfo( $row ) {
130 $title = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
132 $vals['id'] = intval( $row->page_id
);
133 ApiQueryBase
::addTitleInfo( $vals, $title );
137 public function getCacheMode( $params ) {
141 public function getAllowedParams() {
143 'namespace' => array(
144 ApiBase
::PARAM_TYPE
=> 'namespace',
145 ApiBase
::PARAM_ISMULTI
=> true
148 ApiBase
::PARAM_TYPE
=> 'limit',
149 ApiBase
::PARAM_DFLT
=> 1,
150 ApiBase
::PARAM_MIN
=> 1,
151 ApiBase
::PARAM_MAX
=> 10,
152 ApiBase
::PARAM_MAX2
=> 20
158 public function getParamDescription() {
160 'namespace' => 'Return pages in these namespaces only',
161 'limit' => 'Limit how many random pages will be returned',
162 'redirect' => 'Load a random redirect instead of a random page'
166 public function getResultProperties() {
176 public function getDescription() {
178 'Get a set of random pages',
179 'NOTE: Pages are listed in a fixed sequence, only the starting point is random. This means that if, for example, "Main Page" is the first ',
180 ' random page on your list, "List of fictional monkeys" will *always* be second, "List of people on stamps of Vanuatu" third, etc',
181 'NOTE: If the number of pages in the namespace is lower than rnlimit, you will get fewer pages. You will not get the same page twice'
185 public function getExamples() {
186 return 'api.php?action=query&list=random&rnnamespace=0&rnlimit=2';
189 public function getHelpUrls() {
190 return 'https://www.mediawiki.org/wiki/API:Random';