HTML escape parameter 'text' of hook 'SkinEditSectionLinks'
[lhc/web/wiklou.git] / includes / api / ApiQueryAllRevisions.php
1 <?php
2 /**
3 * Copyright © 2015 Wikimedia Foundation and contributors
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 use MediaWiki\MediaWikiServices;
24 use MediaWiki\Revision\RevisionRecord;
25
26 /**
27 * Query module to enumerate all revisions.
28 *
29 * @ingroup API
30 * @since 1.27
31 */
32 class ApiQueryAllRevisions extends ApiQueryRevisionsBase {
33
34 public function __construct( ApiQuery $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'arv' );
36 }
37
38 /**
39 * @param ApiPageSet|null $resultPageSet
40 * @return void
41 */
42 protected function run( ApiPageSet $resultPageSet = null ) {
43 global $wgActorTableSchemaMigrationStage;
44
45 $db = $this->getDB();
46 $params = $this->extractRequestParams( false );
47 $revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
48
49 $result = $this->getResult();
50
51 $this->requireMaxOneParameter( $params, 'user', 'excludeuser' );
52
53 $tsField = 'rev_timestamp';
54 $idField = 'rev_id';
55 $pageField = 'rev_page';
56 if ( $params['user'] !== null &&
57 ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_READ_NEW )
58 ) {
59 // The query is probably best done using the actor_timestamp index on
60 // revision_actor_temp. Use the denormalized fields from that table.
61 $tsField = 'revactor_timestamp';
62 $idField = 'revactor_rev';
63 $pageField = 'revactor_page';
64 }
65
66 // Namespace check is likely to be desired, but can't be done
67 // efficiently in SQL.
68 $miser_ns = null;
69 $needPageTable = false;
70 if ( $params['namespace'] !== null ) {
71 $params['namespace'] = array_unique( $params['namespace'] );
72 sort( $params['namespace'] );
73 if ( $params['namespace'] != MWNamespace::getValidNamespaces() ) {
74 $needPageTable = true;
75 if ( $this->getConfig()->get( 'MiserMode' ) ) {
76 $miser_ns = $params['namespace'];
77 } else {
78 $this->addWhere( [ 'page_namespace' => $params['namespace'] ] );
79 }
80 }
81 }
82
83 if ( $resultPageSet === null ) {
84 $this->parseParameters( $params );
85 $revQuery = $revisionStore->getQueryInfo( [ 'page' ] );
86 } else {
87 $this->limit = $this->getParameter( 'limit' ) ?: 10;
88 $revQuery = [
89 'tables' => [ 'revision' ],
90 'fields' => [ 'rev_timestamp', 'rev_id' ],
91 'joins' => [],
92 ];
93
94 if ( $params['generatetitles'] ) {
95 $revQuery['fields'][] = 'rev_page';
96 }
97
98 if ( $params['user'] !== null || $params['excludeuser'] !== null ) {
99 $actorQuery = ActorMigration::newMigration()->getJoin( 'rev_user' );
100 $revQuery['tables'] += $actorQuery['tables'];
101 $revQuery['joins'] += $actorQuery['joins'];
102 }
103
104 if ( $needPageTable ) {
105 $revQuery['tables'][] = 'page';
106 $revQuery['joins']['page'] = [ 'JOIN', [ "$pageField = page_id" ] ];
107 if ( (bool)$miser_ns ) {
108 $revQuery['fields'][] = 'page_namespace';
109 }
110 }
111 }
112
113 // If we're going to be using actor_timestamp, we need to swap the order of `revision`
114 // and `revision_actor_temp` in the query (for the straight join) and adjust some field aliases.
115 if ( $idField !== 'rev_id' && isset( $revQuery['tables']['temp_rev_user'] ) ) {
116 $aliasFields = [ 'rev_id' => $idField, 'rev_timestamp' => $tsField, 'rev_page' => $pageField ];
117 $revQuery['fields'] = array_merge(
118 $aliasFields,
119 array_diff( $revQuery['fields'], array_keys( $aliasFields ) )
120 );
121 unset( $revQuery['tables']['temp_rev_user'] );
122 $revQuery['tables'] = array_merge(
123 [ 'temp_rev_user' => 'revision_actor_temp' ],
124 $revQuery['tables']
125 );
126 $revQuery['joins']['revision'] = $revQuery['joins']['temp_rev_user'];
127 unset( $revQuery['joins']['temp_rev_user'] );
128 }
129
130 $this->addTables( $revQuery['tables'] );
131 $this->addFields( $revQuery['fields'] );
132 $this->addJoinConds( $revQuery['joins'] );
133
134 // Seems to be needed to avoid a planner bug (T113901)
135 $this->addOption( 'STRAIGHT_JOIN' );
136
137 $dir = $params['dir'];
138 $this->addTimestampWhereRange( $tsField, $dir, $params['start'], $params['end'] );
139
140 if ( $this->fld_tags ) {
141 $this->addFields( [ 'ts_tags' => ChangeTags::makeTagSummarySubquery( 'revision' ) ] );
142 }
143
144 if ( $params['user'] !== null ) {
145 $actorQuery = ActorMigration::newMigration()
146 ->getWhere( $db, 'rev_user', User::newFromName( $params['user'], false ) );
147 $this->addWhere( $actorQuery['conds'] );
148 } elseif ( $params['excludeuser'] !== null ) {
149 $actorQuery = ActorMigration::newMigration()
150 ->getWhere( $db, 'rev_user', User::newFromName( $params['excludeuser'], false ) );
151 $this->addWhere( 'NOT(' . $actorQuery['conds'] . ')' );
152 }
153
154 if ( $params['user'] !== null || $params['excludeuser'] !== null ) {
155 // Paranoia: avoid brute force searches (T19342)
156 if ( !$this->getUser()->isAllowed( 'deletedhistory' ) ) {
157 $bitmask = RevisionRecord::DELETED_USER;
158 } elseif ( !$this->getUser()->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
159 $bitmask = RevisionRecord::DELETED_USER | RevisionRecord::DELETED_RESTRICTED;
160 } else {
161 $bitmask = 0;
162 }
163 if ( $bitmask ) {
164 $this->addWhere( $db->bitAnd( 'rev_deleted', $bitmask ) . " != $bitmask" );
165 }
166 }
167
168 if ( $params['continue'] !== null ) {
169 $op = ( $dir == 'newer' ? '>' : '<' );
170 $cont = explode( '|', $params['continue'] );
171 $this->dieContinueUsageIf( count( $cont ) != 2 );
172 $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
173 $rev_id = (int)$cont[1];
174 $this->dieContinueUsageIf( strval( $rev_id ) !== $cont[1] );
175 $this->addWhere( "$tsField $op $ts OR " .
176 "($tsField = $ts AND " .
177 "$idField $op= $rev_id)" );
178 }
179
180 $this->addOption( 'LIMIT', $this->limit + 1 );
181
182 $sort = ( $dir == 'newer' ? '' : ' DESC' );
183 $orderby = [];
184 // Targeting index rev_timestamp, user_timestamp, usertext_timestamp, or actor_timestamp.
185 // But 'user' is always constant for the latter three, so it doesn't matter here.
186 $orderby[] = "rev_timestamp $sort";
187 $orderby[] = "rev_id $sort";
188 $this->addOption( 'ORDER BY', $orderby );
189
190 $hookData = [];
191 $res = $this->select( __METHOD__, [], $hookData );
192 $pageMap = []; // Maps rev_page to array index
193 $count = 0;
194 $nextIndex = 0;
195 $generated = [];
196 foreach ( $res as $row ) {
197 if ( $count === 0 && $resultPageSet !== null ) {
198 // Set the non-continue since the list of all revisions is
199 // prone to having entries added at the start frequently.
200 $this->getContinuationManager()->addGeneratorNonContinueParam(
201 $this, 'continue', "$row->rev_timestamp|$row->rev_id"
202 );
203 }
204 if ( ++$count > $this->limit ) {
205 // We've had enough
206 $this->setContinueEnumParameter( 'continue', "$row->rev_timestamp|$row->rev_id" );
207 break;
208 }
209
210 // Miser mode namespace check
211 if ( $miser_ns !== null && !in_array( $row->page_namespace, $miser_ns ) ) {
212 continue;
213 }
214
215 if ( $resultPageSet !== null ) {
216 if ( $params['generatetitles'] ) {
217 $generated[$row->rev_page] = $row->rev_page;
218 } else {
219 $generated[] = $row->rev_id;
220 }
221 } else {
222 $revision = $revisionStore->newRevisionFromRow( $row );
223 $rev = $this->extractRevisionInfo( $revision, $row );
224
225 if ( !isset( $pageMap[$row->rev_page] ) ) {
226 $index = $nextIndex++;
227 $pageMap[$row->rev_page] = $index;
228 $title = Title::newFromLinkTarget( $revision->getPageAsLinkTarget() );
229 $a = [
230 'pageid' => $title->getArticleID(),
231 'revisions' => [ $rev ],
232 ];
233 ApiResult::setIndexedTagName( $a['revisions'], 'rev' );
234 ApiQueryBase::addTitleInfo( $a, $title );
235 $fit = $this->processRow( $row, $a['revisions'][0], $hookData ) &&
236 $result->addValue( [ 'query', $this->getModuleName() ], $index, $a );
237 } else {
238 $index = $pageMap[$row->rev_page];
239 $fit = $this->processRow( $row, $rev, $hookData ) &&
240 $result->addValue( [ 'query', $this->getModuleName(), $index, 'revisions' ], null, $rev );
241 }
242 if ( !$fit ) {
243 $this->setContinueEnumParameter( 'continue', "$row->rev_timestamp|$row->rev_id" );
244 break;
245 }
246 }
247 }
248
249 if ( $resultPageSet !== null ) {
250 if ( $params['generatetitles'] ) {
251 $resultPageSet->populateFromPageIDs( $generated );
252 } else {
253 $resultPageSet->populateFromRevisionIDs( $generated );
254 }
255 } else {
256 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'page' );
257 }
258 }
259
260 public function getAllowedParams() {
261 $ret = parent::getAllowedParams() + [
262 'user' => [
263 ApiBase::PARAM_TYPE => 'user',
264 ],
265 'namespace' => [
266 ApiBase::PARAM_ISMULTI => true,
267 ApiBase::PARAM_TYPE => 'namespace',
268 ApiBase::PARAM_DFLT => null,
269 ],
270 'start' => [
271 ApiBase::PARAM_TYPE => 'timestamp',
272 ],
273 'end' => [
274 ApiBase::PARAM_TYPE => 'timestamp',
275 ],
276 'dir' => [
277 ApiBase::PARAM_TYPE => [
278 'newer',
279 'older'
280 ],
281 ApiBase::PARAM_DFLT => 'older',
282 ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
283 ],
284 'excludeuser' => [
285 ApiBase::PARAM_TYPE => 'user',
286 ],
287 'continue' => [
288 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
289 ],
290 'generatetitles' => [
291 ApiBase::PARAM_DFLT => false,
292 ],
293 ];
294
295 if ( $this->getConfig()->get( 'MiserMode' ) ) {
296 $ret['namespace'][ApiBase::PARAM_HELP_MSG_APPEND] = [
297 'api-help-param-limited-in-miser-mode',
298 ];
299 }
300
301 return $ret;
302 }
303
304 protected function getExamplesMessages() {
305 return [
306 'action=query&list=allrevisions&arvuser=Example&arvlimit=50'
307 => 'apihelp-query+allrevisions-example-user',
308 'action=query&list=allrevisions&arvdir=newer&arvlimit=50'
309 => 'apihelp-query+allrevisions-example-ns-main',
310 ];
311 }
312
313 public function getHelpUrls() {
314 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allrevisions';
315 }
316 }