MediaWiki  1.32.0
InfoAction.php
Go to the documentation of this file.
1 <?php
27 
33 class InfoAction extends FormlessAction {
34  const VERSION = 1;
35 
41  public function getName() {
42  return 'info';
43  }
44 
50  public function requiresUnblock() {
51  return false;
52  }
53 
59  public function requiresWrite() {
60  return false;
61  }
62 
70  public static function invalidateCache( Title $title, $revid = null ) {
71  if ( !$revid ) {
72  $revision = Revision::newFromTitle( $title, 0, Revision::READ_LATEST );
73  $revid = $revision ? $revision->getId() : null;
74  }
75  if ( $revid !== null ) {
76  $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
77  $key = self::getCacheKey( $cache, $title, $revid );
78  $cache->delete( $key );
79  }
80  }
81 
87  public function onView() {
88  $content = '';
89 
90  // Validate revision
91  $oldid = $this->page->getOldID();
92  if ( $oldid ) {
93  $revision = $this->page->getRevisionFetched();
94 
95  // Revision is missing
96  if ( $revision === null ) {
97  return $this->msg( 'missing-revision', $oldid )->parse();
98  }
99 
100  // Revision is not current
101  if ( !$revision->isCurrent() ) {
102  return $this->msg( 'pageinfo-not-current' )->plain();
103  }
104  }
105 
106  // Page header
107  if ( !$this->msg( 'pageinfo-header' )->isDisabled() ) {
108  $content .= $this->msg( 'pageinfo-header' )->parse();
109  }
110 
111  // Hide "This page is a member of # hidden categories" explanation
112  $content .= Html::element( 'style', [],
113  '.mw-hiddenCategoriesExplanation { display: none; }' ) . "\n";
114 
115  // Hide "Templates used on this page" explanation
116  $content .= Html::element( 'style', [],
117  '.mw-templatesUsedExplanation { display: none; }' ) . "\n";
118 
119  // Get page information
120  $pageInfo = $this->pageInfo();
121 
122  // Allow extensions to add additional information
123  Hooks::run( 'InfoAction', [ $this->getContext(), &$pageInfo ] );
124 
125  // Render page information
126  foreach ( $pageInfo as $header => $infoTable ) {
127  // Messages:
128  // pageinfo-header-basic, pageinfo-header-edits, pageinfo-header-restrictions,
129  // pageinfo-header-properties, pageinfo-category-info
130  $content .= $this->makeHeader(
131  $this->msg( "pageinfo-${header}" )->text(),
132  "mw-pageinfo-${header}"
133  ) . "\n";
134  $table = "\n";
135  $below = "";
136  foreach ( $infoTable as $infoRow ) {
137  if ( $infoRow[0] == "below" ) {
138  $below = $infoRow[1] . "\n";
139  continue;
140  }
141  $name = ( $infoRow[0] instanceof Message ) ? $infoRow[0]->escaped() : $infoRow[0];
142  $value = ( $infoRow[1] instanceof Message ) ? $infoRow[1]->escaped() : $infoRow[1];
143  $id = ( $infoRow[0] instanceof Message ) ? $infoRow[0]->getKey() : null;
144  $table = $this->addRow( $table, $name, $value, $id ) . "\n";
145  }
146  $content = $this->addTable( $content, $table ) . "\n" . $below;
147  }
148 
149  // Page footer
150  if ( !$this->msg( 'pageinfo-footer' )->isDisabled() ) {
151  $content .= $this->msg( 'pageinfo-footer' )->parse();
152  }
153 
154  return $content;
155  }
156 
164  protected function makeHeader( $header, $canonicalId ) {
165  $spanAttribs = [ 'class' => 'mw-headline', 'id' => Sanitizer::escapeIdForAttribute( $header ) ];
166  $h2Attribs = [ 'id' => Sanitizer::escapeIdForAttribute( $canonicalId ) ];
167 
168  return Html::rawElement( 'h2', $h2Attribs, Html::element( 'span', $spanAttribs, $header ) );
169  }
170 
180  protected function addRow( $table, $name, $value, $id ) {
181  return $table .
183  'tr',
184  $id === null ? [] : [ 'id' => 'mw-' . $id ],
185  Html::rawElement( 'td', [ 'style' => 'vertical-align: top;' ], $name ) .
186  Html::rawElement( 'td', [], $value )
187  );
188  }
189 
197  protected function addTable( $content, $table ) {
198  return $content . Html::rawElement( 'table', [ 'class' => 'wikitable mw-page-info' ],
199  $table );
200  }
201 
214  protected function pageInfo() {
215  $services = MediaWikiServices::getInstance();
216 
217  $user = $this->getUser();
218  $lang = $this->getLanguage();
219  $title = $this->getTitle();
220  $id = $title->getArticleID();
221  $config = $this->context->getConfig();
222  $linkRenderer = $services->getLinkRenderer();
223 
224  $pageCounts = $this->pageCounts( $this->page );
225 
226  $props = PageProps::getInstance()->getAllProperties( $title );
227  $pageProperties = $props[$id] ?? [];
228 
229  // Basic information
230  $pageInfo = [];
231  $pageInfo['header-basic'] = [];
232 
233  // Display title
234  $displayTitle = $pageProperties['displaytitle'] ?? $title->getPrefixedText();
235 
236  $pageInfo['header-basic'][] = [
237  $this->msg( 'pageinfo-display-title' ), $displayTitle
238  ];
239 
240  // Is it a redirect? If so, where to?
241  $redirectTarget = $this->page->getRedirectTarget();
242  if ( $redirectTarget !== null ) {
243  $pageInfo['header-basic'][] = [
244  $this->msg( 'pageinfo-redirectsto' ),
245  $linkRenderer->makeLink( $redirectTarget ) .
246  $this->msg( 'word-separator' )->escaped() .
247  $this->msg( 'parentheses' )->rawParams( $linkRenderer->makeLink(
248  $redirectTarget,
249  $this->msg( 'pageinfo-redirectsto-info' )->text(),
250  [],
251  [ 'action' => 'info' ]
252  ) )->escaped()
253  ];
254  }
255 
256  // Default sort key
257  $sortKey = $pageProperties['defaultsort'] ?? $title->getCategorySortkey();
258 
259  $sortKey = htmlspecialchars( $sortKey );
260  $pageInfo['header-basic'][] = [ $this->msg( 'pageinfo-default-sort' ), $sortKey ];
261 
262  // Page length (in bytes)
263  $pageInfo['header-basic'][] = [
264  $this->msg( 'pageinfo-length' ), $lang->formatNum( $title->getLength() )
265  ];
266 
267  // Page ID (number not localised, as it's a database ID)
268  $pageInfo['header-basic'][] = [ $this->msg( 'pageinfo-article-id' ), $id ];
269 
270  // Language in which the page content is (supposed to be) written
271  $pageLang = $title->getPageLanguage()->getCode();
272 
273  $pageLangHtml = $pageLang . ' - ' .
274  Language::fetchLanguageName( $pageLang, $lang->getCode() );
275  // Link to Special:PageLanguage with pre-filled page title if user has permissions
276  if ( $config->get( 'PageLanguageUseDB' )
277  && $title->userCan( 'pagelang', $user )
278  ) {
279  $pageLangHtml .= ' ' . $this->msg( 'parentheses' )->rawParams( $linkRenderer->makeLink(
280  SpecialPage::getTitleValueFor( 'PageLanguage', $title->getPrefixedText() ),
281  $this->msg( 'pageinfo-language-change' )->text()
282  ) )->escaped();
283  }
284 
285  $pageInfo['header-basic'][] = [
286  $this->msg( 'pageinfo-language' )->escaped(),
287  $pageLangHtml
288  ];
289 
290  // Content model of the page
291  $modelHtml = htmlspecialchars( ContentHandler::getLocalizedName( $title->getContentModel() ) );
292  // If the user can change it, add a link to Special:ChangeContentModel
293  if ( $config->get( 'ContentHandlerUseDB' )
294  && $title->userCan( 'editcontentmodel', $user )
295  ) {
296  $modelHtml .= ' ' . $this->msg( 'parentheses' )->rawParams( $linkRenderer->makeLink(
297  SpecialPage::getTitleValueFor( 'ChangeContentModel', $title->getPrefixedText() ),
298  $this->msg( 'pageinfo-content-model-change' )->text()
299  ) )->escaped();
300  }
301 
302  $pageInfo['header-basic'][] = [
303  $this->msg( 'pageinfo-content-model' ),
304  $modelHtml
305  ];
306 
307  if ( $title->inNamespace( NS_USER ) ) {
308  $pageUser = User::newFromName( $title->getRootText() );
309  if ( $pageUser && $pageUser->getId() && !$pageUser->isHidden() ) {
310  $pageInfo['header-basic'][] = [
311  $this->msg( 'pageinfo-user-id' ),
312  $pageUser->getId()
313  ];
314  }
315  }
316 
317  // Search engine status
318  $pOutput = new ParserOutput();
319  if ( isset( $pageProperties['noindex'] ) ) {
320  $pOutput->setIndexPolicy( 'noindex' );
321  }
322  if ( isset( $pageProperties['index'] ) ) {
323  $pOutput->setIndexPolicy( 'index' );
324  }
325 
326  // Use robot policy logic
327  $policy = $this->page->getRobotPolicy( 'view', $pOutput );
328  $pageInfo['header-basic'][] = [
329  // Messages: pageinfo-robot-index, pageinfo-robot-noindex
330  $this->msg( 'pageinfo-robot-policy' ),
331  $this->msg( "pageinfo-robot-${policy['index']}" )
332  ];
333 
334  $unwatchedPageThreshold = $config->get( 'UnwatchedPageThreshold' );
335  if (
336  $user->isAllowed( 'unwatchedpages' ) ||
337  ( $unwatchedPageThreshold !== false &&
338  $pageCounts['watchers'] >= $unwatchedPageThreshold )
339  ) {
340  // Number of page watchers
341  $pageInfo['header-basic'][] = [
342  $this->msg( 'pageinfo-watchers' ),
343  $lang->formatNum( $pageCounts['watchers'] )
344  ];
345  if (
346  $config->get( 'ShowUpdatedMarker' ) &&
347  isset( $pageCounts['visitingWatchers'] )
348  ) {
349  $minToDisclose = $config->get( 'UnwatchedPageSecret' );
350  if ( $pageCounts['visitingWatchers'] > $minToDisclose ||
351  $user->isAllowed( 'unwatchedpages' ) ) {
352  $pageInfo['header-basic'][] = [
353  $this->msg( 'pageinfo-visiting-watchers' ),
354  $lang->formatNum( $pageCounts['visitingWatchers'] )
355  ];
356  } else {
357  $pageInfo['header-basic'][] = [
358  $this->msg( 'pageinfo-visiting-watchers' ),
359  $this->msg( 'pageinfo-few-visiting-watchers' )
360  ];
361  }
362  }
363  } elseif ( $unwatchedPageThreshold !== false ) {
364  $pageInfo['header-basic'][] = [
365  $this->msg( 'pageinfo-watchers' ),
366  $this->msg( 'pageinfo-few-watchers' )->numParams( $unwatchedPageThreshold )
367  ];
368  }
369 
370  // Redirects to this page
371  $whatLinksHere = SpecialPage::getTitleFor( 'Whatlinkshere', $title->getPrefixedText() );
372  $pageInfo['header-basic'][] = [
373  $linkRenderer->makeLink(
374  $whatLinksHere,
375  $this->msg( 'pageinfo-redirects-name' )->text(),
376  [],
377  [
378  'hidelinks' => 1,
379  'hidetrans' => 1,
380  'hideimages' => $title->getNamespace() == NS_FILE
381  ]
382  ),
383  $this->msg( 'pageinfo-redirects-value' )
384  ->numParams( count( $title->getRedirectsHere() ) )
385  ];
386 
387  // Is it counted as a content page?
388  if ( $this->page->isCountable() ) {
389  $pageInfo['header-basic'][] = [
390  $this->msg( 'pageinfo-contentpage' ),
391  $this->msg( 'pageinfo-contentpage-yes' )
392  ];
393  }
394 
395  // Subpages of this page, if subpages are enabled for the current NS
396  if ( MWNamespace::hasSubpages( $title->getNamespace() ) ) {
397  $prefixIndex = SpecialPage::getTitleFor(
398  'Prefixindex', $title->getPrefixedText() . '/' );
399  $pageInfo['header-basic'][] = [
400  $linkRenderer->makeLink(
401  $prefixIndex,
402  $this->msg( 'pageinfo-subpages-name' )->text()
403  ),
404  $this->msg( 'pageinfo-subpages-value' )
405  ->numParams(
406  $pageCounts['subpages']['total'],
407  $pageCounts['subpages']['redirects'],
408  $pageCounts['subpages']['nonredirects'] )
409  ];
410  }
411 
412  if ( $title->inNamespace( NS_CATEGORY ) ) {
413  $category = Category::newFromTitle( $title );
414 
415  // $allCount is the total number of cat members,
416  // not the count of how many members are normal pages.
417  $allCount = (int)$category->getPageCount();
418  $subcatCount = (int)$category->getSubcatCount();
419  $fileCount = (int)$category->getFileCount();
420  $pagesCount = $allCount - $subcatCount - $fileCount;
421 
422  $pageInfo['category-info'] = [
423  [
424  $this->msg( 'pageinfo-category-total' ),
425  $lang->formatNum( $allCount )
426  ],
427  [
428  $this->msg( 'pageinfo-category-pages' ),
429  $lang->formatNum( $pagesCount )
430  ],
431  [
432  $this->msg( 'pageinfo-category-subcats' ),
433  $lang->formatNum( $subcatCount )
434  ],
435  [
436  $this->msg( 'pageinfo-category-files' ),
437  $lang->formatNum( $fileCount )
438  ]
439  ];
440  }
441 
442  // Display image SHA-1 value
443  if ( $title->inNamespace( NS_FILE ) ) {
444  $fileObj = wfFindFile( $title );
445  if ( $fileObj !== false ) {
446  // Convert the base-36 sha1 value obtained from database to base-16
447  $output = Wikimedia\base_convert( $fileObj->getSha1(), 36, 16, 40 );
448  $pageInfo['header-basic'][] = [
449  $this->msg( 'pageinfo-file-hash' ),
450  $output
451  ];
452  }
453  }
454 
455  // Page protection
456  $pageInfo['header-restrictions'] = [];
457 
458  // Is this page affected by the cascading protection of something which includes it?
459  if ( $title->isCascadeProtected() ) {
460  $cascadingFrom = '';
461  $sources = $title->getCascadeProtectionSources()[0];
462 
463  foreach ( $sources as $sourceTitle ) {
464  $cascadingFrom .= Html::rawElement(
465  'li', [], $linkRenderer->makeKnownLink( $sourceTitle ) );
466  }
467 
468  $cascadingFrom = Html::rawElement( 'ul', [], $cascadingFrom );
469  $pageInfo['header-restrictions'][] = [
470  $this->msg( 'pageinfo-protect-cascading-from' ),
471  $cascadingFrom
472  ];
473  }
474 
475  // Is out protection set to cascade to other pages?
476  if ( $title->areRestrictionsCascading() ) {
477  $pageInfo['header-restrictions'][] = [
478  $this->msg( 'pageinfo-protect-cascading' ),
479  $this->msg( 'pageinfo-protect-cascading-yes' )
480  ];
481  }
482 
483  // Page protection
484  foreach ( $title->getRestrictionTypes() as $restrictionType ) {
485  $protectionLevel = implode( ', ', $title->getRestrictions( $restrictionType ) );
486 
487  if ( $protectionLevel == '' ) {
488  // Allow all users
489  $message = $this->msg( 'protect-default' )->escaped();
490  } else {
491  // Administrators only
492  // Messages: protect-level-autoconfirmed, protect-level-sysop
493  $message = $this->msg( "protect-level-$protectionLevel" );
494  if ( $message->isDisabled() ) {
495  // Require "$1" permission
496  $message = $this->msg( "protect-fallback", $protectionLevel )->parse();
497  } else {
498  $message = $message->escaped();
499  }
500  }
501  $expiry = $title->getRestrictionExpiry( $restrictionType );
502  $formattedexpiry = $this->msg( 'parentheses',
503  $lang->formatExpiry( $expiry ) )->escaped();
504  $message .= $this->msg( 'word-separator' )->escaped() . $formattedexpiry;
505 
506  // Messages: restriction-edit, restriction-move, restriction-create,
507  // restriction-upload
508  $pageInfo['header-restrictions'][] = [
509  $this->msg( "restriction-$restrictionType" ), $message
510  ];
511  }
512  $protectLog = SpecialPage::getTitleFor( 'Log' );
513  $pageInfo['header-restrictions'][] = [
514  'below',
515  $linkRenderer->makeKnownLink(
516  $protectLog,
517  $this->msg( 'pageinfo-view-protect-log' )->text(),
518  [],
519  [ 'type' => 'protect', 'page' => $title->getPrefixedText() ]
520  ),
521  ];
522 
523  if ( !$this->page->exists() ) {
524  return $pageInfo;
525  }
526 
527  // Edit history
528  $pageInfo['header-edits'] = [];
529 
530  $firstRev = $this->page->getOldestRevision();
531  $lastRev = $this->page->getRevision();
532  $batch = new LinkBatch;
533 
534  if ( $firstRev ) {
535  $firstRevUser = $firstRev->getUserText( Revision::FOR_THIS_USER );
536  if ( $firstRevUser !== '' ) {
537  $firstRevUserTitle = Title::makeTitle( NS_USER, $firstRevUser );
538  $batch->addObj( $firstRevUserTitle );
539  $batch->addObj( $firstRevUserTitle->getTalkPage() );
540  }
541  }
542 
543  if ( $lastRev ) {
544  $lastRevUser = $lastRev->getUserText( Revision::FOR_THIS_USER );
545  if ( $lastRevUser !== '' ) {
546  $lastRevUserTitle = Title::makeTitle( NS_USER, $lastRevUser );
547  $batch->addObj( $lastRevUserTitle );
548  $batch->addObj( $lastRevUserTitle->getTalkPage() );
549  }
550  }
551 
552  $batch->execute();
553 
554  if ( $firstRev ) {
555  // Page creator
556  $pageInfo['header-edits'][] = [
557  $this->msg( 'pageinfo-firstuser' ),
558  Linker::revUserTools( $firstRev )
559  ];
560 
561  // Date of page creation
562  $pageInfo['header-edits'][] = [
563  $this->msg( 'pageinfo-firsttime' ),
564  $linkRenderer->makeKnownLink(
565  $title,
566  $lang->userTimeAndDate( $firstRev->getTimestamp(), $user ),
567  [],
568  [ 'oldid' => $firstRev->getId() ]
569  )
570  ];
571  }
572 
573  if ( $lastRev ) {
574  // Latest editor
575  $pageInfo['header-edits'][] = [
576  $this->msg( 'pageinfo-lastuser' ),
577  Linker::revUserTools( $lastRev )
578  ];
579 
580  // Date of latest edit
581  $pageInfo['header-edits'][] = [
582  $this->msg( 'pageinfo-lasttime' ),
583  $linkRenderer->makeKnownLink(
584  $title,
585  $lang->userTimeAndDate( $this->page->getTimestamp(), $user ),
586  [],
587  [ 'oldid' => $this->page->getLatest() ]
588  )
589  ];
590  }
591 
592  // Total number of edits
593  $pageInfo['header-edits'][] = [
594  $this->msg( 'pageinfo-edits' ), $lang->formatNum( $pageCounts['edits'] )
595  ];
596 
597  // Total number of distinct authors
598  if ( $pageCounts['authors'] > 0 ) {
599  $pageInfo['header-edits'][] = [
600  $this->msg( 'pageinfo-authors' ), $lang->formatNum( $pageCounts['authors'] )
601  ];
602  }
603 
604  // Recent number of edits (within past 30 days)
605  $pageInfo['header-edits'][] = [
606  $this->msg( 'pageinfo-recent-edits',
607  $lang->formatDuration( $config->get( 'RCMaxAge' ) ) ),
608  $lang->formatNum( $pageCounts['recent_edits'] )
609  ];
610 
611  // Recent number of distinct authors
612  $pageInfo['header-edits'][] = [
613  $this->msg( 'pageinfo-recent-authors' ),
614  $lang->formatNum( $pageCounts['recent_authors'] )
615  ];
616 
617  // Array of MagicWord objects
618  $magicWords = $services->getMagicWordFactory()->getDoubleUnderscoreArray();
619 
620  // Array of magic word IDs
621  $wordIDs = $magicWords->names;
622 
623  // Array of IDs => localized magic words
624  $localizedWords = $services->getContentLanguage()->getMagicWords();
625 
626  $listItems = [];
627  foreach ( $pageProperties as $property => $value ) {
628  if ( in_array( $property, $wordIDs ) ) {
629  $listItems[] = Html::element( 'li', [], $localizedWords[$property][1] );
630  }
631  }
632 
633  $localizedList = Html::rawElement( 'ul', [], implode( '', $listItems ) );
634  $hiddenCategories = $this->page->getHiddenCategories();
635 
636  if (
637  count( $listItems ) > 0 ||
638  count( $hiddenCategories ) > 0 ||
639  $pageCounts['transclusion']['from'] > 0 ||
640  $pageCounts['transclusion']['to'] > 0
641  ) {
642  $options = [ 'LIMIT' => $config->get( 'PageInfoTransclusionLimit' ) ];
643  $transcludedTemplates = $title->getTemplateLinksFrom( $options );
644  if ( $config->get( 'MiserMode' ) ) {
645  $transcludedTargets = [];
646  } else {
647  $transcludedTargets = $title->getTemplateLinksTo( $options );
648  }
649 
650  // Page properties
651  $pageInfo['header-properties'] = [];
652 
653  // Magic words
654  if ( count( $listItems ) > 0 ) {
655  $pageInfo['header-properties'][] = [
656  $this->msg( 'pageinfo-magic-words' )->numParams( count( $listItems ) ),
657  $localizedList
658  ];
659  }
660 
661  // Hidden categories
662  if ( count( $hiddenCategories ) > 0 ) {
663  $pageInfo['header-properties'][] = [
664  $this->msg( 'pageinfo-hidden-categories' )
665  ->numParams( count( $hiddenCategories ) ),
666  Linker::formatHiddenCategories( $hiddenCategories )
667  ];
668  }
669 
670  // Transcluded templates
671  if ( $pageCounts['transclusion']['from'] > 0 ) {
672  if ( $pageCounts['transclusion']['from'] > count( $transcludedTemplates ) ) {
673  $more = $this->msg( 'morenotlisted' )->escaped();
674  } else {
675  $more = null;
676  }
677 
678  $templateListFormatter = new TemplatesOnThisPageFormatter(
679  $this->getContext(),
681  );
682 
683  $pageInfo['header-properties'][] = [
684  $this->msg( 'pageinfo-templates' )
685  ->numParams( $pageCounts['transclusion']['from'] ),
686  $templateListFormatter->format( $transcludedTemplates, false, $more )
687  ];
688  }
689 
690  if ( !$config->get( 'MiserMode' ) && $pageCounts['transclusion']['to'] > 0 ) {
691  if ( $pageCounts['transclusion']['to'] > count( $transcludedTargets ) ) {
692  $more = $linkRenderer->makeLink(
693  $whatLinksHere,
694  $this->msg( 'moredotdotdot' )->text(),
695  [],
696  [ 'hidelinks' => 1, 'hideredirs' => 1 ]
697  );
698  } else {
699  $more = null;
700  }
701 
702  $templateListFormatter = new TemplatesOnThisPageFormatter(
703  $this->getContext(),
705  );
706 
707  $pageInfo['header-properties'][] = [
708  $this->msg( 'pageinfo-transclusions' )
709  ->numParams( $pageCounts['transclusion']['to'] ),
710  $templateListFormatter->format( $transcludedTargets, false, $more )
711  ];
712  }
713  }
714 
715  return $pageInfo;
716  }
717 
724  protected function pageCounts( Page $page ) {
725  $fname = __METHOD__;
726  $config = $this->context->getConfig();
727  $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
728 
729  return $cache->getWithSetCallback(
730  self::getCacheKey( $cache, $page->getTitle(), $page->getLatest() ),
732  function ( $oldValue, &$ttl, &$setOpts ) use ( $page, $config, $fname ) {
734 
735  $title = $page->getTitle();
736  $id = $title->getArticleID();
737 
738  $dbr = wfGetDB( DB_REPLICA );
739  $dbrWatchlist = wfGetDB( DB_REPLICA, 'watchlist' );
740  $setOpts += Database::getCacheSetOptions( $dbr, $dbrWatchlist );
741 
743  $tables = [ 'revision_actor_temp' ];
744  $field = 'revactor_actor';
745  $pageField = 'revactor_page';
746  $tsField = 'revactor_timestamp';
747  $joins = [];
748  } else {
749  $tables = [ 'revision' ];
750  $field = 'rev_user_text';
751  $pageField = 'rev_page';
752  $tsField = 'rev_timestamp';
753  $joins = [];
754  }
755 
756  $watchedItemStore = MediaWikiServices::getInstance()->getWatchedItemStore();
757 
758  $result = [];
759  $result['watchers'] = $watchedItemStore->countWatchers( $title );
760 
761  if ( $config->get( 'ShowUpdatedMarker' ) ) {
762  $updated = wfTimestamp( TS_UNIX, $page->getTimestamp() );
763  $result['visitingWatchers'] = $watchedItemStore->countVisitingWatchers(
764  $title,
765  $updated - $config->get( 'WatchersMaxAge' )
766  );
767  }
768 
769  // Total number of edits
770  $edits = (int)$dbr->selectField(
771  'revision',
772  'COUNT(*)',
773  [ 'rev_page' => $id ],
774  $fname
775  );
776  $result['edits'] = $edits;
777 
778  // Total number of distinct authors
779  if ( $config->get( 'MiserMode' ) ) {
780  $result['authors'] = 0;
781  } else {
782  $result['authors'] = (int)$dbr->selectField(
783  $tables,
784  "COUNT(DISTINCT $field)",
785  [ $pageField => $id ],
786  $fname,
787  [],
788  $joins
789  );
790  }
791 
792  // "Recent" threshold defined by RCMaxAge setting
793  $threshold = $dbr->timestamp( time() - $config->get( 'RCMaxAge' ) );
794 
795  // Recent number of edits
796  $edits = (int)$dbr->selectField(
797  'revision',
798  'COUNT(rev_page)',
799  [
800  'rev_page' => $id,
801  "rev_timestamp >= " . $dbr->addQuotes( $threshold )
802  ],
803  $fname
804  );
805  $result['recent_edits'] = $edits;
806 
807  // Recent number of distinct authors
808  $result['recent_authors'] = (int)$dbr->selectField(
809  $tables,
810  "COUNT(DISTINCT $field)",
811  [
812  $pageField => $id,
813  "$tsField >= " . $dbr->addQuotes( $threshold )
814  ],
815  $fname,
816  [],
817  $joins
818  );
819 
820  // Subpages (if enabled)
821  if ( MWNamespace::hasSubpages( $title->getNamespace() ) ) {
822  $conds = [ 'page_namespace' => $title->getNamespace() ];
823  $conds[] = 'page_title ' .
824  $dbr->buildLike( $title->getDBkey() . '/', $dbr->anyString() );
825 
826  // Subpages of this page (redirects)
827  $conds['page_is_redirect'] = 1;
828  $result['subpages']['redirects'] = (int)$dbr->selectField(
829  'page',
830  'COUNT(page_id)',
831  $conds,
832  $fname
833  );
834 
835  // Subpages of this page (non-redirects)
836  $conds['page_is_redirect'] = 0;
837  $result['subpages']['nonredirects'] = (int)$dbr->selectField(
838  'page',
839  'COUNT(page_id)',
840  $conds,
841  $fname
842  );
843 
844  // Subpages of this page (total)
845  $result['subpages']['total'] = $result['subpages']['redirects']
846  + $result['subpages']['nonredirects'];
847  }
848 
849  // Counts for the number of transclusion links (to/from)
850  if ( $config->get( 'MiserMode' ) ) {
851  $result['transclusion']['to'] = 0;
852  } else {
853  $result['transclusion']['to'] = (int)$dbr->selectField(
854  'templatelinks',
855  'COUNT(tl_from)',
856  [
857  'tl_namespace' => $title->getNamespace(),
858  'tl_title' => $title->getDBkey()
859  ],
860  $fname
861  );
862  }
863 
864  $result['transclusion']['from'] = (int)$dbr->selectField(
865  'templatelinks',
866  'COUNT(*)',
867  [ 'tl_from' => $title->getArticleID() ],
868  $fname
869  );
870 
871  return $result;
872  }
873  );
874  }
875 
881  protected function getPageTitle() {
882  return $this->msg( 'pageinfo-title', $this->getTitle()->getPrefixedText() )->text();
883  }
884 
889  protected function getContributors() {
890  $contributors = $this->page->getContributors();
891  $real_names = [];
892  $user_names = [];
893  $anon_ips = [];
894  $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
895 
896  # Sift for real versus user names
897 
898  foreach ( $contributors as $user ) {
899  $page = $user->isAnon()
900  ? SpecialPage::getTitleFor( 'Contributions', $user->getName() )
901  : $user->getUserPage();
902 
903  $hiddenPrefs = $this->context->getConfig()->get( 'HiddenPrefs' );
904  if ( $user->getId() == 0 ) {
905  $anon_ips[] = $linkRenderer->makeLink( $page, $user->getName() );
906  } elseif ( !in_array( 'realname', $hiddenPrefs ) && $user->getRealName() ) {
907  $real_names[] = $linkRenderer->makeLink( $page, $user->getRealName() );
908  } else {
909  $user_names[] = $linkRenderer->makeLink( $page, $user->getName() );
910  }
911  }
912 
913  $lang = $this->getLanguage();
914 
915  $real = $lang->listToText( $real_names );
916 
917  # "ThisSite user(s) A, B and C"
918  if ( count( $user_names ) ) {
919  $user = $this->msg( 'siteusers' )
920  ->rawParams( $lang->listToText( $user_names ) )
921  ->params( count( $user_names ) )->escaped();
922  } else {
923  $user = false;
924  }
925 
926  if ( count( $anon_ips ) ) {
927  $anon = $this->msg( 'anonusers' )
928  ->rawParams( $lang->listToText( $anon_ips ) )
929  ->params( count( $anon_ips ) )->escaped();
930  } else {
931  $anon = false;
932  }
933 
934  # This is the big list, all mooshed together. We sift for blank strings
935  $fulllist = [];
936  foreach ( [ $real, $user, $anon ] as $s ) {
937  if ( $s !== '' ) {
938  array_push( $fulllist, $s );
939  }
940  }
941 
942  $count = count( $fulllist );
943 
944  # "Based on work by ..."
945  return $count
946  ? $this->msg( 'othercontribs' )->rawParams(
947  $lang->listToText( $fulllist ) )->params( $count )->escaped()
948  : '';
949  }
950 
956  protected function getDescription() {
957  return '';
958  }
959 
966  protected static function getCacheKey( WANObjectCache $cache, Title $title, $revId ) {
967  return $cache->makeKey( 'infoaction', md5( $title->getPrefixedText() ), $revId, self::VERSION );
968  }
969 }
Language\fetchLanguageName
static fetchLanguageName( $code, $inLanguage=self::AS_AUTONYMS, $include=self::ALL)
Definition: Language.php:940
Wikimedia\Rdbms\Database
Relational database abstraction object.
Definition: Database.php:48
$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
Page
Interface for type hinting (accepts WikiPage, Article, ImagePage, CategoryPage)
Definition: Page.php:24
SCHEMA_COMPAT_READ_NEW
const SCHEMA_COMPAT_READ_NEW
Definition: Defines.php:287
ParserOutput
Definition: ParserOutput.php:25
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:34
FormlessAction
An action which just does something, without showing a form first.
Definition: FormlessAction.php:28
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
captcha-old.count
count
Definition: captcha-old.py:249
InfoAction\getDescription
getDescription()
Returns the description that goes below the "<h1>" tag.
Definition: InfoAction.php:956
$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
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1954
$tables
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
Definition: hooks.txt:1018
InfoAction\requiresWrite
requiresWrite()
Whether this action requires the wiki not to be locked.
Definition: InfoAction.php:59
NS_FILE
const NS_FILE
Definition: Defines.php:70
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:592
$s
$s
Definition: mergeMessageFileList.php:187
$linkRenderer
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 an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
Definition: hooks.txt:2036
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
page
target page
Definition: All_system_messages.txt:1267
InfoAction\getName
getName()
Returns the name of the action this object responds to.
Definition: InfoAction.php:41
InfoAction\getContributors
getContributors()
Get a list of contributors of $article.
Definition: InfoAction.php:889
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
Linker\formatHiddenCategories
static formatHiddenCategories( $hiddencats)
Returns HTML for the "hidden categories on this page" list.
Definition: Linker.php:1915
$dbr
$dbr
Definition: testCompression.php:50
Revision\FOR_THIS_USER
const FOR_THIS_USER
Definition: Revision.php:56
Revision\newFromTitle
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
Definition: Revision.php:133
Action\getContext
getContext()
Get the IContextSource in use here.
Definition: Action.php:180
InfoAction
Displays information about a page.
Definition: InfoAction.php:33
InfoAction\makeHeader
makeHeader( $header, $canonicalId)
Creates a header that can be added to the output.
Definition: InfoAction.php:164
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
$property
$property
Definition: styleTest.css.php:48
InfoAction\getPageTitle
getPageTitle()
Returns the name that goes in the "<h1>" page title.
Definition: InfoAction.php:881
SpecialPage\getTitleValueFor
static getTitleValueFor( $name, $subpage=false, $fragment='')
Get a localised TitleValue object for a specified special page name.
Definition: SpecialPage.php:97
Action\msg
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Definition: Action.php:258
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2693
Linker\revUserTools
static revUserTools( $rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
Definition: Linker.php:1053
PageProps\getInstance
static getInstance()
Definition: PageProps.php:66
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
MWNamespace\hasSubpages
static hasSubpages( $index)
Does the namespace allow subpages?
Definition: MWNamespace.php:364
$contributors
$contributors
Definition: updateCredits.php:36
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:545
$output
$output
Definition: SyntaxHighlight.php:334
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
InfoAction\VERSION
const VERSION
Definition: InfoAction.php:34
NS_CATEGORY
const NS_CATEGORY
Definition: Defines.php:78
$magicWords
magicword txt Magic Words are some phrases used in the wikitext They are used for two that looks like templates but that don t accept any parameter *Parser functions(like {{fullurl:...}}, {{#special:...}}) $magicWords['en']
Definition: magicword.txt:33
InfoAction\addRow
addRow( $table, $name, $value, $id)
Adds a row to a table that will be added to the content.
Definition: InfoAction.php:180
$fname
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition: Setup.php:121
InfoAction\getCacheKey
static getCacheKey(WANObjectCache $cache, Title $title, $revId)
Definition: InfoAction.php:966
Category\newFromTitle
static newFromTitle( $title)
Factory function.
Definition: Category.php:146
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
Action\getUser
getUser()
Shortcut to get the User being used for this instance.
Definition: Action.php:219
InfoAction\pageInfo
pageInfo()
Returns an array of info groups (will be rendered as tables), keyed by group ID.
Definition: InfoAction.php:214
TemplatesOnThisPageFormatter
Handles formatting for the "templates used on this page" lists.
Definition: TemplatesOnThisPageFormatter.php:30
InfoAction\addTable
addTable( $content, $table)
Adds a table to the content that will be added to the output.
Definition: InfoAction.php:197
$value
$value
Definition: styleTest.css.php:49
ContentHandler\getLocalizedName
static getLocalizedName( $name, Language $lang=null)
Returns the localized name for a given content model.
Definition: ContentHandler.php:359
$header
$header
Definition: updateCredits.php:35
WANObjectCache
Multi-datacenter aware caching interface.
Definition: WANObjectCache.php:118
Action\getTitle
getTitle()
Shortcut to get the Title object from the page.
Definition: Action.php:248
InfoAction\requiresUnblock
requiresUnblock()
Whether this action can still be executed by a blocked user.
Definition: InfoAction.php:50
wfFindFile
wfFindFile( $title, $options=[])
Find a file.
Definition: GlobalFunctions.php:2734
IExpiringStore\TTL_WEEK
const TTL_WEEK
Definition: IExpiringStore.php:37
text
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
Definition: All_system_messages.txt:1267
InfoAction\onView
onView()
Shows page information on GET request.
Definition: InfoAction.php:87
Title
Represents a title within MediaWiki.
Definition: Title.php:39
$cache
$cache
Definition: mcc.php:33
$options
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 & $options
Definition: hooks.txt:2036
Action\$page
$page
Page on which we're performing the action.
Definition: Action.php:46
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
Html\rawElement
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition: Html.php:210
Action\getLanguage
getLanguage()
Shortcut to get the user Language being used for this instance.
Definition: Action.php:238
NS_USER
const NS_USER
Definition: Defines.php:66
InfoAction\invalidateCache
static invalidateCache(Title $title, $revid=null)
Clear the info cache for a given Title.
Definition: InfoAction.php:70
$batch
$batch
Definition: linkcache.txt:23
$content
$content
Definition: pageupdater.txt:72
InfoAction\pageCounts
pageCounts(Page $page)
Returns page counts that would be too "expensive" to retrieve by normal means.
Definition: InfoAction.php:724
$services
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
Definition: hooks.txt:2270
Html\element
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:232
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
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
$wgActorTableSchemaMigrationStage
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.
Definition: DefaultSettings.php:9006