Merge "Add tests for WikiMap and WikiReference"
[lhc/web/wiklou.git] / includes / api / ApiQueryRandom.php
1 <?php
2
3 /**
4 *
5 *
6 * Created on Monday, January 28, 2008
7 *
8 * Copyright © 2008 Brent Garber
9 *
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.
14 *
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.
19 *
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
24 *
25 * @file
26 */
27
28 /**
29 * Query module to get list of random pages
30 *
31 * @ingroup API
32 */
33 class ApiQueryRandom extends ApiQueryGeneratorBase {
34 public function __construct( ApiQuery $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'rn' );
36 }
37
38 public function execute() {
39 $this->run();
40 }
41
42 public function executeGenerator( $resultPageSet ) {
43 $this->run( $resultPageSet );
44 }
45
46 /**
47 * Actually perform the query and add pages to the result.
48 * @param ApiPageSet|null $resultPageSet
49 * @param int $limit Number of pages to fetch
50 * @param string|null $start Starting page_random
51 * @param int|null $startId Starting page_id
52 * @param string|null $end Ending page_random
53 * @return array (int, string|null) Number of pages left to query and continuation string
54 */
55 protected function runQuery( $resultPageSet, $limit, $start, $startId, $end ) {
56 $params = $this->extractRequestParams();
57
58 $this->resetQueryParams();
59 $this->addTables( 'page' );
60 $this->addFields( array( 'page_id', 'page_random' ) );
61 if ( is_null( $resultPageSet ) ) {
62 $this->addFields( array( 'page_title', 'page_namespace' ) );
63 } else {
64 $this->addFields( $resultPageSet->getPageTableFields() );
65 }
66 $this->addWhereFld( 'page_namespace', $params['namespace'] );
67 if ( $params['redirect'] || $params['filterredir'] === 'redirects' ) {
68 $this->addWhereFld( 'page_is_redirect', 1 );
69 } elseif ( $params['filterredir'] === 'nonredirects' ) {
70 $this->addWhereFld( 'page_is_redirect', 0 );
71 } elseif ( is_null( $resultPageSet ) ) {
72 $this->addFields( array( 'page_is_redirect' ) );
73 }
74 $this->addOption( 'LIMIT', $limit + 1 );
75
76 if ( $start !== null ) {
77 $start = $this->getDB()->addQuotes( $start );
78 if ( $startId !== null ) {
79 $startId = (int)$startId;
80 $this->addWhere( "page_random = $start AND page_id >= $startId OR page_random > $start" );
81 } else {
82 $this->addWhere( "page_random >= $start" );
83 }
84 }
85 if ( $end !== null ) {
86 $this->addWhere( 'page_random < ' . $this->getDB()->addQuotes( $end ) );
87 }
88 $this->addOption( 'ORDER BY', array( 'page_random', 'page_id' ) );
89
90 $result = $this->getResult();
91 $path = array( 'query', $this->getModuleName() );
92
93 $res = $this->select( __METHOD__ );
94 $count = 0;
95 foreach ( $res as $row ) {
96 if ( $count++ >= $limit ) {
97 return array( 0, "{$row->page_random}|{$row->page_id}" );
98 }
99 if ( is_null( $resultPageSet ) ) {
100 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
101 $page = array(
102 'id' => (int)$row->page_id,
103 );
104 ApiQueryBase::addTitleInfo( $page, $title );
105 if ( isset( $row->page_is_redirect ) ) {
106 $page['redirect'] = (bool)$row->page_is_redirect;
107 }
108 $fit = $result->addValue( $path, null, $page );
109 if ( !$fit ) {
110 return array( 0, "{$row->page_random}|{$row->page_id}" );
111 }
112 } else {
113 $resultPageSet->processDbRow( $row );
114 }
115 }
116
117 return array( $limit - $count, null );
118 }
119
120 /**
121 * @param ApiPageSet|null $resultPageSet
122 */
123 public function run( $resultPageSet = null ) {
124 $params = $this->extractRequestParams();
125
126 // Since 'filterredir" will always be set in $params, we have to dig
127 // into the WebRequest to see if it was actually passed.
128 $request = $this->getMain()->getRequest();
129 if ( $request->getCheck( $this->encodeParamName( 'filterredir' ) ) ) {
130 $this->requireMaxOneParameter( $params, 'filterredir', 'redirect' );
131 }
132
133 if ( $params['redirect'] ) {
134 $this->logFeatureUsage( "list=random&rnredirect=" );
135 }
136
137 if ( isset( $params['continue'] ) ) {
138 $cont = explode( '|', $params['continue'] );
139 $this->dieContinueUsageIf( count( $cont ) != 4 );
140 $rand = $cont[0];
141 $start = $cont[1];
142 $startId = (int)$cont[2];
143 $end = $cont[3] ? $rand : null;
144 $this->dieContinueUsageIf( !preg_match( '/^0\.\d+$/', $rand ) );
145 $this->dieContinueUsageIf( !preg_match( '/^0\.\d+$/', $start ) );
146 $this->dieContinueUsageIf( $cont[2] !== (string)$startId );
147 $this->dieContinueUsageIf( $cont[3] !== '0' && $cont[3] !== '1' );
148 } else {
149 $rand = wfRandom();
150 $start = $rand;
151 $startId = null;
152 $end = null;
153 }
154
155 list( $left, $continue ) = $this->runQuery( $resultPageSet, $params['limit'], $start, $startId, $end );
156 if ( $end === null && $continue === null ) {
157 // Wrap around. We do this even if $left === 0 for continuation
158 // (saving a DB query in this rare case probably isn't worth the
159 // added code complexity it would require).
160 $end = $rand;
161 list( $left, $continue ) = $this->runQuery( $resultPageSet, $left, null, null, $end );
162 }
163
164 if ( $continue !== null ) {
165 $endFlag = $end === null ? 0 : 1;
166 $this->setContinueEnumParameter( 'continue', "$rand|$continue|$endFlag" );
167 }
168
169 if ( is_null( $resultPageSet ) ) {
170 $this->getResult()->addIndexedTagName( array( 'query', $this->getModuleName() ), 'page' );
171 }
172 }
173
174 public function getCacheMode( $params ) {
175 return 'public';
176 }
177
178 public function getAllowedParams() {
179 return array(
180 'namespace' => array(
181 ApiBase::PARAM_TYPE => 'namespace',
182 ApiBase::PARAM_ISMULTI => true
183 ),
184 'filterredir' => array(
185 ApiBase::PARAM_TYPE => array( 'all', 'redirects', 'nonredirects' ),
186 ApiBase::PARAM_DFLT => 'nonredirects', // for BC
187 ),
188 'redirect' => array(
189 ApiBase::PARAM_DEPRECATED => true,
190 ApiBase::PARAM_DFLT => false,
191 ),
192 'limit' => array(
193 ApiBase::PARAM_TYPE => 'limit',
194 ApiBase::PARAM_DFLT => 1,
195 ApiBase::PARAM_MIN => 1,
196 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
197 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
198 ),
199 'continue' => array(
200 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue'
201 ),
202 );
203 }
204
205 protected function getExamplesMessages() {
206 return array(
207 'action=query&list=random&rnnamespace=0&rnlimit=2'
208 => 'apihelp-query+random-example-simple',
209 'action=query&generator=random&grnnamespace=0&grnlimit=2&prop=info'
210 => 'apihelp-query+random-example-generator',
211 );
212 }
213
214 public function getHelpUrls() {
215 return 'https://www.mediawiki.org/wiki/API:Random';
216 }
217 }