Merge "Update namespaces for South Azerbaijani (azb) from translatewiki"
[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 /**
26 * Displays information about a page.
27 *
28 * @ingroup Actions
29 */
30 class InfoAction extends FormlessAction {
31 const CACHE_VERSION = '2013-03-17';
32
33 /**
34 * Returns the name of the action this object responds to.
35 *
36 * @return string Lowercase name
37 */
38 public function getName() {
39 return 'info';
40 }
41
42 /**
43 * Whether this action can still be executed by a blocked user.
44 *
45 * @return bool
46 */
47 public function requiresUnblock() {
48 return false;
49 }
50
51 /**
52 * Whether this action requires the wiki not to be locked.
53 *
54 * @return bool
55 */
56 public function requiresWrite() {
57 return false;
58 }
59
60 /**
61 * Clear the info cache for a given Title.
62 *
63 * @since 1.22
64 * @param Title $title Title to clear cache for
65 */
66 public static function invalidateCache( Title $title ) {
67 global $wgMemc;
68
69 $revision = Revision::newFromTitle( $title, 0, Revision::READ_LATEST );
70 if ( $revision !== null ) {
71 $key = wfMemcKey( 'infoaction', sha1( $title->getPrefixedText() ), $revision->getId() );
72 $wgMemc->delete( $key );
73 }
74 }
75
76 /**
77 * Shows page information on GET request.
78 *
79 * @return string Page information that will be added to the output
80 */
81 public function onView() {
82 $content = '';
83
84 // Validate revision
85 $oldid = $this->page->getOldID();
86 if ( $oldid ) {
87 $revision = $this->page->getRevisionFetched();
88
89 // Revision is missing
90 if ( $revision === null ) {
91 return $this->msg( 'missing-revision', $oldid )->parse();
92 }
93
94 // Revision is not current
95 if ( !$revision->isCurrent() ) {
96 return $this->msg( 'pageinfo-not-current' )->plain();
97 }
98 }
99
100 // Page header
101 if ( !$this->msg( 'pageinfo-header' )->isDisabled() ) {
102 $content .= $this->msg( 'pageinfo-header' )->parse();
103 }
104
105 // Hide "This page is a member of # hidden categories" explanation
106 $content .= Html::element( 'style', array(),
107 '.mw-hiddenCategoriesExplanation { display: none; }' ) . "\n";
108
109 // Hide "Templates used on this page" explanation
110 $content .= Html::element( 'style', array(),
111 '.mw-templatesUsedExplanation { display: none; }' ) . "\n";
112
113 // Get page information
114 $pageInfo = $this->pageInfo();
115
116 // Allow extensions to add additional information
117 Hooks::run( 'InfoAction', array( $this->getContext(), &$pageInfo ) );
118
119 // Render page information
120 foreach ( $pageInfo as $header => $infoTable ) {
121 // Messages:
122 // pageinfo-header-basic, pageinfo-header-edits, pageinfo-header-restrictions,
123 // pageinfo-header-properties, pageinfo-category-info
124 $content .= $this->makeHeader( $this->msg( "pageinfo-${header}" )->escaped() ) . "\n";
125 $table = "\n";
126 foreach ( $infoTable as $infoRow ) {
127 $name = ( $infoRow[0] instanceof Message ) ? $infoRow[0]->escaped() : $infoRow[0];
128 $value = ( $infoRow[1] instanceof Message ) ? $infoRow[1]->escaped() : $infoRow[1];
129 $id = ( $infoRow[0] instanceof Message ) ? $infoRow[0]->getKey() : null;
130 $table = $this->addRow( $table, $name, $value, $id ) . "\n";
131 }
132 $content = $this->addTable( $content, $table ) . "\n";
133 }
134
135 // Page footer
136 if ( !$this->msg( 'pageinfo-footer' )->isDisabled() ) {
137 $content .= $this->msg( 'pageinfo-footer' )->parse();
138 }
139
140 // Page credits
141 /*if ( $this->page->exists() ) {
142 $content .= Html::rawElement( 'div', array( 'id' => 'mw-credits' ), $this->getContributors() );
143 }*/
144
145 return $content;
146 }
147
148 /**
149 * Creates a header that can be added to the output.
150 *
151 * @param string $header The header text.
152 * @return string The HTML.
153 */
154 protected function makeHeader( $header ) {
155 $spanAttribs = array( 'class' => 'mw-headline', 'id' => Sanitizer::escapeId( $header ) );
156
157 return Html::rawElement( 'h2', array(), Html::element( 'span', $spanAttribs, $header ) );
158 }
159
160 /**
161 * Adds a row to a table that will be added to the content.
162 *
163 * @param string $table The table that will be added to the content
164 * @param string $name The name of the row
165 * @param string $value The value of the row
166 * @param string $id The ID to use for the 'tr' element
167 * @return string The table with the row added
168 */
169 protected function addRow( $table, $name, $value, $id ) {
170 return $table . Html::rawElement( 'tr', $id === null ? array() : array( 'id' => 'mw-' . $id ),
171 Html::rawElement( 'td', array( 'style' => 'vertical-align: top;' ), $name ) .
172 Html::rawElement( 'td', array(), $value )
173 );
174 }
175
176 /**
177 * Adds a table to the content that will be added to the output.
178 *
179 * @param string $content The content that will be added to the output
180 * @param string $table The table
181 * @return string The content with the table added
182 */
183 protected function addTable( $content, $table ) {
184 return $content . Html::rawElement( 'table', array( 'class' => 'wikitable mw-page-info' ),
185 $table );
186 }
187
188 /**
189 * Returns page information in an easily-manipulated format. Array keys are used so extensions
190 * may add additional information in arbitrary positions. Array values are arrays with one
191 * element to be rendered as a header, arrays with two elements to be rendered as a table row.
192 *
193 * @return array
194 */
195 protected function pageInfo() {
196 global $wgContLang, $wgMemc;
197
198 $user = $this->getUser();
199 $lang = $this->getLanguage();
200 $title = $this->getTitle();
201 $id = $title->getArticleID();
202 $config = $this->context->getConfig();
203
204 $memcKey = wfMemcKey( 'infoaction',
205 sha1( $title->getPrefixedText() ), $this->page->getLatest() );
206 $pageCounts = $wgMemc->get( $memcKey );
207 $version = isset( $pageCounts['cacheversion'] ) ? $pageCounts['cacheversion'] : false;
208 if ( $pageCounts === false || $version !== self::CACHE_VERSION ) {
209 // Get page information that would be too "expensive" to retrieve by normal means
210 $pageCounts = $this->pageCounts( $title );
211 $pageCounts['cacheversion'] = self::CACHE_VERSION;
212
213 $wgMemc->set( $memcKey, $pageCounts );
214 }
215
216 // Get page properties
217 $dbr = wfGetDB( DB_SLAVE );
218 $result = $dbr->select(
219 'page_props',
220 array( 'pp_propname', 'pp_value' ),
221 array( 'pp_page' => $id ),
222 __METHOD__
223 );
224
225 $pageProperties = array();
226 foreach ( $result as $row ) {
227 $pageProperties[$row->pp_propname] = $row->pp_value;
228 }
229
230 // Basic information
231 $pageInfo = array();
232 $pageInfo['header-basic'] = array();
233
234 // Display title
235 $displayTitle = $title->getPrefixedText();
236 if ( !empty( $pageProperties['displaytitle'] ) ) {
237 $displayTitle = $pageProperties['displaytitle'];
238 }
239
240 $pageInfo['header-basic'][] = array(
241 $this->msg( 'pageinfo-display-title' ), $displayTitle
242 );
243
244 // Is it a redirect? If so, where to?
245 if ( $title->isRedirect() ) {
246 $pageInfo['header-basic'][] = array(
247 $this->msg( 'pageinfo-redirectsto' ),
248 Linker::link( $this->page->getRedirectTarget() ) .
249 $this->msg( 'word-separator' )->escaped() .
250 $this->msg( 'parentheses' )->rawParams( Linker::link(
251 $this->page->getRedirectTarget(),
252 $this->msg( 'pageinfo-redirectsto-info' )->escaped(),
253 array(),
254 array( 'action' => 'info' )
255 ) )->escaped()
256 );
257 }
258
259 // Default sort key
260 $sortKey = $title->getCategorySortkey();
261 if ( !empty( $pageProperties['defaultsort'] ) ) {
262 $sortKey = $pageProperties['defaultsort'];
263 }
264
265 $sortKey = htmlspecialchars( $sortKey );
266 $pageInfo['header-basic'][] = array( $this->msg( 'pageinfo-default-sort' ), $sortKey );
267
268 // Page length (in bytes)
269 $pageInfo['header-basic'][] = array(
270 $this->msg( 'pageinfo-length' ), $lang->formatNum( $title->getLength() )
271 );
272
273 // Page ID (number not localised, as it's a database ID)
274 $pageInfo['header-basic'][] = array( $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 if ( $config->get( 'PageLanguageUseDB' )
280 && $this->getTitle()->userCan( 'pagelang', $this->getUser() )
281 ) {
282 // Link to Special:PageLanguage with pre-filled page title if user has permissions
283 $titleObj = SpecialPage::getTitleFor( 'PageLanguage', $title->getPrefixedText() );
284 $langDisp = Linker::link(
285 $titleObj,
286 $this->msg( 'pageinfo-language' )->escaped()
287 );
288 } else {
289 // Display just the message
290 $langDisp = $this->msg( 'pageinfo-language' )->escaped();
291 }
292
293 $pageInfo['header-basic'][] = array( $langDisp,
294 Language::fetchLanguageName( $pageLang, $lang->getCode() )
295 . ' ' . $this->msg( 'parentheses', $pageLang )->escaped() );
296
297 // Content model of the page
298 $pageInfo['header-basic'][] = array(
299 $this->msg( 'pageinfo-content-model' ),
300 htmlspecialchars( ContentHandler::getLocalizedName( $title->getContentModel() ) )
301 );
302
303 // Search engine status
304 $pOutput = new ParserOutput();
305 if ( isset( $pageProperties['noindex'] ) ) {
306 $pOutput->setIndexPolicy( 'noindex' );
307 }
308 if ( isset( $pageProperties['index'] ) ) {
309 $pOutput->setIndexPolicy( 'index' );
310 }
311
312 // Use robot policy logic
313 $policy = $this->page->getRobotPolicy( 'view', $pOutput );
314 $pageInfo['header-basic'][] = array(
315 // Messages: pageinfo-robot-index, pageinfo-robot-noindex
316 $this->msg( 'pageinfo-robot-policy' ), $this->msg( "pageinfo-robot-${policy['index']}" )
317 );
318
319 $unwatchedPageThreshold = $config->get( 'UnwatchedPageThreshold' );
320 if (
321 $user->isAllowed( 'unwatchedpages' ) ||
322 ( $unwatchedPageThreshold !== false &&
323 $pageCounts['watchers'] >= $unwatchedPageThreshold )
324 ) {
325 // Number of page watchers
326 $pageInfo['header-basic'][] = array(
327 $this->msg( 'pageinfo-watchers' ), $lang->formatNum( $pageCounts['watchers'] )
328 );
329 } elseif ( $unwatchedPageThreshold !== false ) {
330 $pageInfo['header-basic'][] = array(
331 $this->msg( 'pageinfo-watchers' ),
332 $this->msg( 'pageinfo-few-watchers' )->numParams( $unwatchedPageThreshold )
333 );
334 }
335
336 // Redirects to this page
337 $whatLinksHere = SpecialPage::getTitleFor( 'Whatlinkshere', $title->getPrefixedText() );
338 $pageInfo['header-basic'][] = array(
339 Linker::link(
340 $whatLinksHere,
341 $this->msg( 'pageinfo-redirects-name' )->escaped(),
342 array(),
343 array(
344 'hidelinks' => 1,
345 'hidetrans' => 1,
346 'hideimages' => $title->getNamespace() == NS_FILE
347 )
348 ),
349 $this->msg( 'pageinfo-redirects-value' )
350 ->numParams( count( $title->getRedirectsHere() ) )
351 );
352
353 // Is it counted as a content page?
354 if ( $this->page->isCountable() ) {
355 $pageInfo['header-basic'][] = array(
356 $this->msg( 'pageinfo-contentpage' ),
357 $this->msg( 'pageinfo-contentpage-yes' )
358 );
359 }
360
361 // Subpages of this page, if subpages are enabled for the current NS
362 if ( MWNamespace::hasSubpages( $title->getNamespace() ) ) {
363 $prefixIndex = SpecialPage::getTitleFor( 'Prefixindex', $title->getPrefixedText() . '/' );
364 $pageInfo['header-basic'][] = array(
365 Linker::link( $prefixIndex, $this->msg( 'pageinfo-subpages-name' )->escaped() ),
366 $this->msg( 'pageinfo-subpages-value' )
367 ->numParams(
368 $pageCounts['subpages']['total'],
369 $pageCounts['subpages']['redirects'],
370 $pageCounts['subpages']['nonredirects'] )
371 );
372 }
373
374 if ( $title->inNamespace( NS_CATEGORY ) ) {
375 $category = Category::newFromTitle( $title );
376
377 // $allCount is the total number of cat members,
378 // not the count of how many members are normal pages.
379 $allCount = (int)$category->getPageCount();
380 $subcatCount = (int)$category->getSubcatCount();
381 $fileCount = (int)$category->getFileCount();
382 $pagesCount = $allCount - $subcatCount - $fileCount;
383
384 $pageInfo['category-info'] = array(
385 array(
386 $this->msg( 'pageinfo-category-total' ),
387 $lang->formatNum( $allCount )
388 ),
389 array(
390 $this->msg( 'pageinfo-category-pages' ),
391 $lang->formatNum( $pagesCount )
392 ),
393 array(
394 $this->msg( 'pageinfo-category-subcats' ),
395 $lang->formatNum( $subcatCount )
396 ),
397 array(
398 $this->msg( 'pageinfo-category-files' ),
399 $lang->formatNum( $fileCount )
400 )
401 );
402 }
403
404 // Page protection
405 $pageInfo['header-restrictions'] = array();
406
407 // Is this page affected by the cascading protection of something which includes it?
408 if ( $title->isCascadeProtected() ) {
409 $cascadingFrom = '';
410 $sources = $title->getCascadeProtectionSources(); // Array deferencing is in PHP 5.4 :(
411
412 foreach ( $sources[0] as $sourceTitle ) {
413 $cascadingFrom .= Html::rawElement( 'li', array(), Linker::linkKnown( $sourceTitle ) );
414 }
415
416 $cascadingFrom = Html::rawElement( 'ul', array(), $cascadingFrom );
417 $pageInfo['header-restrictions'][] = array(
418 $this->msg( 'pageinfo-protect-cascading-from' ),
419 $cascadingFrom
420 );
421 }
422
423 // Is out protection set to cascade to other pages?
424 if ( $title->areRestrictionsCascading() ) {
425 $pageInfo['header-restrictions'][] = array(
426 $this->msg( 'pageinfo-protect-cascading' ),
427 $this->msg( 'pageinfo-protect-cascading-yes' )
428 );
429 }
430
431 // Page protection
432 foreach ( $title->getRestrictionTypes() as $restrictionType ) {
433 $protectionLevel = implode( ', ', $title->getRestrictions( $restrictionType ) );
434
435 if ( $protectionLevel == '' ) {
436 // Allow all users
437 $message = $this->msg( 'protect-default' )->escaped();
438 } else {
439 // Administrators only
440 // Messages: protect-level-autoconfirmed, protect-level-sysop
441 $message = $this->msg( "protect-level-$protectionLevel" );
442 if ( $message->isDisabled() ) {
443 // Require "$1" permission
444 $message = $this->msg( "protect-fallback", $protectionLevel )->parse();
445 } else {
446 $message = $message->escaped();
447 }
448 }
449 $expiry = $title->getRestrictionExpiry( $restrictionType );
450 $formattedexpiry = $this->msg( 'parentheses', $this->getLanguage()->formatExpiry( $expiry ) )->escaped();
451 $message .= $this->msg( 'word-separator' )->escaped() . $formattedexpiry;
452
453 // Messages: restriction-edit, restriction-move, restriction-create,
454 // restriction-upload
455 $pageInfo['header-restrictions'][] = array(
456 $this->msg( "restriction-$restrictionType" ), $message
457 );
458 }
459
460 if ( !$this->page->exists() ) {
461 return $pageInfo;
462 }
463
464 // Edit history
465 $pageInfo['header-edits'] = array();
466
467 $firstRev = $this->page->getOldestRevision();
468 $lastRev = $this->page->getRevision();
469 $batch = new LinkBatch;
470
471 if ( $firstRev ) {
472 $firstRevUser = $firstRev->getUserText( Revision::FOR_THIS_USER );
473 if ( $firstRevUser !== '' ) {
474 $batch->add( NS_USER, $firstRevUser );
475 $batch->add( NS_USER_TALK, $firstRevUser );
476 }
477 }
478
479 if ( $lastRev ) {
480 $lastRevUser = $lastRev->getUserText( Revision::FOR_THIS_USER );
481 if ( $lastRevUser !== '' ) {
482 $batch->add( NS_USER, $lastRevUser );
483 $batch->add( NS_USER_TALK, $lastRevUser );
484 }
485 }
486
487 $batch->execute();
488
489 if ( $firstRev ) {
490 // Page creator
491 $pageInfo['header-edits'][] = array(
492 $this->msg( 'pageinfo-firstuser' ),
493 Linker::revUserTools( $firstRev )
494 );
495
496 // Date of page creation
497 $pageInfo['header-edits'][] = array(
498 $this->msg( 'pageinfo-firsttime' ),
499 Linker::linkKnown(
500 $title,
501 htmlspecialchars( $lang->userTimeAndDate( $firstRev->getTimestamp(), $user ) ),
502 array(),
503 array( 'oldid' => $firstRev->getId() )
504 )
505 );
506 }
507
508 if ( $lastRev ) {
509 // Latest editor
510 $pageInfo['header-edits'][] = array(
511 $this->msg( 'pageinfo-lastuser' ),
512 Linker::revUserTools( $lastRev )
513 );
514
515 // Date of latest edit
516 $pageInfo['header-edits'][] = array(
517 $this->msg( 'pageinfo-lasttime' ),
518 Linker::linkKnown(
519 $title,
520 htmlspecialchars( $lang->userTimeAndDate( $this->page->getTimestamp(), $user ) ),
521 array(),
522 array( 'oldid' => $this->page->getLatest() )
523 )
524 );
525 }
526
527 // Total number of edits
528 $pageInfo['header-edits'][] = array(
529 $this->msg( 'pageinfo-edits' ), $lang->formatNum( $pageCounts['edits'] )
530 );
531
532 // Total number of distinct authors
533 $pageInfo['header-edits'][] = array(
534 $this->msg( 'pageinfo-authors' ), $lang->formatNum( $pageCounts['authors'] )
535 );
536
537 // Recent number of edits (within past 30 days)
538 $pageInfo['header-edits'][] = array(
539 $this->msg( 'pageinfo-recent-edits', $lang->formatDuration( $config->get( 'RCMaxAge' ) ) ),
540 $lang->formatNum( $pageCounts['recent_edits'] )
541 );
542
543 // Recent number of distinct authors
544 $pageInfo['header-edits'][] = array(
545 $this->msg( 'pageinfo-recent-authors' ), $lang->formatNum( $pageCounts['recent_authors'] )
546 );
547
548 // Array of MagicWord objects
549 $magicWords = MagicWord::getDoubleUnderscoreArray();
550
551 // Array of magic word IDs
552 $wordIDs = $magicWords->names;
553
554 // Array of IDs => localized magic words
555 $localizedWords = $wgContLang->getMagicWords();
556
557 $listItems = array();
558 foreach ( $pageProperties as $property => $value ) {
559 if ( in_array( $property, $wordIDs ) ) {
560 $listItems[] = Html::element( 'li', array(), $localizedWords[$property][1] );
561 }
562 }
563
564 $localizedList = Html::rawElement( 'ul', array(), implode( '', $listItems ) );
565 $hiddenCategories = $this->page->getHiddenCategories();
566
567 if (
568 count( $listItems ) > 0 ||
569 count( $hiddenCategories ) > 0 ||
570 $pageCounts['transclusion']['from'] > 0 ||
571 $pageCounts['transclusion']['to'] > 0
572 ) {
573 $options = array( 'LIMIT' => $config->get( 'PageInfoTransclusionLimit' ) );
574 $transcludedTemplates = $title->getTemplateLinksFrom( $options );
575 if ( $config->get( 'MiserMode' ) ) {
576 $transcludedTargets = array();
577 } else {
578 $transcludedTargets = $title->getTemplateLinksTo( $options );
579 }
580
581 // Page properties
582 $pageInfo['header-properties'] = array();
583
584 // Magic words
585 if ( count( $listItems ) > 0 ) {
586 $pageInfo['header-properties'][] = array(
587 $this->msg( 'pageinfo-magic-words' )->numParams( count( $listItems ) ),
588 $localizedList
589 );
590 }
591
592 // Hidden categories
593 if ( count( $hiddenCategories ) > 0 ) {
594 $pageInfo['header-properties'][] = array(
595 $this->msg( 'pageinfo-hidden-categories' )
596 ->numParams( count( $hiddenCategories ) ),
597 Linker::formatHiddenCategories( $hiddenCategories )
598 );
599 }
600
601 // Transcluded templates
602 if ( $pageCounts['transclusion']['from'] > 0 ) {
603 if ( $pageCounts['transclusion']['from'] > count( $transcludedTemplates ) ) {
604 $more = $this->msg( 'morenotlisted' )->escaped();
605 } else {
606 $more = null;
607 }
608
609 $pageInfo['header-properties'][] = array(
610 $this->msg( 'pageinfo-templates' )
611 ->numParams( $pageCounts['transclusion']['from'] ),
612 Linker::formatTemplates(
613 $transcludedTemplates,
614 false,
615 false,
616 $more )
617 );
618 }
619
620 if ( !$config->get( 'MiserMode' ) && $pageCounts['transclusion']['to'] > 0 ) {
621 if ( $pageCounts['transclusion']['to'] > count( $transcludedTargets ) ) {
622 $more = Linker::link(
623 $whatLinksHere,
624 $this->msg( 'moredotdotdot' )->escaped(),
625 array(),
626 array( 'hidelinks' => 1, 'hideredirs' => 1 )
627 );
628 } else {
629 $more = null;
630 }
631
632 $pageInfo['header-properties'][] = array(
633 $this->msg( 'pageinfo-transclusions' )
634 ->numParams( $pageCounts['transclusion']['to'] ),
635 Linker::formatTemplates(
636 $transcludedTargets,
637 false,
638 false,
639 $more )
640 );
641 }
642 }
643
644 return $pageInfo;
645 }
646
647 /**
648 * Returns page counts that would be too "expensive" to retrieve by normal means.
649 *
650 * @param Title $title Title to get counts for
651 * @return array
652 */
653 protected function pageCounts( Title $title ) {
654 $id = $title->getArticleID();
655 $config = $this->context->getConfig();
656
657 $dbr = wfGetDB( DB_SLAVE );
658 $result = array();
659
660 // Number of page watchers
661 $watchers = (int)$dbr->selectField(
662 'watchlist',
663 'COUNT(*)',
664 array(
665 'wl_namespace' => $title->getNamespace(),
666 'wl_title' => $title->getDBkey(),
667 ),
668 __METHOD__
669 );
670 $result['watchers'] = $watchers;
671
672 // Total number of edits
673 $edits = (int)$dbr->selectField(
674 'revision',
675 'COUNT(rev_page)',
676 array( 'rev_page' => $id ),
677 __METHOD__
678 );
679 $result['edits'] = $edits;
680
681 // Total number of distinct authors
682 $authors = (int)$dbr->selectField(
683 'revision',
684 'COUNT(DISTINCT rev_user_text)',
685 array( 'rev_page' => $id ),
686 __METHOD__
687 );
688 $result['authors'] = $authors;
689
690 // "Recent" threshold defined by RCMaxAge setting
691 $threshold = $dbr->timestamp( time() - $config->get( 'RCMaxAge' ) );
692
693 // Recent number of edits
694 $edits = (int)$dbr->selectField(
695 'revision',
696 'COUNT(rev_page)',
697 array(
698 'rev_page' => $id,
699 "rev_timestamp >= " . $dbr->addQuotes( $threshold )
700 ),
701 __METHOD__
702 );
703 $result['recent_edits'] = $edits;
704
705 // Recent number of distinct authors
706 $authors = (int)$dbr->selectField(
707 'revision',
708 'COUNT(DISTINCT rev_user_text)',
709 array(
710 'rev_page' => $id,
711 "rev_timestamp >= " . $dbr->addQuotes( $threshold )
712 ),
713 __METHOD__
714 );
715 $result['recent_authors'] = $authors;
716
717 // Subpages (if enabled)
718 if ( MWNamespace::hasSubpages( $title->getNamespace() ) ) {
719 $conds = array( 'page_namespace' => $title->getNamespace() );
720 $conds[] = 'page_title ' . $dbr->buildLike( $title->getDBkey() . '/', $dbr->anyString() );
721
722 // Subpages of this page (redirects)
723 $conds['page_is_redirect'] = 1;
724 $result['subpages']['redirects'] = (int)$dbr->selectField(
725 'page',
726 'COUNT(page_id)',
727 $conds,
728 __METHOD__ );
729
730 // Subpages of this page (non-redirects)
731 $conds['page_is_redirect'] = 0;
732 $result['subpages']['nonredirects'] = (int)$dbr->selectField(
733 'page',
734 'COUNT(page_id)',
735 $conds,
736 __METHOD__
737 );
738
739 // Subpages of this page (total)
740 $result['subpages']['total'] = $result['subpages']['redirects']
741 + $result['subpages']['nonredirects'];
742 }
743
744 // Counts for the number of transclusion links (to/from)
745 if ( $config->get( 'MiserMode' ) ) {
746 $result['transclusion']['to'] = 0;
747 } else {
748 $result['transclusion']['to'] = (int)$dbr->selectField(
749 'templatelinks',
750 'COUNT(tl_from)',
751 array(
752 'tl_namespace' => $title->getNamespace(),
753 'tl_title' => $title->getDBkey()
754 ),
755 __METHOD__
756 );
757 }
758
759 $result['transclusion']['from'] = (int)$dbr->selectField(
760 'templatelinks',
761 'COUNT(*)',
762 array( 'tl_from' => $title->getArticleID() ),
763 __METHOD__
764 );
765
766 return $result;
767 }
768
769 /**
770 * Returns the name that goes in the "<h1>" page title.
771 *
772 * @return string
773 */
774 protected function getPageTitle() {
775 return $this->msg( 'pageinfo-title', $this->getTitle()->getPrefixedText() )->text();
776 }
777
778 /**
779 * Get a list of contributors of $article
780 * @return string Html
781 */
782 protected function getContributors() {
783 $contributors = $this->page->getContributors();
784 $real_names = array();
785 $user_names = array();
786 $anon_ips = array();
787
788 # Sift for real versus user names
789 /** @var $user User */
790 foreach ( $contributors as $user ) {
791 $page = $user->isAnon()
792 ? SpecialPage::getTitleFor( 'Contributions', $user->getName() )
793 : $user->getUserPage();
794
795 $hiddenPrefs = $this->context->getConfig()->get( 'HiddenPrefs' );
796 if ( $user->getID() == 0 ) {
797 $anon_ips[] = Linker::link( $page, htmlspecialchars( $user->getName() ) );
798 } elseif ( !in_array( 'realname', $hiddenPrefs ) && $user->getRealName() ) {
799 $real_names[] = Linker::link( $page, htmlspecialchars( $user->getRealName() ) );
800 } else {
801 $user_names[] = Linker::link( $page, htmlspecialchars( $user->getName() ) );
802 }
803 }
804
805 $lang = $this->getLanguage();
806
807 $real = $lang->listToText( $real_names );
808
809 # "ThisSite user(s) A, B and C"
810 if ( count( $user_names ) ) {
811 $user = $this->msg( 'siteusers' )->rawParams( $lang->listToText( $user_names ) )->params(
812 count( $user_names ) )->escaped();
813 } else {
814 $user = false;
815 }
816
817 if ( count( $anon_ips ) ) {
818 $anon = $this->msg( 'anonusers' )->rawParams( $lang->listToText( $anon_ips ) )->params(
819 count( $anon_ips ) )->escaped();
820 } else {
821 $anon = false;
822 }
823
824 # This is the big list, all mooshed together. We sift for blank strings
825 $fulllist = array();
826 foreach ( array( $real, $user, $anon ) as $s ) {
827 if ( $s !== '' ) {
828 array_push( $fulllist, $s );
829 }
830 }
831
832 $count = count( $fulllist );
833
834 # "Based on work by ..."
835 return $count
836 ? $this->msg( 'othercontribs' )->rawParams(
837 $lang->listToText( $fulllist ) )->params( $count )->escaped()
838 : '';
839 }
840
841 /**
842 * Returns the description that goes below the "<h1>" tag.
843 *
844 * @return string
845 */
846 protected function getDescription() {
847 return '';
848 }
849 }