Merge "Corrected grammatical error."
[lhc/web/wiklou.git] / includes / actions / InfoAction.php
1 <?php
2 /**
3 * Displays information about a page.
4 *
5 * Copyright © 2011 Alexandre Emsenhuber
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
20 *
21 * @file
22 * @ingroup Actions
23 */
24
25 use MediaWiki\MediaWikiServices;
26 use Wikimedia\Rdbms\Database;
27
28 /**
29 * Displays information about a page.
30 *
31 * @ingroup Actions
32 */
33 class InfoAction extends FormlessAction {
34 const VERSION = 1;
35
36 /**
37 * Returns the name of the action this object responds to.
38 *
39 * @return string Lowercase name
40 */
41 public function getName() {
42 return 'info';
43 }
44
45 /**
46 * Whether this action can still be executed by a blocked user.
47 *
48 * @return bool
49 */
50 public function requiresUnblock() {
51 return false;
52 }
53
54 /**
55 * Whether this action requires the wiki not to be locked.
56 *
57 * @return bool
58 */
59 public function requiresWrite() {
60 return false;
61 }
62
63 /**
64 * Clear the info cache for a given Title.
65 *
66 * @since 1.22
67 * @param Title $title Title to clear cache for
68 * @param int|null $revid Revision id to clear
69 */
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
82 /**
83 * Shows page information on GET request.
84 *
85 * @return string Page information that will be added to the output
86 */
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
157 /**
158 * Creates a header that can be added to the output.
159 *
160 * @param string $header The header text.
161 * @param string $canonicalId
162 * @return string The HTML.
163 */
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
171 /**
172 * Adds a row to a table that will be added to the content.
173 *
174 * @param string $table The table that will be added to the content
175 * @param string $name The name of the row
176 * @param string $value The value of the row
177 * @param string|null $id The ID to use for the 'tr' element
178 * @return string The table with the row added
179 */
180 protected function addRow( $table, $name, $value, $id ) {
181 return $table .
182 Html::rawElement(
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
190 /**
191 * Adds a table to the content that will be added to the output.
192 *
193 * @param string $content The content that will be added to the output
194 * @param string $table
195 * @return string The content with the table added
196 */
197 protected function addTable( $content, $table ) {
198 return $content . Html::rawElement( 'table', [ 'class' => 'wikitable mw-page-info' ],
199 $table );
200 }
201
202 /**
203 * Returns an array of info groups (will be rendered as tables), keyed by group ID.
204 * Group IDs are arbitrary and used so that extensions may add additional information in
205 * arbitrary positions (and as message keys for section headers for the tables, prefixed
206 * with 'pageinfo-').
207 * Each info group is a non-associative array of info items (rendered as table rows).
208 * Each info item is an array with two elements: the first describes the type of
209 * information, the second the value for the current page. Both can be strings (will be
210 * interpreted as raw HTML) or messages (will be interpreted as plain text and escaped).
211 *
212 * @return array
213 */
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 namespace
268 $pageNamespace = $title->getNsText();
269 if ( $pageNamespace ) {
270 $pageInfo['header-basic'][] = [ $this->msg( 'pageinfo-namespace' ), $pageNamespace ];
271 }
272
273 // Page ID (number not localised, as it's a database ID)
274 $pageInfo['header-basic'][] = [ $this->msg( 'pageinfo-article-id' ), $id ];
275
276 // Language in which the page content is (supposed to be) written
277 $pageLang = $title->getPageLanguage()->getCode();
278
279 $pageLangHtml = $pageLang . ' - ' .
280 Language::fetchLanguageName( $pageLang, $lang->getCode() );
281 // Link to Special:PageLanguage with pre-filled page title if user has permissions
282 if ( $config->get( 'PageLanguageUseDB' )
283 && $title->userCan( 'pagelang', $user )
284 ) {
285 $pageLangHtml .= ' ' . $this->msg( 'parentheses' )->rawParams( $linkRenderer->makeLink(
286 SpecialPage::getTitleValueFor( 'PageLanguage', $title->getPrefixedText() ),
287 $this->msg( 'pageinfo-language-change' )->text()
288 ) )->escaped();
289 }
290
291 $pageInfo['header-basic'][] = [
292 $this->msg( 'pageinfo-language' )->escaped(),
293 $pageLangHtml
294 ];
295
296 // Content model of the page
297 $modelHtml = htmlspecialchars( ContentHandler::getLocalizedName( $title->getContentModel() ) );
298 // If the user can change it, add a link to Special:ChangeContentModel
299 if ( $config->get( 'ContentHandlerUseDB' )
300 && $title->userCan( 'editcontentmodel', $user )
301 ) {
302 $modelHtml .= ' ' . $this->msg( 'parentheses' )->rawParams( $linkRenderer->makeLink(
303 SpecialPage::getTitleValueFor( 'ChangeContentModel', $title->getPrefixedText() ),
304 $this->msg( 'pageinfo-content-model-change' )->text()
305 ) )->escaped();
306 }
307
308 $pageInfo['header-basic'][] = [
309 $this->msg( 'pageinfo-content-model' ),
310 $modelHtml
311 ];
312
313 if ( $title->inNamespace( NS_USER ) ) {
314 $pageUser = User::newFromName( $title->getRootText() );
315 if ( $pageUser && $pageUser->getId() && !$pageUser->isHidden() ) {
316 $pageInfo['header-basic'][] = [
317 $this->msg( 'pageinfo-user-id' ),
318 $pageUser->getId()
319 ];
320 }
321 }
322
323 // Search engine status
324 $pOutput = new ParserOutput();
325 if ( isset( $pageProperties['noindex'] ) ) {
326 $pOutput->setIndexPolicy( 'noindex' );
327 }
328 if ( isset( $pageProperties['index'] ) ) {
329 $pOutput->setIndexPolicy( 'index' );
330 }
331
332 // Use robot policy logic
333 $policy = $this->page->getRobotPolicy( 'view', $pOutput );
334 $pageInfo['header-basic'][] = [
335 // Messages: pageinfo-robot-index, pageinfo-robot-noindex
336 $this->msg( 'pageinfo-robot-policy' ),
337 $this->msg( "pageinfo-robot-${policy['index']}" )
338 ];
339
340 $unwatchedPageThreshold = $config->get( 'UnwatchedPageThreshold' );
341 if (
342 $user->isAllowed( 'unwatchedpages' ) ||
343 ( $unwatchedPageThreshold !== false &&
344 $pageCounts['watchers'] >= $unwatchedPageThreshold )
345 ) {
346 // Number of page watchers
347 $pageInfo['header-basic'][] = [
348 $this->msg( 'pageinfo-watchers' ),
349 $lang->formatNum( $pageCounts['watchers'] )
350 ];
351 if (
352 $config->get( 'ShowUpdatedMarker' ) &&
353 isset( $pageCounts['visitingWatchers'] )
354 ) {
355 $minToDisclose = $config->get( 'UnwatchedPageSecret' );
356 if ( $pageCounts['visitingWatchers'] > $minToDisclose ||
357 $user->isAllowed( 'unwatchedpages' ) ) {
358 $pageInfo['header-basic'][] = [
359 $this->msg( 'pageinfo-visiting-watchers' ),
360 $lang->formatNum( $pageCounts['visitingWatchers'] )
361 ];
362 } else {
363 $pageInfo['header-basic'][] = [
364 $this->msg( 'pageinfo-visiting-watchers' ),
365 $this->msg( 'pageinfo-few-visiting-watchers' )
366 ];
367 }
368 }
369 } elseif ( $unwatchedPageThreshold !== false ) {
370 $pageInfo['header-basic'][] = [
371 $this->msg( 'pageinfo-watchers' ),
372 $this->msg( 'pageinfo-few-watchers' )->numParams( $unwatchedPageThreshold )
373 ];
374 }
375
376 // Redirects to this page
377 $whatLinksHere = SpecialPage::getTitleFor( 'Whatlinkshere', $title->getPrefixedText() );
378 $pageInfo['header-basic'][] = [
379 $linkRenderer->makeLink(
380 $whatLinksHere,
381 $this->msg( 'pageinfo-redirects-name' )->text(),
382 [],
383 [
384 'hidelinks' => 1,
385 'hidetrans' => 1,
386 'hideimages' => $title->getNamespace() == NS_FILE
387 ]
388 ),
389 $this->msg( 'pageinfo-redirects-value' )
390 ->numParams( count( $title->getRedirectsHere() ) )
391 ];
392
393 // Is it counted as a content page?
394 if ( $this->page->isCountable() ) {
395 $pageInfo['header-basic'][] = [
396 $this->msg( 'pageinfo-contentpage' ),
397 $this->msg( 'pageinfo-contentpage-yes' )
398 ];
399 }
400
401 // Subpages of this page, if subpages are enabled for the current NS
402 if ( $services->getNamespaceInfo()->hasSubpages( $title->getNamespace() ) ) {
403 $prefixIndex = SpecialPage::getTitleFor(
404 'Prefixindex', $title->getPrefixedText() . '/' );
405 $pageInfo['header-basic'][] = [
406 $linkRenderer->makeLink(
407 $prefixIndex,
408 $this->msg( 'pageinfo-subpages-name' )->text()
409 ),
410 $this->msg( 'pageinfo-subpages-value' )
411 ->numParams(
412 $pageCounts['subpages']['total'],
413 $pageCounts['subpages']['redirects'],
414 $pageCounts['subpages']['nonredirects'] )
415 ];
416 }
417
418 if ( $title->inNamespace( NS_CATEGORY ) ) {
419 $category = Category::newFromTitle( $title );
420
421 // $allCount is the total number of cat members,
422 // not the count of how many members are normal pages.
423 $allCount = (int)$category->getPageCount();
424 $subcatCount = (int)$category->getSubcatCount();
425 $fileCount = (int)$category->getFileCount();
426 $pagesCount = $allCount - $subcatCount - $fileCount;
427
428 $pageInfo['category-info'] = [
429 [
430 $this->msg( 'pageinfo-category-total' ),
431 $lang->formatNum( $allCount )
432 ],
433 [
434 $this->msg( 'pageinfo-category-pages' ),
435 $lang->formatNum( $pagesCount )
436 ],
437 [
438 $this->msg( 'pageinfo-category-subcats' ),
439 $lang->formatNum( $subcatCount )
440 ],
441 [
442 $this->msg( 'pageinfo-category-files' ),
443 $lang->formatNum( $fileCount )
444 ]
445 ];
446 }
447
448 // Display image SHA-1 value
449 if ( $title->inNamespace( NS_FILE ) ) {
450 $fileObj = wfFindFile( $title );
451 if ( $fileObj !== false ) {
452 // Convert the base-36 sha1 value obtained from database to base-16
453 $output = Wikimedia\base_convert( $fileObj->getSha1(), 36, 16, 40 );
454 $pageInfo['header-basic'][] = [
455 $this->msg( 'pageinfo-file-hash' ),
456 $output
457 ];
458 }
459 }
460
461 // Page protection
462 $pageInfo['header-restrictions'] = [];
463
464 // Is this page affected by the cascading protection of something which includes it?
465 if ( $title->isCascadeProtected() ) {
466 $cascadingFrom = '';
467 $sources = $title->getCascadeProtectionSources()[0];
468
469 foreach ( $sources as $sourceTitle ) {
470 $cascadingFrom .= Html::rawElement(
471 'li', [], $linkRenderer->makeKnownLink( $sourceTitle ) );
472 }
473
474 $cascadingFrom = Html::rawElement( 'ul', [], $cascadingFrom );
475 $pageInfo['header-restrictions'][] = [
476 $this->msg( 'pageinfo-protect-cascading-from' ),
477 $cascadingFrom
478 ];
479 }
480
481 // Is out protection set to cascade to other pages?
482 if ( $title->areRestrictionsCascading() ) {
483 $pageInfo['header-restrictions'][] = [
484 $this->msg( 'pageinfo-protect-cascading' ),
485 $this->msg( 'pageinfo-protect-cascading-yes' )
486 ];
487 }
488
489 // Page protection
490 foreach ( $title->getRestrictionTypes() as $restrictionType ) {
491 $protectionLevel = implode( ', ', $title->getRestrictions( $restrictionType ) );
492
493 if ( $protectionLevel == '' ) {
494 // Allow all users
495 $message = $this->msg( 'protect-default' )->escaped();
496 } else {
497 // Administrators only
498 // Messages: protect-level-autoconfirmed, protect-level-sysop
499 $message = $this->msg( "protect-level-$protectionLevel" );
500 if ( $message->isDisabled() ) {
501 // Require "$1" permission
502 $message = $this->msg( "protect-fallback", $protectionLevel )->parse();
503 } else {
504 $message = $message->escaped();
505 }
506 }
507 $expiry = $title->getRestrictionExpiry( $restrictionType );
508 $formattedexpiry = $this->msg( 'parentheses',
509 $lang->formatExpiry( $expiry ) )->escaped();
510 $message .= $this->msg( 'word-separator' )->escaped() . $formattedexpiry;
511
512 // Messages: restriction-edit, restriction-move, restriction-create,
513 // restriction-upload
514 $pageInfo['header-restrictions'][] = [
515 $this->msg( "restriction-$restrictionType" ), $message
516 ];
517 }
518 $protectLog = SpecialPage::getTitleFor( 'Log' );
519 $pageInfo['header-restrictions'][] = [
520 'below',
521 $linkRenderer->makeKnownLink(
522 $protectLog,
523 $this->msg( 'pageinfo-view-protect-log' )->text(),
524 [],
525 [ 'type' => 'protect', 'page' => $title->getPrefixedText() ]
526 ),
527 ];
528
529 if ( !$this->page->exists() ) {
530 return $pageInfo;
531 }
532
533 // Edit history
534 $pageInfo['header-edits'] = [];
535
536 $firstRev = $this->page->getOldestRevision();
537 $lastRev = $this->page->getRevision();
538 $batch = new LinkBatch;
539
540 if ( $firstRev ) {
541 $firstRevUser = $firstRev->getUserText( Revision::FOR_THIS_USER );
542 if ( $firstRevUser !== '' ) {
543 $firstRevUserTitle = Title::makeTitle( NS_USER, $firstRevUser );
544 $batch->addObj( $firstRevUserTitle );
545 $batch->addObj( $firstRevUserTitle->getTalkPage() );
546 }
547 }
548
549 if ( $lastRev ) {
550 $lastRevUser = $lastRev->getUserText( Revision::FOR_THIS_USER );
551 if ( $lastRevUser !== '' ) {
552 $lastRevUserTitle = Title::makeTitle( NS_USER, $lastRevUser );
553 $batch->addObj( $lastRevUserTitle );
554 $batch->addObj( $lastRevUserTitle->getTalkPage() );
555 }
556 }
557
558 $batch->execute();
559
560 if ( $firstRev ) {
561 // Page creator
562 $pageInfo['header-edits'][] = [
563 $this->msg( 'pageinfo-firstuser' ),
564 Linker::revUserTools( $firstRev )
565 ];
566
567 // Date of page creation
568 $pageInfo['header-edits'][] = [
569 $this->msg( 'pageinfo-firsttime' ),
570 $linkRenderer->makeKnownLink(
571 $title,
572 $lang->userTimeAndDate( $firstRev->getTimestamp(), $user ),
573 [],
574 [ 'oldid' => $firstRev->getId() ]
575 )
576 ];
577 }
578
579 if ( $lastRev ) {
580 // Latest editor
581 $pageInfo['header-edits'][] = [
582 $this->msg( 'pageinfo-lastuser' ),
583 Linker::revUserTools( $lastRev )
584 ];
585
586 // Date of latest edit
587 $pageInfo['header-edits'][] = [
588 $this->msg( 'pageinfo-lasttime' ),
589 $linkRenderer->makeKnownLink(
590 $title,
591 $lang->userTimeAndDate( $this->page->getTimestamp(), $user ),
592 [],
593 [ 'oldid' => $this->page->getLatest() ]
594 )
595 ];
596 }
597
598 // Total number of edits
599 $pageInfo['header-edits'][] = [
600 $this->msg( 'pageinfo-edits' ), $lang->formatNum( $pageCounts['edits'] )
601 ];
602
603 // Total number of distinct authors
604 if ( $pageCounts['authors'] > 0 ) {
605 $pageInfo['header-edits'][] = [
606 $this->msg( 'pageinfo-authors' ), $lang->formatNum( $pageCounts['authors'] )
607 ];
608 }
609
610 // Recent number of edits (within past 30 days)
611 $pageInfo['header-edits'][] = [
612 $this->msg( 'pageinfo-recent-edits',
613 $lang->formatDuration( $config->get( 'RCMaxAge' ) ) ),
614 $lang->formatNum( $pageCounts['recent_edits'] )
615 ];
616
617 // Recent number of distinct authors
618 $pageInfo['header-edits'][] = [
619 $this->msg( 'pageinfo-recent-authors' ),
620 $lang->formatNum( $pageCounts['recent_authors'] )
621 ];
622
623 // Array of MagicWord objects
624 $magicWords = $services->getMagicWordFactory()->getDoubleUnderscoreArray();
625
626 // Array of magic word IDs
627 $wordIDs = $magicWords->names;
628
629 // Array of IDs => localized magic words
630 $localizedWords = $services->getContentLanguage()->getMagicWords();
631
632 $listItems = [];
633 foreach ( $pageProperties as $property => $value ) {
634 if ( in_array( $property, $wordIDs ) ) {
635 $listItems[] = Html::element( 'li', [], $localizedWords[$property][1] );
636 }
637 }
638
639 $localizedList = Html::rawElement( 'ul', [], implode( '', $listItems ) );
640 $hiddenCategories = $this->page->getHiddenCategories();
641
642 if (
643 count( $listItems ) > 0 ||
644 count( $hiddenCategories ) > 0 ||
645 $pageCounts['transclusion']['from'] > 0 ||
646 $pageCounts['transclusion']['to'] > 0
647 ) {
648 $options = [ 'LIMIT' => $config->get( 'PageInfoTransclusionLimit' ) ];
649 $transcludedTemplates = $title->getTemplateLinksFrom( $options );
650 if ( $config->get( 'MiserMode' ) ) {
651 $transcludedTargets = [];
652 } else {
653 $transcludedTargets = $title->getTemplateLinksTo( $options );
654 }
655
656 // Page properties
657 $pageInfo['header-properties'] = [];
658
659 // Magic words
660 if ( count( $listItems ) > 0 ) {
661 $pageInfo['header-properties'][] = [
662 $this->msg( 'pageinfo-magic-words' )->numParams( count( $listItems ) ),
663 $localizedList
664 ];
665 }
666
667 // Hidden categories
668 if ( count( $hiddenCategories ) > 0 ) {
669 $pageInfo['header-properties'][] = [
670 $this->msg( 'pageinfo-hidden-categories' )
671 ->numParams( count( $hiddenCategories ) ),
672 Linker::formatHiddenCategories( $hiddenCategories )
673 ];
674 }
675
676 // Transcluded templates
677 if ( $pageCounts['transclusion']['from'] > 0 ) {
678 if ( $pageCounts['transclusion']['from'] > count( $transcludedTemplates ) ) {
679 $more = $this->msg( 'morenotlisted' )->escaped();
680 } else {
681 $more = null;
682 }
683
684 $templateListFormatter = new TemplatesOnThisPageFormatter(
685 $this->getContext(),
686 $linkRenderer
687 );
688
689 $pageInfo['header-properties'][] = [
690 $this->msg( 'pageinfo-templates' )
691 ->numParams( $pageCounts['transclusion']['from'] ),
692 $templateListFormatter->format( $transcludedTemplates, false, $more )
693 ];
694 }
695
696 if ( !$config->get( 'MiserMode' ) && $pageCounts['transclusion']['to'] > 0 ) {
697 if ( $pageCounts['transclusion']['to'] > count( $transcludedTargets ) ) {
698 $more = $linkRenderer->makeLink(
699 $whatLinksHere,
700 $this->msg( 'moredotdotdot' )->text(),
701 [],
702 [ 'hidelinks' => 1, 'hideredirs' => 1 ]
703 );
704 } else {
705 $more = null;
706 }
707
708 $templateListFormatter = new TemplatesOnThisPageFormatter(
709 $this->getContext(),
710 $linkRenderer
711 );
712
713 $pageInfo['header-properties'][] = [
714 $this->msg( 'pageinfo-transclusions' )
715 ->numParams( $pageCounts['transclusion']['to'] ),
716 $templateListFormatter->format( $transcludedTargets, false, $more )
717 ];
718 }
719 }
720
721 return $pageInfo;
722 }
723
724 /**
725 * Returns page counts that would be too "expensive" to retrieve by normal means.
726 *
727 * @param WikiPage|Article|Page $page
728 * @return array
729 */
730 protected function pageCounts( Page $page ) {
731 $fname = __METHOD__;
732 $config = $this->context->getConfig();
733 $services = MediaWikiServices::getInstance();
734 $cache = $services->getMainWANObjectCache();
735
736 return $cache->getWithSetCallback(
737 self::getCacheKey( $cache, $page->getTitle(), $page->getLatest() ),
738 WANObjectCache::TTL_WEEK,
739 function ( $oldValue, &$ttl, &$setOpts ) use ( $page, $config, $fname, $services ) {
740 global $wgActorTableSchemaMigrationStage;
741
742 $title = $page->getTitle();
743 $id = $title->getArticleID();
744
745 $dbr = wfGetDB( DB_REPLICA );
746 $dbrWatchlist = wfGetDB( DB_REPLICA, 'watchlist' );
747 $setOpts += Database::getCacheSetOptions( $dbr, $dbrWatchlist );
748
749 if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_READ_NEW ) {
750 $tables = [ 'revision_actor_temp' ];
751 $field = 'revactor_actor';
752 $pageField = 'revactor_page';
753 $tsField = 'revactor_timestamp';
754 $joins = [];
755 } else {
756 $tables = [ 'revision' ];
757 $field = 'rev_user_text';
758 $pageField = 'rev_page';
759 $tsField = 'rev_timestamp';
760 $joins = [];
761 }
762
763 $watchedItemStore = $services->getWatchedItemStore();
764
765 $result = [];
766 $result['watchers'] = $watchedItemStore->countWatchers( $title );
767
768 if ( $config->get( 'ShowUpdatedMarker' ) ) {
769 $updated = wfTimestamp( TS_UNIX, $page->getTimestamp() );
770 $result['visitingWatchers'] = $watchedItemStore->countVisitingWatchers(
771 $title,
772 $updated - $config->get( 'WatchersMaxAge' )
773 );
774 }
775
776 // Total number of edits
777 $edits = (int)$dbr->selectField(
778 'revision',
779 'COUNT(*)',
780 [ 'rev_page' => $id ],
781 $fname
782 );
783 $result['edits'] = $edits;
784
785 // Total number of distinct authors
786 if ( $config->get( 'MiserMode' ) ) {
787 $result['authors'] = 0;
788 } else {
789 $result['authors'] = (int)$dbr->selectField(
790 $tables,
791 "COUNT(DISTINCT $field)",
792 [ $pageField => $id ],
793 $fname,
794 [],
795 $joins
796 );
797 }
798
799 // "Recent" threshold defined by RCMaxAge setting
800 $threshold = $dbr->timestamp( time() - $config->get( 'RCMaxAge' ) );
801
802 // Recent number of edits
803 $edits = (int)$dbr->selectField(
804 'revision',
805 'COUNT(rev_page)',
806 [
807 'rev_page' => $id,
808 "rev_timestamp >= " . $dbr->addQuotes( $threshold )
809 ],
810 $fname
811 );
812 $result['recent_edits'] = $edits;
813
814 // Recent number of distinct authors
815 $result['recent_authors'] = (int)$dbr->selectField(
816 $tables,
817 "COUNT(DISTINCT $field)",
818 [
819 $pageField => $id,
820 "$tsField >= " . $dbr->addQuotes( $threshold )
821 ],
822 $fname,
823 [],
824 $joins
825 );
826
827 // Subpages (if enabled)
828 if ( $services->getNamespaceInfo()->hasSubpages( $title->getNamespace() ) ) {
829 $conds = [ 'page_namespace' => $title->getNamespace() ];
830 $conds[] = 'page_title ' .
831 $dbr->buildLike( $title->getDBkey() . '/', $dbr->anyString() );
832
833 // Subpages of this page (redirects)
834 $conds['page_is_redirect'] = 1;
835 $result['subpages']['redirects'] = (int)$dbr->selectField(
836 'page',
837 'COUNT(page_id)',
838 $conds,
839 $fname
840 );
841
842 // Subpages of this page (non-redirects)
843 $conds['page_is_redirect'] = 0;
844 $result['subpages']['nonredirects'] = (int)$dbr->selectField(
845 'page',
846 'COUNT(page_id)',
847 $conds,
848 $fname
849 );
850
851 // Subpages of this page (total)
852 $result['subpages']['total'] = $result['subpages']['redirects']
853 + $result['subpages']['nonredirects'];
854 }
855
856 // Counts for the number of transclusion links (to/from)
857 if ( $config->get( 'MiserMode' ) ) {
858 $result['transclusion']['to'] = 0;
859 } else {
860 $result['transclusion']['to'] = (int)$dbr->selectField(
861 'templatelinks',
862 'COUNT(tl_from)',
863 [
864 'tl_namespace' => $title->getNamespace(),
865 'tl_title' => $title->getDBkey()
866 ],
867 $fname
868 );
869 }
870
871 $result['transclusion']['from'] = (int)$dbr->selectField(
872 'templatelinks',
873 'COUNT(*)',
874 [ 'tl_from' => $title->getArticleID() ],
875 $fname
876 );
877
878 return $result;
879 }
880 );
881 }
882
883 /**
884 * Returns the name that goes in the "<h1>" page title.
885 *
886 * @return string
887 */
888 protected function getPageTitle() {
889 return $this->msg( 'pageinfo-title', $this->getTitle()->getPrefixedText() )->text();
890 }
891
892 /**
893 * Get a list of contributors of $article
894 * @return string Html
895 */
896 protected function getContributors() {
897 $contributors = $this->page->getContributors();
898 $real_names = [];
899 $user_names = [];
900 $anon_ips = [];
901 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
902
903 # Sift for real versus user names
904 /** @var User $user */
905 foreach ( $contributors as $user ) {
906 $page = $user->isAnon()
907 ? SpecialPage::getTitleFor( 'Contributions', $user->getName() )
908 : $user->getUserPage();
909
910 $hiddenPrefs = $this->context->getConfig()->get( 'HiddenPrefs' );
911 if ( $user->getId() == 0 ) {
912 $anon_ips[] = $linkRenderer->makeLink( $page, $user->getName() );
913 } elseif ( !in_array( 'realname', $hiddenPrefs ) && $user->getRealName() ) {
914 $real_names[] = $linkRenderer->makeLink( $page, $user->getRealName() );
915 } else {
916 $user_names[] = $linkRenderer->makeLink( $page, $user->getName() );
917 }
918 }
919
920 $lang = $this->getLanguage();
921
922 $real = $lang->listToText( $real_names );
923
924 # "ThisSite user(s) A, B and C"
925 if ( count( $user_names ) ) {
926 $user = $this->msg( 'siteusers' )
927 ->rawParams( $lang->listToText( $user_names ) )
928 ->params( count( $user_names ) )->escaped();
929 } else {
930 $user = false;
931 }
932
933 if ( count( $anon_ips ) ) {
934 $anon = $this->msg( 'anonusers' )
935 ->rawParams( $lang->listToText( $anon_ips ) )
936 ->params( count( $anon_ips ) )->escaped();
937 } else {
938 $anon = false;
939 }
940
941 # This is the big list, all mooshed together. We sift for blank strings
942 $fulllist = [];
943 foreach ( [ $real, $user, $anon ] as $s ) {
944 if ( $s !== '' ) {
945 array_push( $fulllist, $s );
946 }
947 }
948
949 $count = count( $fulllist );
950
951 # "Based on work by ..."
952 return $count
953 ? $this->msg( 'othercontribs' )->rawParams(
954 $lang->listToText( $fulllist ) )->params( $count )->escaped()
955 : '';
956 }
957
958 /**
959 * Returns the description that goes below the "<h1>" tag.
960 *
961 * @return string
962 */
963 protected function getDescription() {
964 return '';
965 }
966
967 /**
968 * @param WANObjectCache $cache
969 * @param Title $title
970 * @param int $revId
971 * @return string
972 */
973 protected static function getCacheKey( WANObjectCache $cache, Title $title, $revId ) {
974 return $cache->makeKey( 'infoaction', md5( $title->getPrefixedText() ), $revId, self::VERSION );
975 }
976 }