MediaWiki REL1_31
ApiQueryRevisions.php
Go to the documentation of this file.
1<?php
32
33 private $token = null;
34
35 public function __construct( ApiQuery $query, $moduleName ) {
36 parent::__construct( $query, $moduleName, 'rv' );
37 }
38
40
42 protected function getTokenFunctions() {
43 // tokenname => function
44 // function prototype is func($pageid, $title, $rev)
45 // should return token or false
46
47 // Don't call the hooks twice
48 if ( isset( $this->tokenFunctions ) ) {
50 }
51
52 // If we're in a mode that breaks the same-origin policy, no tokens can
53 // be obtained
54 if ( $this->lacksSameOriginSecurity() ) {
55 return [];
56 }
57
58 $this->tokenFunctions = [
59 'rollback' => [ self::class, 'getRollbackToken' ]
60 ];
61 Hooks::run( 'APIQueryRevisionsTokens', [ &$this->tokenFunctions ] );
62
64 }
65
73 public static function getRollbackToken( $pageid, $title, $rev ) {
75 if ( !$wgUser->isAllowed( 'rollback' ) ) {
76 return false;
77 }
78
79 return $wgUser->getEditToken( 'rollback' );
80 }
81
82 protected function run( ApiPageSet $resultPageSet = null ) {
83 $params = $this->extractRequestParams( false );
84
85 // If any of those parameters are used, work in 'enumeration' mode.
86 // Enum mode can only be used when exactly one page is provided.
87 // Enumerating revisions on multiple pages make it extremely
88 // difficult to manage continuations and require additional SQL indexes
89 $enumRevMode = ( $params['user'] !== null || $params['excludeuser'] !== null ||
90 $params['limit'] !== null || $params['startid'] !== null ||
91 $params['endid'] !== null || $params['dir'] === 'newer' ||
92 $params['start'] !== null || $params['end'] !== null );
93
94 $pageSet = $this->getPageSet();
95 $pageCount = $pageSet->getGoodTitleCount();
96 $revCount = $pageSet->getRevisionCount();
97
98 // Optimization -- nothing to do
99 if ( $revCount === 0 && $pageCount === 0 ) {
100 // Nothing to do
101 return;
102 }
103 if ( $revCount > 0 && count( $pageSet->getLiveRevisionIDs() ) === 0 ) {
104 // We're in revisions mode but all given revisions are deleted
105 return;
106 }
107
108 if ( $revCount > 0 && $enumRevMode ) {
109 $this->dieWithError(
110 [ 'apierror-revisions-nolist', $this->getModulePrefix() ], 'invalidparammix'
111 );
112 }
113
114 if ( $pageCount > 1 && $enumRevMode ) {
115 $this->dieWithError(
116 [ 'apierror-revisions-singlepage', $this->getModulePrefix() ], 'invalidparammix'
117 );
118 }
119
120 // In non-enum mode, rvlimit can't be directly used. Use the maximum
121 // allowed value.
122 if ( !$enumRevMode ) {
123 $this->setParsedLimit = false;
124 $params['limit'] = 'max';
125 }
126
127 $db = $this->getDB();
128
129 if ( $resultPageSet === null ) {
130 $this->parseParameters( $params );
131 $this->token = $params['token'];
132 $opts = [];
133 if ( $this->token !== null || $pageCount > 0 ) {
134 $opts[] = 'page';
135 }
136 if ( $this->fetchContent ) {
137 $opts[] = 'text';
138 }
139 if ( $this->fld_user ) {
140 $opts[] = 'user';
141 }
142 $revQuery = Revision::getQueryInfo( $opts );
143 $this->addTables( $revQuery['tables'] );
144 $this->addFields( $revQuery['fields'] );
145 $this->addJoinConds( $revQuery['joins'] );
146 } else {
147 $this->limit = $this->getParameter( 'limit' ) ?: 10;
148 // Always join 'page' so orphaned revisions are filtered out
149 $this->addTables( [ 'revision', 'page' ] );
150 $this->addJoinConds(
151 [ 'page' => [ 'INNER JOIN', [ 'page_id = rev_page' ] ] ]
152 );
153 $this->addFields( [ 'rev_id', 'rev_timestamp', 'rev_page' ] );
154 }
155
156 if ( $this->fld_tags ) {
157 $this->addTables( 'tag_summary' );
158 $this->addJoinConds(
159 [ 'tag_summary' => [ 'LEFT JOIN', [ 'rev_id=ts_rev_id' ] ] ]
160 );
161 $this->addFields( 'ts_tags' );
162 }
163
164 if ( $params['tag'] !== null ) {
165 $this->addTables( 'change_tag' );
166 $this->addJoinConds(
167 [ 'change_tag' => [ 'INNER JOIN', [ 'rev_id=ct_rev_id' ] ] ]
168 );
169 $this->addWhereFld( 'ct_tag', $params['tag'] );
170 }
171
172 if ( $resultPageSet === null && $this->fetchContent ) {
173 // For each page we will request, the user must have read rights for that page
174 $user = $this->getUser();
175 $status = Status::newGood();
177 foreach ( $pageSet->getGoodTitles() as $title ) {
178 if ( !$title->userCan( 'read', $user ) ) {
180 [ 'apierror-cannotviewtitle', wfEscapeWikiText( $title->getPrefixedText() ) ],
181 'accessdenied'
182 ) );
183 }
184 }
185 if ( !$status->isGood() ) {
186 $this->dieStatus( $status );
187 }
188 }
189
190 if ( $enumRevMode ) {
191 // Indexes targeted:
192 // page_timestamp if we don't have rvuser
193 // page_user_timestamp if we have a logged-in rvuser
194 // page_timestamp or usertext_timestamp if we have an IP rvuser
195
196 // This is mostly to prevent parameter errors (and optimize SQL?)
197 $this->requireMaxOneParameter( $params, 'startid', 'start' );
198 $this->requireMaxOneParameter( $params, 'endid', 'end' );
199 $this->requireMaxOneParameter( $params, 'user', 'excludeuser' );
200
201 if ( $params['continue'] !== null ) {
202 $cont = explode( '|', $params['continue'] );
203 $this->dieContinueUsageIf( count( $cont ) != 2 );
204 $op = ( $params['dir'] === 'newer' ? '>' : '<' );
205 $continueTimestamp = $db->addQuotes( $db->timestamp( $cont[0] ) );
206 $continueId = (int)$cont[1];
207 $this->dieContinueUsageIf( $continueId != $cont[1] );
208 $this->addWhere( "rev_timestamp $op $continueTimestamp OR " .
209 "(rev_timestamp = $continueTimestamp AND " .
210 "rev_id $op= $continueId)"
211 );
212 }
213
214 // Convert startid/endid to timestamps (T163532)
215 $revids = [];
216 if ( $params['startid'] !== null ) {
217 $revids[] = (int)$params['startid'];
218 }
219 if ( $params['endid'] !== null ) {
220 $revids[] = (int)$params['endid'];
221 }
222 if ( $revids ) {
223 $db = $this->getDB();
224 $sql = $db->unionQueries( [
225 $db->selectSQLText(
226 'revision',
227 [ 'id' => 'rev_id', 'ts' => 'rev_timestamp' ],
228 [ 'rev_id' => $revids ],
229 __METHOD__
230 ),
231 $db->selectSQLText(
232 'archive',
233 [ 'id' => 'ar_rev_id', 'ts' => 'ar_timestamp' ],
234 [ 'ar_rev_id' => $revids ],
235 __METHOD__
236 ),
237 ], false );
238 $res = $db->query( $sql, __METHOD__ );
239 foreach ( $res as $row ) {
240 if ( (int)$row->id === (int)$params['startid'] ) {
241 $params['start'] = $row->ts;
242 }
243 if ( (int)$row->id === (int)$params['endid'] ) {
244 $params['end'] = $row->ts;
245 }
246 }
247 if ( $params['startid'] !== null && $params['start'] === null ) {
248 $p = $this->encodeParamName( 'startid' );
249 $this->dieWithError( [ 'apierror-revisions-badid', $p ], "badid_$p" );
250 }
251 if ( $params['endid'] !== null && $params['end'] === null ) {
252 $p = $this->encodeParamName( 'endid' );
253 $this->dieWithError( [ 'apierror-revisions-badid', $p ], "badid_$p" );
254 }
255
256 if ( $params['start'] !== null ) {
257 $op = ( $params['dir'] === 'newer' ? '>' : '<' );
258 $ts = $db->addQuotes( $db->timestampOrNull( $params['start'] ) );
259 if ( $params['startid'] !== null ) {
260 $this->addWhere( "rev_timestamp $op $ts OR "
261 . "rev_timestamp = $ts AND rev_id $op= " . intval( $params['startid'] ) );
262 } else {
263 $this->addWhere( "rev_timestamp $op= $ts" );
264 }
265 }
266 if ( $params['end'] !== null ) {
267 $op = ( $params['dir'] === 'newer' ? '<' : '>' ); // Yes, opposite of the above
268 $ts = $db->addQuotes( $db->timestampOrNull( $params['end'] ) );
269 if ( $params['endid'] !== null ) {
270 $this->addWhere( "rev_timestamp $op $ts OR "
271 . "rev_timestamp = $ts AND rev_id $op= " . intval( $params['endid'] ) );
272 } else {
273 $this->addWhere( "rev_timestamp $op= $ts" );
274 }
275 }
276 } else {
277 $this->addTimestampWhereRange( 'rev_timestamp', $params['dir'],
278 $params['start'], $params['end'] );
279 }
280
281 $sort = ( $params['dir'] === 'newer' ? '' : 'DESC' );
282 $this->addOption( 'ORDER BY', [ "rev_timestamp $sort", "rev_id $sort" ] );
283
284 // There is only one ID, use it
285 $ids = array_keys( $pageSet->getGoodTitles() );
286 $this->addWhereFld( 'rev_page', reset( $ids ) );
287
288 if ( $params['user'] !== null ) {
289 $actorQuery = ActorMigration::newMigration()
290 ->getWhere( $db, 'rev_user', User::newFromName( $params['user'], false ) );
291 $this->addTables( $actorQuery['tables'] );
292 $this->addJoinConds( $actorQuery['joins'] );
293 $this->addWhere( $actorQuery['conds'] );
294 } elseif ( $params['excludeuser'] !== null ) {
295 $actorQuery = ActorMigration::newMigration()
296 ->getWhere( $db, 'rev_user', User::newFromName( $params['excludeuser'], false ) );
297 $this->addTables( $actorQuery['tables'] );
298 $this->addJoinConds( $actorQuery['joins'] );
299 $this->addWhere( 'NOT(' . $actorQuery['conds'] . ')' );
300 }
301 if ( $params['user'] !== null || $params['excludeuser'] !== null ) {
302 // Paranoia: avoid brute force searches (T19342)
303 if ( !$this->getUser()->isAllowed( 'deletedhistory' ) ) {
304 $bitmask = Revision::DELETED_USER;
305 } elseif ( !$this->getUser()->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
306 $bitmask = Revision::DELETED_USER | Revision::DELETED_RESTRICTED;
307 } else {
308 $bitmask = 0;
309 }
310 if ( $bitmask ) {
311 $this->addWhere( $db->bitAnd( 'rev_deleted', $bitmask ) . " != $bitmask" );
312 }
313 }
314 } elseif ( $revCount > 0 ) {
315 // Always targets the PRIMARY index
316
317 $revs = $pageSet->getLiveRevisionIDs();
318
319 // Get all revision IDs
320 $this->addWhereFld( 'rev_id', array_keys( $revs ) );
321
322 if ( $params['continue'] !== null ) {
323 $this->addWhere( 'rev_id >= ' . intval( $params['continue'] ) );
324 }
325 $this->addOption( 'ORDER BY', 'rev_id' );
326 } elseif ( $pageCount > 0 ) {
327 // Always targets the rev_page_id index
328
329 $titles = $pageSet->getGoodTitles();
330
331 // When working in multi-page non-enumeration mode,
332 // limit to the latest revision only
333 $this->addWhere( 'page_latest=rev_id' );
334
335 // Get all page IDs
336 $this->addWhereFld( 'page_id', array_keys( $titles ) );
337 // Every time someone relies on equality propagation, god kills a kitten :)
338 $this->addWhereFld( 'rev_page', array_keys( $titles ) );
339
340 if ( $params['continue'] !== null ) {
341 $cont = explode( '|', $params['continue'] );
342 $this->dieContinueUsageIf( count( $cont ) != 2 );
343 $pageid = intval( $cont[0] );
344 $revid = intval( $cont[1] );
345 $this->addWhere(
346 "rev_page > $pageid OR " .
347 "(rev_page = $pageid AND " .
348 "rev_id >= $revid)"
349 );
350 }
351 $this->addOption( 'ORDER BY', [
352 'rev_page',
353 'rev_id'
354 ] );
355 } else {
356 ApiBase::dieDebug( __METHOD__, 'param validation?' );
357 }
358
359 $this->addOption( 'LIMIT', $this->limit + 1 );
360
361 $count = 0;
362 $generated = [];
363 $hookData = [];
364 $res = $this->select( __METHOD__, [], $hookData );
365
366 foreach ( $res as $row ) {
367 if ( ++$count > $this->limit ) {
368 // We've reached the one extra which shows that there are
369 // additional pages to be had. Stop here...
370 if ( $enumRevMode ) {
371 $this->setContinueEnumParameter( 'continue',
372 $row->rev_timestamp . '|' . intval( $row->rev_id ) );
373 } elseif ( $revCount > 0 ) {
374 $this->setContinueEnumParameter( 'continue', intval( $row->rev_id ) );
375 } else {
376 $this->setContinueEnumParameter( 'continue', intval( $row->rev_page ) .
377 '|' . intval( $row->rev_id ) );
378 }
379 break;
380 }
381
382 if ( $resultPageSet !== null ) {
383 $generated[] = $row->rev_id;
384 } else {
385 $revision = new Revision( $row );
386 $rev = $this->extractRevisionInfo( $revision, $row );
387
388 if ( $this->token !== null ) {
389 $title = $revision->getTitle();
391 foreach ( $this->token as $t ) {
392 $val = call_user_func( $tokenFunctions[$t], $title->getArticleID(), $title, $revision );
393 if ( $val === false ) {
394 $this->addWarning( [ 'apiwarn-tokennotallowed', $t ] );
395 } else {
396 $rev[$t . 'token'] = $val;
397 }
398 }
399 }
400
401 $fit = $this->processRow( $row, $rev, $hookData ) &&
402 $this->addPageSubItem( $row->rev_page, $rev, 'rev' );
403 if ( !$fit ) {
404 if ( $enumRevMode ) {
405 $this->setContinueEnumParameter( 'continue',
406 $row->rev_timestamp . '|' . intval( $row->rev_id ) );
407 } elseif ( $revCount > 0 ) {
408 $this->setContinueEnumParameter( 'continue', intval( $row->rev_id ) );
409 } else {
410 $this->setContinueEnumParameter( 'continue', intval( $row->rev_page ) .
411 '|' . intval( $row->rev_id ) );
412 }
413 break;
414 }
415 }
416 }
417
418 if ( $resultPageSet !== null ) {
419 $resultPageSet->populateFromRevisionIDs( $generated );
420 }
421 }
422
423 public function getCacheMode( $params ) {
424 if ( isset( $params['token'] ) ) {
425 return 'private';
426 }
427 return parent::getCacheMode( $params );
428 }
429
430 public function getAllowedParams() {
431 $ret = parent::getAllowedParams() + [
432 'startid' => [
433 ApiBase::PARAM_TYPE => 'integer',
434 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'singlepageonly' ] ],
435 ],
436 'endid' => [
437 ApiBase::PARAM_TYPE => 'integer',
438 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'singlepageonly' ] ],
439 ],
440 'start' => [
441 ApiBase::PARAM_TYPE => 'timestamp',
442 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'singlepageonly' ] ],
443 ],
444 'end' => [
445 ApiBase::PARAM_TYPE => 'timestamp',
446 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'singlepageonly' ] ],
447 ],
448 'dir' => [
449 ApiBase::PARAM_DFLT => 'older',
451 'newer',
452 'older'
453 ],
454 ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
455 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'singlepageonly' ] ],
456 ],
457 'user' => [
458 ApiBase::PARAM_TYPE => 'user',
459 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'singlepageonly' ] ],
460 ],
461 'excludeuser' => [
462 ApiBase::PARAM_TYPE => 'user',
463 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'singlepageonly' ] ],
464 ],
465 'tag' => null,
466 'token' => [
468 ApiBase::PARAM_TYPE => array_keys( $this->getTokenFunctions() ),
470 ],
471 'continue' => [
472 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
473 ],
474 ];
475
476 $ret['limit'][ApiBase::PARAM_HELP_MSG_INFO] = [ [ 'singlepageonly' ] ];
477
478 return $ret;
479 }
480
481 protected function getExamplesMessages() {
482 return [
483 'action=query&prop=revisions&titles=API|Main%20Page&' .
484 'rvprop=timestamp|user|comment|content'
485 => 'apihelp-query+revisions-example-content',
486 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
487 'rvprop=timestamp|user|comment'
488 => 'apihelp-query+revisions-example-last5',
489 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
490 'rvprop=timestamp|user|comment&rvdir=newer'
491 => 'apihelp-query+revisions-example-first5',
492 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
493 'rvprop=timestamp|user|comment&rvdir=newer&rvstart=2006-05-01T00:00:00Z'
494 => 'apihelp-query+revisions-example-first5-after',
495 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
496 'rvprop=timestamp|user|comment&rvexcludeuser=127.0.0.1'
497 => 'apihelp-query+revisions-example-first5-not-localhost',
498 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
499 'rvprop=timestamp|user|comment&rvuser=MediaWiki%20default'
500 => 'apihelp-query+revisions-example-first5-user',
501 ];
502 }
503
504 public function getHelpUrls() {
505 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Revisions';
506 }
507}
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
$wgUser
Definition Setup.php:902
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition ApiBase.php:529
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
Definition ApiBase.php:105
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
Definition ApiBase.php:773
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition ApiBase.php:1895
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:2066
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
Definition ApiBase.php:2078
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:87
const PARAM_HELP_MSG_INFO
(array) Specify additional information tags for the parameter.
Definition ApiBase.php:141
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:48
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:749
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:823
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:124
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Definition ApiBase.php:1819
dieStatus(StatusValue $status)
Throw an ApiUsageException based on the Status object.
Definition ApiBase.php:1960
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition ApiBase.php:51
lacksSameOriginSecurity()
Returns true if the current request breaks the same-origin policy.
Definition ApiBase.php:569
static create( $msg, $code=null, array $data=null)
Create an IApiMessage for the message.
This class contains a list of pages that the client has requested.
processRow( $row, array &$data, array &$hookData)
Call the ApiQueryBaseProcessRow hook.
addFields( $value)
Add a set of fields to select to the internal array.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
getDB()
Get the Query database connection (read-only)
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
addWhere( $value)
Add a set of WHERE clauses to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
getPageSet()
Get the PageSet object to work on.
encodeParamName( $paramName)
Overrides ApiBase to prepend 'g' to every generator parameter.
A base class for functions common to producing a list of revisions.
parseParameters( $params)
Parse the parameters into the various instance fields.
extractRevisionInfo(Revision $revision, $row)
Extract information from the Revision.
A query action to enumerate revisions of a given page, or show top revisions of multiple pages.
__construct(ApiQuery $query, $moduleName)
getCacheMode( $params)
Get the cache mode for the data generated by this module.
getHelpUrls()
Return links to more detailed help pages about the module.
run(ApiPageSet $resultPageSet=null)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
static getRollbackToken( $pageid, $title, $rev)
getExamplesMessages()
Returns usage examples for this module.
This is the main query class.
Definition ApiQuery.php:36
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:591
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
$res
Definition database.txt:21
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:964
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:2006
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2005
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1255
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition hooks.txt:1620
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1777
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:247
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
Definition linkcache.txt:17
$sort
$params