5 * Created on Sep 25, 2006
7 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
26 use MediaWiki\MediaWikiServices
;
27 use MediaWiki\Linker\LinkTarget
;
30 * A query module to show basic page information.
34 class ApiQueryInfo
extends ApiQueryBase
{
36 private $fld_protection = false, $fld_talkid = false,
37 $fld_subjectid = false, $fld_url = false,
38 $fld_readable = false, $fld_watched = false,
39 $fld_watchers = false, $fld_visitingwatchers = false,
40 $fld_notificationtimestamp = false,
41 $fld_preload = false, $fld_displaytitle = false;
52 private $pageRestrictions, $pageIsRedir, $pageIsNew, $pageTouched,
53 $pageLatest, $pageLength;
55 private $protections, $restrictionTypes, $watched, $watchers, $visitingwatchers,
56 $notificationtimestamps, $talkids, $subjectids, $displaytitles;
57 private $showZeroWatchers = false;
59 private $tokenFunctions;
61 private $countTestedActions = 0;
63 public function __construct( ApiQuery
$query, $moduleName ) {
64 parent
::__construct( $query, $moduleName, 'in' );
68 * @param ApiPageSet $pageSet
71 public function requestExtraData( $pageSet ) {
72 $pageSet->requestField( 'page_restrictions' );
73 // If the pageset is resolving redirects we won't get page_is_redirect.
74 // But we can't know for sure until the pageset is executed (revids may
75 // turn it off), so request it unconditionally.
76 $pageSet->requestField( 'page_is_redirect' );
77 $pageSet->requestField( 'page_is_new' );
78 $config = $this->getConfig();
79 $pageSet->requestField( 'page_touched' );
80 $pageSet->requestField( 'page_latest' );
81 $pageSet->requestField( 'page_len' );
82 if ( $config->get( 'ContentHandlerUseDB' ) ) {
83 $pageSet->requestField( 'page_content_model' );
85 if ( $config->get( 'PageLanguageUseDB' ) ) {
86 $pageSet->requestField( 'page_lang' );
91 * Get an array mapping token names to their handler functions.
92 * The prototype for a token function is func($pageid, $title)
93 * it should return a token or false (permission denied)
94 * @deprecated since 1.24
95 * @return array [ tokenname => function ]
97 protected function getTokenFunctions() {
98 // Don't call the hooks twice
99 if ( isset( $this->tokenFunctions
) ) {
100 return $this->tokenFunctions
;
103 // If we're in a mode that breaks the same-origin policy, no tokens can
105 if ( $this->lacksSameOriginSecurity() ) {
109 $this->tokenFunctions
= [
110 'edit' => [ 'ApiQueryInfo', 'getEditToken' ],
111 'delete' => [ 'ApiQueryInfo', 'getDeleteToken' ],
112 'protect' => [ 'ApiQueryInfo', 'getProtectToken' ],
113 'move' => [ 'ApiQueryInfo', 'getMoveToken' ],
114 'block' => [ 'ApiQueryInfo', 'getBlockToken' ],
115 'unblock' => [ 'ApiQueryInfo', 'getUnblockToken' ],
116 'email' => [ 'ApiQueryInfo', 'getEmailToken' ],
117 'import' => [ 'ApiQueryInfo', 'getImportToken' ],
118 'watch' => [ 'ApiQueryInfo', 'getWatchToken' ],
120 Hooks
::run( 'APIQueryInfoTokens', [ &$this->tokenFunctions
] );
122 return $this->tokenFunctions
;
125 static protected $cachedTokens = [];
128 * @deprecated since 1.24
130 public static function resetTokenCache() {
131 ApiQueryInfo
::$cachedTokens = [];
135 * @deprecated since 1.24
137 public static function getEditToken( $pageid, $title ) {
138 // We could check for $title->userCan('edit') here,
139 // but that's too expensive for this purpose
140 // and would break caching
142 if ( !$wgUser->isAllowed( 'edit' ) ) {
146 // The token is always the same, let's exploit that
147 if ( !isset( ApiQueryInfo
::$cachedTokens['edit'] ) ) {
148 ApiQueryInfo
::$cachedTokens['edit'] = $wgUser->getEditToken();
151 return ApiQueryInfo
::$cachedTokens['edit'];
155 * @deprecated since 1.24
157 public static function getDeleteToken( $pageid, $title ) {
159 if ( !$wgUser->isAllowed( 'delete' ) ) {
163 // The token is always the same, let's exploit that
164 if ( !isset( ApiQueryInfo
::$cachedTokens['delete'] ) ) {
165 ApiQueryInfo
::$cachedTokens['delete'] = $wgUser->getEditToken();
168 return ApiQueryInfo
::$cachedTokens['delete'];
172 * @deprecated since 1.24
174 public static function getProtectToken( $pageid, $title ) {
176 if ( !$wgUser->isAllowed( 'protect' ) ) {
180 // The token is always the same, let's exploit that
181 if ( !isset( ApiQueryInfo
::$cachedTokens['protect'] ) ) {
182 ApiQueryInfo
::$cachedTokens['protect'] = $wgUser->getEditToken();
185 return ApiQueryInfo
::$cachedTokens['protect'];
189 * @deprecated since 1.24
191 public static function getMoveToken( $pageid, $title ) {
193 if ( !$wgUser->isAllowed( 'move' ) ) {
197 // The token is always the same, let's exploit that
198 if ( !isset( ApiQueryInfo
::$cachedTokens['move'] ) ) {
199 ApiQueryInfo
::$cachedTokens['move'] = $wgUser->getEditToken();
202 return ApiQueryInfo
::$cachedTokens['move'];
206 * @deprecated since 1.24
208 public static function getBlockToken( $pageid, $title ) {
210 if ( !$wgUser->isAllowed( 'block' ) ) {
214 // The token is always the same, let's exploit that
215 if ( !isset( ApiQueryInfo
::$cachedTokens['block'] ) ) {
216 ApiQueryInfo
::$cachedTokens['block'] = $wgUser->getEditToken();
219 return ApiQueryInfo
::$cachedTokens['block'];
223 * @deprecated since 1.24
225 public static function getUnblockToken( $pageid, $title ) {
226 // Currently, this is exactly the same as the block token
227 return self
::getBlockToken( $pageid, $title );
231 * @deprecated since 1.24
233 public static function getEmailToken( $pageid, $title ) {
235 if ( !$wgUser->canSendEmail() ||
$wgUser->isBlockedFromEmailuser() ) {
239 // The token is always the same, let's exploit that
240 if ( !isset( ApiQueryInfo
::$cachedTokens['email'] ) ) {
241 ApiQueryInfo
::$cachedTokens['email'] = $wgUser->getEditToken();
244 return ApiQueryInfo
::$cachedTokens['email'];
248 * @deprecated since 1.24
250 public static function getImportToken( $pageid, $title ) {
252 if ( !$wgUser->isAllowedAny( 'import', 'importupload' ) ) {
256 // The token is always the same, let's exploit that
257 if ( !isset( ApiQueryInfo
::$cachedTokens['import'] ) ) {
258 ApiQueryInfo
::$cachedTokens['import'] = $wgUser->getEditToken();
261 return ApiQueryInfo
::$cachedTokens['import'];
265 * @deprecated since 1.24
267 public static function getWatchToken( $pageid, $title ) {
269 if ( !$wgUser->isLoggedIn() ) {
273 // The token is always the same, let's exploit that
274 if ( !isset( ApiQueryInfo
::$cachedTokens['watch'] ) ) {
275 ApiQueryInfo
::$cachedTokens['watch'] = $wgUser->getEditToken( 'watch' );
278 return ApiQueryInfo
::$cachedTokens['watch'];
282 * @deprecated since 1.24
284 public static function getOptionsToken( $pageid, $title ) {
286 if ( !$wgUser->isLoggedIn() ) {
290 // The token is always the same, let's exploit that
291 if ( !isset( ApiQueryInfo
::$cachedTokens['options'] ) ) {
292 ApiQueryInfo
::$cachedTokens['options'] = $wgUser->getEditToken();
295 return ApiQueryInfo
::$cachedTokens['options'];
298 public function execute() {
299 $this->params
= $this->extractRequestParams();
300 if ( !is_null( $this->params
['prop'] ) ) {
301 $prop = array_flip( $this->params
['prop'] );
302 $this->fld_protection
= isset( $prop['protection'] );
303 $this->fld_watched
= isset( $prop['watched'] );
304 $this->fld_watchers
= isset( $prop['watchers'] );
305 $this->fld_visitingwatchers
= isset( $prop['visitingwatchers'] );
306 $this->fld_notificationtimestamp
= isset( $prop['notificationtimestamp'] );
307 $this->fld_talkid
= isset( $prop['talkid'] );
308 $this->fld_subjectid
= isset( $prop['subjectid'] );
309 $this->fld_url
= isset( $prop['url'] );
310 $this->fld_readable
= isset( $prop['readable'] );
311 $this->fld_preload
= isset( $prop['preload'] );
312 $this->fld_displaytitle
= isset( $prop['displaytitle'] );
315 $pageSet = $this->getPageSet();
316 $this->titles
= $pageSet->getGoodTitles();
317 $this->missing
= $pageSet->getMissingTitles();
318 $this->everything
= $this->titles +
$this->missing
;
319 $result = $this->getResult();
321 uasort( $this->everything
, [ 'Title', 'compare' ] );
322 if ( !is_null( $this->params
['continue'] ) ) {
323 // Throw away any titles we're gonna skip so they don't
325 $cont = explode( '|', $this->params
['continue'] );
326 $this->dieContinueUsageIf( count( $cont ) != 2 );
327 $conttitle = Title
::makeTitleSafe( $cont[0], $cont[1] );
328 foreach ( $this->everything
as $pageid => $title ) {
329 if ( Title
::compare( $title, $conttitle ) >= 0 ) {
332 unset( $this->titles
[$pageid] );
333 unset( $this->missing
[$pageid] );
334 unset( $this->everything
[$pageid] );
338 $this->pageRestrictions
= $pageSet->getCustomField( 'page_restrictions' );
339 // when resolving redirects, no page will have this field
340 $this->pageIsRedir
= !$pageSet->isResolvingRedirects()
341 ?
$pageSet->getCustomField( 'page_is_redirect' )
343 $this->pageIsNew
= $pageSet->getCustomField( 'page_is_new' );
345 $this->pageTouched
= $pageSet->getCustomField( 'page_touched' );
346 $this->pageLatest
= $pageSet->getCustomField( 'page_latest' );
347 $this->pageLength
= $pageSet->getCustomField( 'page_len' );
349 // Get protection info if requested
350 if ( $this->fld_protection
) {
351 $this->getProtectionInfo();
354 if ( $this->fld_watched ||
$this->fld_notificationtimestamp
) {
355 $this->getWatchedInfo();
358 if ( $this->fld_watchers
) {
359 $this->getWatcherInfo();
362 if ( $this->fld_visitingwatchers
) {
363 $this->getVisitingWatcherInfo();
366 // Run the talkid/subjectid query if requested
367 if ( $this->fld_talkid ||
$this->fld_subjectid
) {
371 if ( $this->fld_displaytitle
) {
372 $this->getDisplayTitle();
375 /** @var $title Title */
376 foreach ( $this->everything
as $pageid => $title ) {
377 $pageInfo = $this->extractPageInfo( $pageid, $title );
378 $fit = $pageInfo !== null && $result->addValue( [
381 ], $pageid, $pageInfo );
383 $this->setContinueEnumParameter( 'continue',
384 $title->getNamespace() . '|' .
392 * Get a result array with information about a title
393 * @param int $pageid Page ID (negative for missing titles)
394 * @param Title $title
397 private function extractPageInfo( $pageid, $title ) {
399 // $title->exists() needs pageid, which is not set for all title objects
400 $titleExists = $pageid > 0;
401 $ns = $title->getNamespace();
402 $dbkey = $title->getDBkey();
404 $pageInfo['contentmodel'] = $title->getContentModel();
406 $pageLanguage = $title->getPageLanguage();
407 $pageInfo['pagelanguage'] = $pageLanguage->getCode();
408 $pageInfo['pagelanguagehtmlcode'] = $pageLanguage->getHtmlCode();
409 $pageInfo['pagelanguagedir'] = $pageLanguage->getDir();
411 if ( $titleExists ) {
412 $pageInfo['touched'] = wfTimestamp( TS_ISO_8601
, $this->pageTouched
[$pageid] );
413 $pageInfo['lastrevid'] = intval( $this->pageLatest
[$pageid] );
414 $pageInfo['length'] = intval( $this->pageLength
[$pageid] );
416 if ( isset( $this->pageIsRedir
[$pageid] ) && $this->pageIsRedir
[$pageid] ) {
417 $pageInfo['redirect'] = true;
419 if ( $this->pageIsNew
[$pageid] ) {
420 $pageInfo['new'] = true;
424 if ( !is_null( $this->params
['token'] ) ) {
425 $tokenFunctions = $this->getTokenFunctions();
426 $pageInfo['starttimestamp'] = wfTimestamp( TS_ISO_8601
, time() );
427 foreach ( $this->params
['token'] as $t ) {
428 $val = call_user_func( $tokenFunctions[$t], $pageid, $title );
429 if ( $val === false ) {
430 $this->addWarning( [ 'apiwarn-tokennotallowed', $t ] );
432 $pageInfo[$t . 'token'] = $val;
437 if ( $this->fld_protection
) {
438 $pageInfo['protection'] = [];
439 if ( isset( $this->protections
[$ns][$dbkey] ) ) {
440 $pageInfo['protection'] =
441 $this->protections
[$ns][$dbkey];
443 ApiResult
::setIndexedTagName( $pageInfo['protection'], 'pr' );
445 $pageInfo['restrictiontypes'] = [];
446 if ( isset( $this->restrictionTypes
[$ns][$dbkey] ) ) {
447 $pageInfo['restrictiontypes'] =
448 $this->restrictionTypes
[$ns][$dbkey];
450 ApiResult
::setIndexedTagName( $pageInfo['restrictiontypes'], 'rt' );
453 if ( $this->fld_watched
&& $this->watched
!== null ) {
454 $pageInfo['watched'] = $this->watched
[$ns][$dbkey];
457 if ( $this->fld_watchers
) {
458 if ( $this->watchers
!== null && $this->watchers
[$ns][$dbkey] !== 0 ) {
459 $pageInfo['watchers'] = $this->watchers
[$ns][$dbkey];
460 } elseif ( $this->showZeroWatchers
) {
461 $pageInfo['watchers'] = 0;
465 if ( $this->fld_visitingwatchers
) {
466 if ( $this->visitingwatchers
!== null && $this->visitingwatchers
[$ns][$dbkey] !== 0 ) {
467 $pageInfo['visitingwatchers'] = $this->visitingwatchers
[$ns][$dbkey];
468 } elseif ( $this->showZeroWatchers
) {
469 $pageInfo['visitingwatchers'] = 0;
473 if ( $this->fld_notificationtimestamp
) {
474 $pageInfo['notificationtimestamp'] = '';
475 if ( $this->notificationtimestamps
[$ns][$dbkey] ) {
476 $pageInfo['notificationtimestamp'] =
477 wfTimestamp( TS_ISO_8601
, $this->notificationtimestamps
[$ns][$dbkey] );
481 if ( $this->fld_talkid
&& isset( $this->talkids
[$ns][$dbkey] ) ) {
482 $pageInfo['talkid'] = $this->talkids
[$ns][$dbkey];
485 if ( $this->fld_subjectid
&& isset( $this->subjectids
[$ns][$dbkey] ) ) {
486 $pageInfo['subjectid'] = $this->subjectids
[$ns][$dbkey];
489 if ( $this->fld_url
) {
490 $pageInfo['fullurl'] = wfExpandUrl( $title->getFullURL(), PROTO_CURRENT
);
491 $pageInfo['editurl'] = wfExpandUrl( $title->getFullURL( 'action=edit' ), PROTO_CURRENT
);
492 $pageInfo['canonicalurl'] = wfExpandUrl( $title->getFullURL(), PROTO_CANONICAL
);
494 if ( $this->fld_readable
) {
495 $pageInfo['readable'] = $title->userCan( 'read', $this->getUser() );
498 if ( $this->fld_preload
) {
499 if ( $titleExists ) {
500 $pageInfo['preload'] = '';
503 Hooks
::run( 'EditFormPreloadText', [ &$text, &$title ] );
505 $pageInfo['preload'] = $text;
509 if ( $this->fld_displaytitle
) {
510 if ( isset( $this->displaytitles
[$pageid] ) ) {
511 $pageInfo['displaytitle'] = $this->displaytitles
[$pageid];
513 $pageInfo['displaytitle'] = $title->getPrefixedText();
517 if ( $this->params
['testactions'] ) {
518 $limit = $this->getMain()->canApiHighLimits() ? self
::LIMIT_SML1
: self
::LIMIT_SML2
;
519 if ( $this->countTestedActions
>= $limit ) {
520 return null; // force a continuation
523 $user = $this->getUser();
524 $pageInfo['actions'] = [];
525 foreach ( $this->params
['testactions'] as $action ) {
526 $this->countTestedActions++
;
527 $pageInfo['actions'][$action] = $title->userCan( $action, $user );
535 * Get information about protections and put it in $protections
537 private function getProtectionInfo() {
538 $this->protections
= [];
539 $db = $this->getDB();
541 // Get normal protections for existing titles
542 if ( count( $this->titles
) ) {
543 $this->resetQueryParams();
544 $this->addTables( 'page_restrictions' );
545 $this->addFields( [ 'pr_page', 'pr_type', 'pr_level',
546 'pr_expiry', 'pr_cascade' ] );
547 $this->addWhereFld( 'pr_page', array_keys( $this->titles
) );
549 $res = $this->select( __METHOD__
);
550 foreach ( $res as $row ) {
551 /** @var $title Title */
552 $title = $this->titles
[$row->pr_page
];
554 'type' => $row->pr_type
,
555 'level' => $row->pr_level
,
556 'expiry' => ApiResult
::formatExpiry( $row->pr_expiry
)
558 if ( $row->pr_cascade
) {
559 $a['cascade'] = true;
561 $this->protections
[$title->getNamespace()][$title->getDBkey()][] = $a;
563 // Also check old restrictions
564 foreach ( $this->titles
as $pageId => $title ) {
565 if ( $this->pageRestrictions
[$pageId] ) {
566 $namespace = $title->getNamespace();
567 $dbKey = $title->getDBkey();
568 $restrictions = explode( ':', trim( $this->pageRestrictions
[$pageId] ) );
569 foreach ( $restrictions as $restrict ) {
570 $temp = explode( '=', trim( $restrict ) );
571 if ( count( $temp ) == 1 ) {
572 // old old format should be treated as edit/move restriction
573 $restriction = trim( $temp[0] );
575 if ( $restriction == '' ) {
578 $this->protections
[$namespace][$dbKey][] = [
580 'level' => $restriction,
581 'expiry' => 'infinity',
583 $this->protections
[$namespace][$dbKey][] = [
585 'level' => $restriction,
586 'expiry' => 'infinity',
589 $restriction = trim( $temp[1] );
590 if ( $restriction == '' ) {
593 $this->protections
[$namespace][$dbKey][] = [
595 'level' => $restriction,
596 'expiry' => 'infinity',
604 // Get protections for missing titles
605 if ( count( $this->missing
) ) {
606 $this->resetQueryParams();
607 $lb = new LinkBatch( $this->missing
);
608 $this->addTables( 'protected_titles' );
609 $this->addFields( [ 'pt_title', 'pt_namespace', 'pt_create_perm', 'pt_expiry' ] );
610 $this->addWhere( $lb->constructSet( 'pt', $db ) );
611 $res = $this->select( __METHOD__
);
612 foreach ( $res as $row ) {
613 $this->protections
[$row->pt_namespace
][$row->pt_title
][] = [
615 'level' => $row->pt_create_perm
,
616 'expiry' => ApiResult
::formatExpiry( $row->pt_expiry
)
621 // Separate good and missing titles into files and other pages
622 // and populate $this->restrictionTypes
623 $images = $others = [];
624 foreach ( $this->everything
as $title ) {
625 if ( $title->getNamespace() == NS_FILE
) {
626 $images[] = $title->getDBkey();
630 // Applicable protection types
631 $this->restrictionTypes
[$title->getNamespace()][$title->getDBkey()] =
632 array_values( $title->getRestrictionTypes() );
635 if ( count( $others ) ) {
636 // Non-images: check templatelinks
637 $lb = new LinkBatch( $others );
638 $this->resetQueryParams();
639 $this->addTables( [ 'page_restrictions', 'page', 'templatelinks' ] );
640 $this->addFields( [ 'pr_type', 'pr_level', 'pr_expiry',
641 'page_title', 'page_namespace',
642 'tl_title', 'tl_namespace' ] );
643 $this->addWhere( $lb->constructSet( 'tl', $db ) );
644 $this->addWhere( 'pr_page = page_id' );
645 $this->addWhere( 'pr_page = tl_from' );
646 $this->addWhereFld( 'pr_cascade', 1 );
648 $res = $this->select( __METHOD__
);
649 foreach ( $res as $row ) {
650 $source = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
651 $this->protections
[$row->tl_namespace
][$row->tl_title
][] = [
652 'type' => $row->pr_type
,
653 'level' => $row->pr_level
,
654 'expiry' => ApiResult
::formatExpiry( $row->pr_expiry
),
655 'source' => $source->getPrefixedText()
660 if ( count( $images ) ) {
661 // Images: check imagelinks
662 $this->resetQueryParams();
663 $this->addTables( [ 'page_restrictions', 'page', 'imagelinks' ] );
664 $this->addFields( [ 'pr_type', 'pr_level', 'pr_expiry',
665 'page_title', 'page_namespace', 'il_to' ] );
666 $this->addWhere( 'pr_page = page_id' );
667 $this->addWhere( 'pr_page = il_from' );
668 $this->addWhereFld( 'pr_cascade', 1 );
669 $this->addWhereFld( 'il_to', $images );
671 $res = $this->select( __METHOD__
);
672 foreach ( $res as $row ) {
673 $source = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
674 $this->protections
[NS_FILE
][$row->il_to
][] = [
675 'type' => $row->pr_type
,
676 'level' => $row->pr_level
,
677 'expiry' => ApiResult
::formatExpiry( $row->pr_expiry
),
678 'source' => $source->getPrefixedText()
685 * Get talk page IDs (if requested) and subject page IDs (if requested)
686 * and put them in $talkids and $subjectids
688 private function getTSIDs() {
689 $getTitles = $this->talkids
= $this->subjectids
= [];
692 foreach ( $this->everything
as $t ) {
693 if ( MWNamespace
::isTalk( $t->getNamespace() ) ) {
694 if ( $this->fld_subjectid
) {
695 $getTitles[] = $t->getSubjectPage();
697 } elseif ( $this->fld_talkid
) {
698 $getTitles[] = $t->getTalkPage();
701 if ( !count( $getTitles ) ) {
705 $db = $this->getDB();
707 // Construct a custom WHERE clause that matches
708 // all titles in $getTitles
709 $lb = new LinkBatch( $getTitles );
710 $this->resetQueryParams();
711 $this->addTables( 'page' );
712 $this->addFields( [ 'page_title', 'page_namespace', 'page_id' ] );
713 $this->addWhere( $lb->constructSet( 'page', $db ) );
714 $res = $this->select( __METHOD__
);
715 foreach ( $res as $row ) {
716 if ( MWNamespace
::isTalk( $row->page_namespace
) ) {
717 $this->talkids
[MWNamespace
::getSubject( $row->page_namespace
)][$row->page_title
] =
718 intval( $row->page_id
);
720 $this->subjectids
[MWNamespace
::getTalk( $row->page_namespace
)][$row->page_title
] =
721 intval( $row->page_id
);
726 private function getDisplayTitle() {
727 $this->displaytitles
= [];
729 $pageIds = array_keys( $this->titles
);
731 if ( !count( $pageIds ) ) {
735 $this->resetQueryParams();
736 $this->addTables( 'page_props' );
737 $this->addFields( [ 'pp_page', 'pp_value' ] );
738 $this->addWhereFld( 'pp_page', $pageIds );
739 $this->addWhereFld( 'pp_propname', 'displaytitle' );
740 $res = $this->select( __METHOD__
);
742 foreach ( $res as $row ) {
743 $this->displaytitles
[$row->pp_page
] = $row->pp_value
;
748 * Get information about watched status and put it in $this->watched
749 * and $this->notificationtimestamps
751 private function getWatchedInfo() {
752 $user = $this->getUser();
754 if ( $user->isAnon() ||
count( $this->everything
) == 0
755 ||
!$user->isAllowed( 'viewmywatchlist' )
761 $this->notificationtimestamps
= [];
763 $store = MediaWikiServices
::getInstance()->getWatchedItemStore();
764 $timestamps = $store->getNotificationTimestampsBatch( $user, $this->everything
);
766 if ( $this->fld_watched
) {
767 foreach ( $timestamps as $namespaceId => $dbKeys ) {
768 $this->watched
[$namespaceId] = array_map(
776 if ( $this->fld_notificationtimestamp
) {
777 $this->notificationtimestamps
= $timestamps;
782 * Get the count of watchers and put it in $this->watchers
784 private function getWatcherInfo() {
785 if ( count( $this->everything
) == 0 ) {
789 $user = $this->getUser();
790 $canUnwatchedpages = $user->isAllowed( 'unwatchedpages' );
791 $unwatchedPageThreshold = $this->getConfig()->get( 'UnwatchedPageThreshold' );
792 if ( !$canUnwatchedpages && !is_int( $unwatchedPageThreshold ) ) {
796 $this->showZeroWatchers
= $canUnwatchedpages;
799 if ( !$canUnwatchedpages ) {
800 $countOptions['minimumWatchers'] = $unwatchedPageThreshold;
803 $this->watchers
= MediaWikiServices
::getInstance()->getWatchedItemStore()->countWatchersMultiple(
810 * Get the count of watchers who have visited recent edits and put it in
811 * $this->visitingwatchers
813 * Based on InfoAction::pageCounts
815 private function getVisitingWatcherInfo() {
816 $config = $this->getConfig();
817 $user = $this->getUser();
818 $db = $this->getDB();
820 $canUnwatchedpages = $user->isAllowed( 'unwatchedpages' );
821 $unwatchedPageThreshold = $this->getConfig()->get( 'UnwatchedPageThreshold' );
822 if ( !$canUnwatchedpages && !is_int( $unwatchedPageThreshold ) ) {
826 $this->showZeroWatchers
= $canUnwatchedpages;
828 $titlesWithThresholds = [];
829 if ( $this->titles
) {
830 $lb = new LinkBatch( $this->titles
);
832 // Fetch last edit timestamps for pages
833 $this->resetQueryParams();
834 $this->addTables( [ 'page', 'revision' ] );
835 $this->addFields( [ 'page_namespace', 'page_title', 'rev_timestamp' ] );
837 'page_latest = rev_id',
838 $lb->constructSet( 'page', $db ),
840 $this->addOption( 'GROUP BY', [ 'page_namespace', 'page_title' ] );
841 $timestampRes = $this->select( __METHOD__
);
843 $age = $config->get( 'WatchersMaxAge' );
845 foreach ( $timestampRes as $row ) {
846 $revTimestamp = wfTimestamp( TS_UNIX
, (int)$row->rev_timestamp
);
847 $timestamps[$row->page_namespace
][$row->page_title
] = $revTimestamp - $age;
849 $titlesWithThresholds = array_map(
850 function( LinkTarget
$target ) use ( $timestamps ) {
852 $target, $timestamps[$target->getNamespace()][$target->getDBkey()]
859 if ( $this->missing
) {
860 $titlesWithThresholds = array_merge(
861 $titlesWithThresholds,
863 function( LinkTarget
$target ) {
864 return [ $target, null ];
870 $store = MediaWikiServices
::getInstance()->getWatchedItemStore();
871 $this->visitingwatchers
= $store->countVisitingWatchersMultiple(
872 $titlesWithThresholds,
873 !$canUnwatchedpages ?
$unwatchedPageThreshold : null
877 public function getCacheMode( $params ) {
878 // Other props depend on something about the current user
887 if ( array_diff( (array)$params['prop'], $publicProps ) ) {
891 // testactions also depends on the current user
892 if ( $params['testactions'] ) {
896 if ( !is_null( $params['token'] ) ) {
903 public function getAllowedParams() {
906 ApiBase
::PARAM_ISMULTI
=> true,
907 ApiBase
::PARAM_TYPE
=> [
911 'watchers', # private
912 'visitingwatchers', # private
913 'notificationtimestamp', # private
916 'readable', # private
919 // If you add more properties here, please consider whether they
920 // need to be added to getCacheMode()
922 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> [],
925 ApiBase
::PARAM_TYPE
=> 'string',
926 ApiBase
::PARAM_ISMULTI
=> true,
929 ApiBase
::PARAM_DEPRECATED
=> true,
930 ApiBase
::PARAM_ISMULTI
=> true,
931 ApiBase
::PARAM_TYPE
=> array_keys( $this->getTokenFunctions() )
934 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
939 protected function getExamplesMessages() {
941 'action=query&prop=info&titles=Main%20Page'
942 => 'apihelp-query+info-example-simple',
943 'action=query&prop=info&inprop=protection&titles=Main%20Page'
944 => 'apihelp-query+info-example-protection',
948 public function getHelpUrls() {
949 return 'https://www.mediawiki.org/wiki/API:Info';