MediaWiki  1.32.0
ApiQueryAllDeletedRevisions.php
Go to the documentation of this file.
1 <?php
29 
36 
37  public function __construct( ApiQuery $query, $moduleName ) {
38  parent::__construct( $query, $moduleName, 'adr' );
39  }
40 
45  protected function run( ApiPageSet $resultPageSet = null ) {
47 
48  // Before doing anything at all, let's check permissions
49  $this->checkUserRightsAny( 'deletedhistory' );
50 
51  $user = $this->getUser();
52  $db = $this->getDB();
53  $params = $this->extractRequestParams( false );
54  $revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
55 
56  $result = $this->getResult();
57 
58  // If the user wants no namespaces, they get no pages.
59  if ( $params['namespace'] === [] ) {
60  if ( $resultPageSet === null ) {
61  $result->addValue( 'query', $this->getModuleName(), [] );
62  }
63  return;
64  }
65 
66  // This module operates in two modes:
67  // 'user': List deleted revs by a certain user
68  // 'all': List all deleted revs in NS
69  $mode = 'all';
70  if ( !is_null( $params['user'] ) ) {
71  $mode = 'user';
72  }
73 
74  if ( $mode == 'user' ) {
75  foreach ( [ 'from', 'to', 'prefix', 'excludeuser' ] as $param ) {
76  if ( !is_null( $params[$param] ) ) {
77  $p = $this->getModulePrefix();
78  $this->dieWithError(
79  [ 'apierror-invalidparammix-cannotusewith', $p . $param, "{$p}user" ],
80  'invalidparammix'
81  );
82  }
83  }
84  } else {
85  foreach ( [ 'start', 'end' ] as $param ) {
86  if ( !is_null( $params[$param] ) ) {
87  $p = $this->getModulePrefix();
88  $this->dieWithError(
89  [ 'apierror-invalidparammix-mustusewith', $p . $param, "{$p}user" ],
90  'invalidparammix'
91  );
92  }
93  }
94  }
95 
96  // If we're generating titles only, we can use DISTINCT for a better
97  // query. But we can't do that in 'user' mode (wrong index), and we can
98  // only do it when sorting ASC (because MySQL apparently can't use an
99  // index backwards for grouping even though it can for ORDER BY, WTF?)
100  $dir = $params['dir'];
101  $optimizeGenerateTitles = false;
102  if ( $mode === 'all' && $params['generatetitles'] && $resultPageSet !== null ) {
103  if ( $dir === 'newer' ) {
104  $optimizeGenerateTitles = true;
105  } else {
106  $p = $this->getModulePrefix();
107  $this->addWarning( [ 'apiwarn-alldeletedrevisions-performance', $p ], 'performance' );
108  }
109  }
110 
111  if ( $resultPageSet === null ) {
112  $this->parseParameters( $params );
113  $arQuery = $revisionStore->getArchiveQueryInfo();
114  $this->addTables( $arQuery['tables'] );
115  $this->addJoinConds( $arQuery['joins'] );
116  $this->addFields( $arQuery['fields'] );
117  $this->addFields( [ 'ar_title', 'ar_namespace' ] );
118  } else {
119  $this->limit = $this->getParameter( 'limit' ) ?: 10;
120  $this->addTables( 'archive' );
121  $this->addFields( [ 'ar_title', 'ar_namespace' ] );
122  if ( $optimizeGenerateTitles ) {
123  $this->addOption( 'DISTINCT' );
124  } else {
125  $this->addFields( [ 'ar_timestamp', 'ar_rev_id', 'ar_id' ] );
126  }
127  }
128 
129  if ( $this->fld_tags ) {
130  $this->addTables( 'tag_summary' );
131  $this->addJoinConds(
132  [ 'tag_summary' => [ 'LEFT JOIN', [ 'ar_rev_id=ts_rev_id' ] ] ]
133  );
134  $this->addFields( 'ts_tags' );
135  }
136 
137  if ( !is_null( $params['tag'] ) ) {
138  $this->addTables( 'change_tag' );
139  $this->addJoinConds(
140  [ 'change_tag' => [ 'INNER JOIN', [ 'ar_rev_id=ct_rev_id' ] ] ]
141  );
142  if ( $wgChangeTagsSchemaMigrationStage > MIGRATION_WRITE_BOTH ) {
143  $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
144  try {
145  $this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
146  } catch ( NameTableAccessException $exception ) {
147  // Return nothing.
148  $this->addWhere( '1=0' );
149  }
150  } else {
151  $this->addWhereFld( 'ct_tag', $params['tag'] );
152  }
153  }
154 
155  if ( $this->fetchContent ) {
156  $this->addTables( 'text' );
157  $this->addJoinConds(
158  [ 'text' => [ 'LEFT JOIN', [ 'ar_text_id=old_id' ] ] ]
159  );
160  $this->addFields( [ 'old_text', 'old_flags' ] );
161 
162  // This also means stricter restrictions
163  $this->checkUserRightsAny( [ 'deletedtext', 'undelete' ] );
164  }
165 
166  $miser_ns = null;
167 
168  if ( $mode == 'all' ) {
170  $this->addWhereFld( 'ar_namespace', $namespaces );
171 
172  // For from/to/prefix, we have to consider the potential
173  // transformations of the title in all specified namespaces.
174  // Generally there will be only one transformation, but wikis with
175  // some namespaces case-sensitive could have two.
176  if ( $params['from'] !== null || $params['to'] !== null ) {
177  $isDirNewer = ( $dir === 'newer' );
178  $after = ( $isDirNewer ? '>=' : '<=' );
179  $before = ( $isDirNewer ? '<=' : '>=' );
180  $where = [];
181  foreach ( $namespaces as $ns ) {
182  $w = [];
183  if ( $params['from'] !== null ) {
184  $w[] = 'ar_title' . $after .
185  $db->addQuotes( $this->titlePartToKey( $params['from'], $ns ) );
186  }
187  if ( $params['to'] !== null ) {
188  $w[] = 'ar_title' . $before .
189  $db->addQuotes( $this->titlePartToKey( $params['to'], $ns ) );
190  }
191  $w = $db->makeList( $w, LIST_AND );
192  $where[$w][] = $ns;
193  }
194  if ( count( $where ) == 1 ) {
195  $where = key( $where );
196  $this->addWhere( $where );
197  } else {
198  $where2 = [];
199  foreach ( $where as $w => $ns ) {
200  $where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND );
201  }
202  $this->addWhere( $db->makeList( $where2, LIST_OR ) );
203  }
204  }
205 
206  if ( isset( $params['prefix'] ) ) {
207  $where = [];
208  foreach ( $namespaces as $ns ) {
209  $w = 'ar_title' . $db->buildLike(
210  $this->titlePartToKey( $params['prefix'], $ns ),
211  $db->anyString() );
212  $where[$w][] = $ns;
213  }
214  if ( count( $where ) == 1 ) {
215  $where = key( $where );
216  $this->addWhere( $where );
217  } else {
218  $where2 = [];
219  foreach ( $where as $w => $ns ) {
220  $where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND );
221  }
222  $this->addWhere( $db->makeList( $where2, LIST_OR ) );
223  }
224  }
225  } else {
226  if ( $this->getConfig()->get( 'MiserMode' ) ) {
227  $miser_ns = $params['namespace'];
228  } else {
229  $this->addWhereFld( 'ar_namespace', $params['namespace'] );
230  }
231  $this->addTimestampWhereRange( 'ar_timestamp', $dir, $params['start'], $params['end'] );
232  }
233 
234  if ( !is_null( $params['user'] ) ) {
235  // Don't query by user ID here, it might be able to use the ar_usertext_timestamp index.
236  $actorQuery = ActorMigration::newMigration()
237  ->getWhere( $db, 'ar_user', User::newFromName( $params['user'], false ), false );
238  $this->addTables( $actorQuery['tables'] );
239  $this->addJoinConds( $actorQuery['joins'] );
240  $this->addWhere( $actorQuery['conds'] );
241  } elseif ( !is_null( $params['excludeuser'] ) ) {
242  // Here there's no chance of using ar_usertext_timestamp.
243  $actorQuery = ActorMigration::newMigration()
244  ->getWhere( $db, 'ar_user', User::newFromName( $params['excludeuser'], false ) );
245  $this->addTables( $actorQuery['tables'] );
246  $this->addJoinConds( $actorQuery['joins'] );
247  $this->addWhere( 'NOT(' . $actorQuery['conds'] . ')' );
248  }
249 
250  if ( !is_null( $params['user'] ) || !is_null( $params['excludeuser'] ) ) {
251  // Paranoia: avoid brute force searches (T19342)
252  // (shouldn't be able to get here without 'deletedhistory', but
253  // check it again just in case)
254  if ( !$user->isAllowed( 'deletedhistory' ) ) {
255  $bitmask = RevisionRecord::DELETED_USER;
256  } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
257  $bitmask = RevisionRecord::DELETED_USER | RevisionRecord::DELETED_RESTRICTED;
258  } else {
259  $bitmask = 0;
260  }
261  if ( $bitmask ) {
262  $this->addWhere( $db->bitAnd( 'ar_deleted', $bitmask ) . " != $bitmask" );
263  }
264  }
265 
266  if ( !is_null( $params['continue'] ) ) {
267  $cont = explode( '|', $params['continue'] );
268  $op = ( $dir == 'newer' ? '>' : '<' );
269  if ( $optimizeGenerateTitles ) {
270  $this->dieContinueUsageIf( count( $cont ) != 2 );
271  $ns = intval( $cont[0] );
272  $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
273  $title = $db->addQuotes( $cont[1] );
274  $this->addWhere( "ar_namespace $op $ns OR " .
275  "(ar_namespace = $ns AND ar_title $op= $title)" );
276  } elseif ( $mode == 'all' ) {
277  $this->dieContinueUsageIf( count( $cont ) != 4 );
278  $ns = intval( $cont[0] );
279  $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
280  $title = $db->addQuotes( $cont[1] );
281  $ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
282  $ar_id = (int)$cont[3];
283  $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[3] );
284  $this->addWhere( "ar_namespace $op $ns OR " .
285  "(ar_namespace = $ns AND " .
286  "(ar_title $op $title OR " .
287  "(ar_title = $title AND " .
288  "(ar_timestamp $op $ts OR " .
289  "(ar_timestamp = $ts AND " .
290  "ar_id $op= $ar_id)))))" );
291  } else {
292  $this->dieContinueUsageIf( count( $cont ) != 2 );
293  $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
294  $ar_id = (int)$cont[1];
295  $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[1] );
296  $this->addWhere( "ar_timestamp $op $ts OR " .
297  "(ar_timestamp = $ts AND " .
298  "ar_id $op= $ar_id)" );
299  }
300  }
301 
302  $this->addOption( 'LIMIT', $this->limit + 1 );
303 
304  $sort = ( $dir == 'newer' ? '' : ' DESC' );
305  $orderby = [];
306  if ( $optimizeGenerateTitles ) {
307  // Targeting index name_title_timestamp
308  if ( $params['namespace'] === null || count( array_unique( $params['namespace'] ) ) > 1 ) {
309  $orderby[] = "ar_namespace $sort";
310  }
311  $orderby[] = "ar_title $sort";
312  } elseif ( $mode == 'all' ) {
313  // Targeting index name_title_timestamp
314  if ( $params['namespace'] === null || count( array_unique( $params['namespace'] ) ) > 1 ) {
315  $orderby[] = "ar_namespace $sort";
316  }
317  $orderby[] = "ar_title $sort";
318  $orderby[] = "ar_timestamp $sort";
319  $orderby[] = "ar_id $sort";
320  } else {
321  // Targeting index usertext_timestamp
322  // 'user' is always constant.
323  $orderby[] = "ar_timestamp $sort";
324  $orderby[] = "ar_id $sort";
325  }
326  $this->addOption( 'ORDER BY', $orderby );
327 
328  $res = $this->select( __METHOD__ );
329  $pageMap = []; // Maps ns&title to array index
330  $count = 0;
331  $nextIndex = 0;
332  $generated = [];
333  foreach ( $res as $row ) {
334  if ( ++$count > $this->limit ) {
335  // We've had enough
336  if ( $optimizeGenerateTitles ) {
337  $this->setContinueEnumParameter( 'continue', "$row->ar_namespace|$row->ar_title" );
338  } elseif ( $mode == 'all' ) {
339  $this->setContinueEnumParameter( 'continue',
340  "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
341  );
342  } else {
343  $this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
344  }
345  break;
346  }
347 
348  // Miser mode namespace check
349  if ( $miser_ns !== null && !in_array( $row->ar_namespace, $miser_ns ) ) {
350  continue;
351  }
352 
353  if ( $resultPageSet !== null ) {
354  if ( $params['generatetitles'] ) {
355  $key = "{$row->ar_namespace}:{$row->ar_title}";
356  if ( !isset( $generated[$key] ) ) {
357  $generated[$key] = Title::makeTitle( $row->ar_namespace, $row->ar_title );
358  }
359  } else {
360  $generated[] = $row->ar_rev_id;
361  }
362  } else {
363  $revision = $revisionStore->newRevisionFromArchiveRow( $row );
364  $rev = $this->extractRevisionInfo( $revision, $row );
365 
366  if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
367  $index = $nextIndex++;
368  $pageMap[$row->ar_namespace][$row->ar_title] = $index;
369  $title = Title::newFromLinkTarget( $revision->getPageAsLinkTarget() );
370  $a = [
371  'pageid' => $title->getArticleID(),
372  'revisions' => [ $rev ],
373  ];
374  ApiResult::setIndexedTagName( $a['revisions'], 'rev' );
376  $fit = $result->addValue( [ 'query', $this->getModuleName() ], $index, $a );
377  } else {
378  $index = $pageMap[$row->ar_namespace][$row->ar_title];
379  $fit = $result->addValue(
380  [ 'query', $this->getModuleName(), $index, 'revisions' ],
381  null, $rev );
382  }
383  if ( !$fit ) {
384  if ( $mode == 'all' ) {
385  $this->setContinueEnumParameter( 'continue',
386  "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
387  );
388  } else {
389  $this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
390  }
391  break;
392  }
393  }
394  }
395 
396  if ( $resultPageSet !== null ) {
397  if ( $params['generatetitles'] ) {
398  $resultPageSet->populateFromTitles( $generated );
399  } else {
400  $resultPageSet->populateFromRevisionIDs( $generated );
401  }
402  } else {
403  $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'page' );
404  }
405  }
406 
407  public function getAllowedParams() {
408  $ret = parent::getAllowedParams() + [
409  'user' => [
410  ApiBase::PARAM_TYPE => 'user'
411  ],
412  'namespace' => [
413  ApiBase::PARAM_ISMULTI => true,
414  ApiBase::PARAM_TYPE => 'namespace',
415  ],
416  'start' => [
417  ApiBase::PARAM_TYPE => 'timestamp',
418  ApiBase::PARAM_HELP_MSG_INFO => [ [ 'useronly' ] ],
419  ],
420  'end' => [
421  ApiBase::PARAM_TYPE => 'timestamp',
422  ApiBase::PARAM_HELP_MSG_INFO => [ [ 'useronly' ] ],
423  ],
424  'dir' => [
426  'newer',
427  'older'
428  ],
429  ApiBase::PARAM_DFLT => 'older',
430  ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
431  ],
432  'from' => [
433  ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
434  ],
435  'to' => [
436  ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
437  ],
438  'prefix' => [
439  ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
440  ],
441  'excludeuser' => [
442  ApiBase::PARAM_TYPE => 'user',
443  ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
444  ],
445  'tag' => null,
446  'continue' => [
447  ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
448  ],
449  'generatetitles' => [
451  ],
452  ];
453 
454  if ( $this->getConfig()->get( 'MiserMode' ) ) {
456  'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
457  ];
458  $ret['namespace'][ApiBase::PARAM_HELP_MSG_APPEND] = [
459  'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
460  ];
461  }
462 
463  return $ret;
464  }
465 
466  protected function getExamplesMessages() {
467  return [
468  'action=query&list=alldeletedrevisions&adruser=Example&adrlimit=50'
469  => 'apihelp-query+alldeletedrevisions-example-user',
470  'action=query&list=alldeletedrevisions&adrdir=newer&adrnamespace=0&adrlimit=50'
471  => 'apihelp-query+alldeletedrevisions-example-ns-main',
472  ];
473  }
474 
475  public function getHelpUrls() {
476  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Alldeletedrevisions';
477  }
478 }
ApiQueryRevisionsBase\parseParameters
parseParameters( $params)
Parse the parameters into the various instance fields.
Definition: ApiQueryRevisionsBase.php:76
ContextSource\getConfig
getConfig()
Definition: ContextSource.php:63
$user
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 account $user
Definition: hooks.txt:244
ApiQueryBase\addFields
addFields( $value)
Add a set of fields to select to the internal array.
Definition: ApiQueryBase.php:192
ApiQuery
This is the main query class.
Definition: ApiQuery.php:36
Revision\RevisionRecord
Page revision base class.
Definition: RevisionRecord.php:45
ApiBase\addWarning
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Definition: ApiBase.php:1906
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
MWNamespace\getValidNamespaces
static getValidNamespaces()
Returns an array of the namespaces (by integer id) that exist on the wiki.
Definition: MWNamespace.php:286
captcha-old.count
count
Definition: captcha-old.py:249
ApiBase\dieWithError
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition: ApiBase.php:1987
ApiQueryBase\addTimestampWhereRange
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
Definition: ApiQueryBase.php:313
ApiBase\PARAM_HELP_MSG
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition: ApiBase.php:124
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED since 1.16! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:2034
$namespaces
namespace and then decline to actually register it & $namespaces
Definition: hooks.txt:964
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:87
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:659
ApiBase\checkUserRightsAny
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
Definition: ApiBase.php:2095
$params
$params
Definition: styleTest.css.php:44
MIGRATION_WRITE_BOTH
const MIGRATION_WRITE_BOTH
Definition: Defines.php:316
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:592
$res
$res
Definition: database.txt:21
ApiQueryBase\addOption
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
Definition: ApiQueryBase.php:325
ContextSource\getUser
getUser()
Definition: ContextSource.php:120
ApiBase\PARAM_HELP_MSG_APPEND
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
Definition: ApiBase.php:131
ActorMigration\newMigration
static newMigration()
Static constructor.
Definition: ActorMigration.php:111
ApiPageSet
This class contains a list of pages that the client has requested.
Definition: ApiPageSet.php:40
php
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:35
LIST_AND
const LIST_AND
Definition: Defines.php:43
ApiQueryRevisionsBase
A base class for functions common to producing a list of revisions.
Definition: ApiQueryRevisionsBase.php:33
ApiQueryAllDeletedRevisions\getHelpUrls
getHelpUrls()
Return links to more detailed help pages about the module.
Definition: ApiQueryAllDeletedRevisions.php:475
ApiQueryGeneratorBase\setContinueEnumParameter
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
Definition: ApiQueryGeneratorBase.php:84
$query
null for the 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:1627
LIST_OR
const LIST_OR
Definition: Defines.php:46
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
Title\newFromLinkTarget
static newFromLinkTarget(LinkTarget $linkTarget)
Create a new Title from a LinkTarget.
Definition: Title.php:251
ApiQueryBase\getDB
getDB()
Get the Query database connection (read-only)
Definition: ApiQueryBase.php:105
ApiQueryAllDeletedRevisions\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiQueryAllDeletedRevisions.php:407
ApiQueryBase\addTables
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
Definition: ApiQueryBase.php:158
ApiQueryBase\select
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
Definition: ApiQueryBase.php:350
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
ApiBase\extractRequestParams
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:770
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:545
ApiQueryAllDeletedRevisions\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiQueryAllDeletedRevisions.php:466
$sort
$sort
Definition: profileinfo.php:328
ApiQueryBase\$where
$where
Definition: ApiQueryBase.php:35
ApiQueryAllDeletedRevisions\run
run(ApiPageSet $resultPageSet=null)
Definition: ApiQueryAllDeletedRevisions.php:45
ApiBase\getModulePrefix
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition: ApiBase.php:547
$wgChangeTagsSchemaMigrationStage
int $wgChangeTagsSchemaMigrationStage
change_tag table schema migration stage.
Definition: DefaultSettings.php:9020
key
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
Definition: hooks.txt:2205
ApiResult\setIndexedTagName
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
Definition: ApiResult.php:616
ApiBase\dieContinueUsageIf
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition: ApiBase.php:2155
ApiQueryRevisionsBase\extractRevisionInfo
extractRevisionInfo(RevisionRecord $revision, $row)
Extract information from the RevisionRecord.
Definition: ApiQueryRevisionsBase.php:231
ApiQueryBase\addJoinConds
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
Definition: ApiQueryBase.php:181
$ret
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:2036
ApiQueryBase\addWhereFld
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
Definition: ApiQueryBase.php:260
ApiBase\PARAM_HELP_MSG_INFO
const PARAM_HELP_MSG_INFO
(array) Specify additional information tags for the parameter.
Definition: ApiBase.php:141
ApiQueryAllDeletedRevisions\__construct
__construct(ApiQuery $query, $moduleName)
Definition: ApiQueryAllDeletedRevisions.php:37
ApiBase\PARAM_DFLT
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:48
$rev
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:1808
ApiBase\getParameter
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
Definition: ApiBase.php:884
as
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
Definition: distributors.txt:9
ApiBase\getModuleName
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:539
MediaWiki\Storage\NameTableAccessException
Exception representing a failure to look up a row from a name table.
Definition: NameTableAccessException.php:32
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:51
ApiQueryBase\addWhere
addWhere( $value)
Add a set of WHERE clauses to the internal array.
Definition: ApiQueryBase.php:227
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
ApiQueryBase\titlePartToKey
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.
Definition: ApiQueryBase.php:550
ApiQueryAllDeletedRevisions
Query module to enumerate all deleted revisions.
Definition: ApiQueryAllDeletedRevisions.php:35
ApiQueryBase\addTitleInfo
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
Definition: ApiQueryBase.php:487