Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / specialpage / QueryPage.php
blob993d9c32ac0d2501f686cdeb13783547af373942
1 <?php
2 /**
3 * Base code for "query" special pages.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup SpecialPage
24 namespace MediaWiki\SpecialPage;
26 use Exception;
27 use MediaWiki\Cache\LinkBatchFactory;
28 use MediaWiki\Config\Config;
29 use MediaWiki\HookContainer\HookRunner;
30 use MediaWiki\Linker\LinkTarget;
31 use MediaWiki\MainConfigNames;
32 use MediaWiki\MediaWikiServices;
33 use MediaWiki\Output\OutputPage;
34 use MediaWiki\Specials\SpecialAncientPages;
35 use MediaWiki\Specials\SpecialBrokenRedirects;
36 use MediaWiki\Specials\SpecialDeadendPages;
37 use MediaWiki\Specials\SpecialDoubleRedirects;
38 use MediaWiki\Specials\SpecialFewestRevisions;
39 use MediaWiki\Specials\SpecialLinkSearch;
40 use MediaWiki\Specials\SpecialListDuplicatedFiles;
41 use MediaWiki\Specials\SpecialListRedirects;
42 use MediaWiki\Specials\SpecialLonelyPages;
43 use MediaWiki\Specials\SpecialLongPages;
44 use MediaWiki\Specials\SpecialMediaStatistics;
45 use MediaWiki\Specials\SpecialMIMESearch;
46 use MediaWiki\Specials\SpecialMostCategories;
47 use MediaWiki\Specials\SpecialMostImages;
48 use MediaWiki\Specials\SpecialMostInterwikis;
49 use MediaWiki\Specials\SpecialMostLinked;
50 use MediaWiki\Specials\SpecialMostLinkedCategories;
51 use MediaWiki\Specials\SpecialMostLinkedTemplates;
52 use MediaWiki\Specials\SpecialMostRevisions;
53 use MediaWiki\Specials\SpecialShortPages;
54 use MediaWiki\Specials\SpecialUncategorizedCategories;
55 use MediaWiki\Specials\SpecialUncategorizedImages;
56 use MediaWiki\Specials\SpecialUncategorizedPages;
57 use MediaWiki\Specials\SpecialUncategorizedTemplates;
58 use MediaWiki\Specials\SpecialUnusedCategories;
59 use MediaWiki\Specials\SpecialUnusedImages;
60 use MediaWiki\Specials\SpecialUnusedTemplates;
61 use MediaWiki\Specials\SpecialUnwatchedPages;
62 use MediaWiki\Specials\SpecialWantedCategories;
63 use MediaWiki\Specials\SpecialWantedFiles;
64 use MediaWiki\Specials\SpecialWantedPages;
65 use MediaWiki\Specials\SpecialWantedTemplates;
66 use MediaWiki\Specials\SpecialWithoutInterwiki;
67 use MediaWiki\Xml\Xml;
68 use Skin;
69 use stdClass;
70 use Wikimedia\Rdbms\DBError;
71 use Wikimedia\Rdbms\IConnectionProvider;
72 use Wikimedia\Rdbms\IDatabase;
73 use Wikimedia\Rdbms\ILoadBalancer;
74 use Wikimedia\Rdbms\IReadableDatabase;
75 use Wikimedia\Rdbms\IResultWrapper;
76 use Wikimedia\Rdbms\SelectQueryBuilder;
78 /**
79 * This is a class for doing query pages; since they're almost all the same,
80 * we factor out some of the functionality into a superclass, and let
81 * subclasses derive from it.
83 * @stable to extend
85 * @ingroup SpecialPage
87 abstract class QueryPage extends SpecialPage {
88 /** @var bool Whether or not we want plain listoutput rather than an ordered list */
89 protected $listoutput = false;
91 /** @var int The offset and limit in use, as passed to the query() function */
92 protected $offset = 0;
94 /** @var int */
95 protected $limit = 0;
97 /**
98 * The number of rows returned by the query. Reading this variable
99 * only makes sense in functions that are run after the query has been
100 * done, such as preprocessResults() and formatRow().
102 * @var int
104 protected $numRows;
107 * @var string|null|false
109 protected $cachedTimestamp = null;
112 * @var bool Whether to show prev/next links
114 protected $shownavigation = true;
116 /** @var ILoadBalancer|null */
117 private $loadBalancer = null;
119 /** @var IConnectionProvider|null */
120 private $databaseProvider = null;
122 /** @var LinkBatchFactory|null */
123 private $linkBatchFactory = null;
126 * Get a list of query page classes and their associated special pages,
127 * for periodic updates.
129 * DO NOT CHANGE THIS LIST without testing that
130 * maintenance/updateSpecialPages.php still works.
132 * @return array[] List of [ string $class, string $specialPageName, ?int $limit (optional) ].
133 * Limit defaults to $wgQueryCacheLimit if not given.
135 public static function getPages() {
136 static $qp = null;
138 if ( $qp === null ) {
139 $qp = [
140 [ SpecialAncientPages::class, 'Ancientpages' ],
141 [ SpecialBrokenRedirects::class, 'BrokenRedirects' ],
142 [ SpecialDeadendPages::class, 'Deadendpages' ],
143 [ SpecialDoubleRedirects::class, 'DoubleRedirects' ],
144 [ SpecialListDuplicatedFiles::class, 'ListDuplicatedFiles' ],
145 [ SpecialLinkSearch::class, 'LinkSearch' ],
146 [ SpecialListRedirects::class, 'Listredirects' ],
147 [ SpecialLonelyPages::class, 'Lonelypages' ],
148 [ SpecialLongPages::class, 'Longpages' ],
149 [ SpecialMediaStatistics::class, 'MediaStatistics', SpecialMediaStatistics::MAX_LIMIT ],
150 [ SpecialMIMESearch::class, 'MIMEsearch' ],
151 [ SpecialMostCategories::class, 'Mostcategories' ],
152 [ SpecialMostImages::class, 'Mostimages' ],
153 [ SpecialMostInterwikis::class, 'Mostinterwikis' ],
154 [ SpecialMostLinkedCategories::class, 'Mostlinkedcategories' ],
155 [ SpecialMostLinkedTemplates::class, 'Mostlinkedtemplates' ],
156 [ SpecialMostLinked::class, 'Mostlinked' ],
157 [ SpecialMostRevisions::class, 'Mostrevisions' ],
158 [ SpecialFewestRevisions::class, 'Fewestrevisions' ],
159 [ SpecialShortPages::class, 'Shortpages' ],
160 [ SpecialUncategorizedCategories::class, 'Uncategorizedcategories' ],
161 [ SpecialUncategorizedPages::class, 'Uncategorizedpages' ],
162 [ SpecialUncategorizedImages::class, 'Uncategorizedimages' ],
163 [ SpecialUncategorizedTemplates::class, 'Uncategorizedtemplates' ],
164 [ SpecialUnusedCategories::class, 'Unusedcategories' ],
165 [ SpecialUnusedImages::class, 'Unusedimages' ],
166 [ SpecialWantedCategories::class, 'Wantedcategories' ],
167 [ SpecialWantedFiles::class, 'Wantedfiles' ],
168 [ SpecialWantedPages::class, 'Wantedpages' ],
169 [ SpecialWantedTemplates::class, 'Wantedtemplates' ],
170 [ SpecialUnwatchedPages::class, 'Unwatchedpages' ],
171 [ SpecialUnusedTemplates::class, 'Unusedtemplates' ],
172 [ SpecialWithoutInterwiki::class, 'Withoutinterwiki' ],
174 ( new HookRunner( MediaWikiServices::getInstance()->getHookContainer() ) )->onWgQueryPages( $qp );
177 return $qp;
181 * @since 1.36
182 * @param LinkBatchFactory $linkBatchFactory
184 final protected function setLinkBatchFactory( LinkBatchFactory $linkBatchFactory ) {
185 $this->linkBatchFactory = $linkBatchFactory;
189 * @since 1.36
190 * @return LinkBatchFactory
192 final protected function getLinkBatchFactory(): LinkBatchFactory {
193 if ( $this->linkBatchFactory === null ) {
194 // Fallback if not provided
195 // TODO Change to wfWarn in a future release
196 $this->linkBatchFactory = MediaWikiServices::getInstance()->getLinkBatchFactory();
198 return $this->linkBatchFactory;
202 * Get a list of disabled query pages and their run mode
203 * @param Config $config
204 * @return string[]
206 public static function getDisabledQueryPages( Config $config ) {
207 $disableQueryPageUpdate = $config->get( MainConfigNames::DisableQueryPageUpdate );
209 if ( !is_array( $disableQueryPageUpdate ) ) {
210 return [];
213 $pages = [];
214 foreach ( $disableQueryPageUpdate as $name => $runMode ) {
215 if ( is_int( $name ) ) {
216 // The run mode may be omitted
217 $pages[$runMode] = 'disabled';
218 } else {
219 $pages[$name] = $runMode;
222 return $pages;
226 * A mutator for $this->listoutput;
228 * @param bool $bool
230 protected function setListoutput( $bool ) {
231 $this->listoutput = $bool;
235 * Subclasses return an SQL query here, formatted as an array with the
236 * following keys:
237 * tables => Table(s) for passing to Database::select()
238 * fields => Field(s) for passing to Database::select(), may be *
239 * conds => WHERE conditions
240 * options => options
241 * join_conds => JOIN conditions
243 * Note that the query itself should return the following three columns:
244 * 'namespace', 'title', and 'value'. 'value' is used for sorting.
246 * These may be stored in the querycache table for expensive queries,
247 * and that cached data will be returned sometimes, so the presence of
248 * extra fields can't be relied upon. The cached 'value' column will be
249 * an integer; non-numeric values are useful only for sorting the
250 * initial query (except if they're timestamps, see usesTimestamps()).
252 * Don't include an ORDER or LIMIT clause, they will be added.
254 * @return array
255 * @since 1.18, abstract since 1.43
257 abstract public function getQueryInfo();
260 * Subclasses return an array of fields to order by here. Don't append
261 * DESC to the field names, that'll be done automatically if
262 * sortDescending() returns true.
263 * @stable to override
264 * @return string[]
265 * @since 1.18
267 protected function getOrderFields() {
268 return [ 'value' ];
272 * Does this query return timestamps rather than integers in its
273 * 'value' field? If true, this class will convert 'value' to a
274 * UNIX timestamp for caching.
275 * NOTE: formatRow() may get timestamps in TS_MW (mysql), TS_DB (pgsql)
276 * or TS_UNIX (querycache) format, so be sure to always run them
277 * through wfTimestamp()
278 * @stable to override
279 * @return bool
280 * @since 1.18
282 public function usesTimestamps() {
283 return false;
287 * Override to sort by increasing values
289 * @stable to override
290 * @return bool
292 protected function sortDescending() {
293 return true;
297 * Should this query page only be updated offline on large wikis?
299 * If the query for this page is considered too expensive to run on-demand
300 * for large wikis (e.g. every time the special page is viewed), then
301 * implement this as returning true.
303 * "Large wikis" are those that enable $wgMiserMode. The value of
304 * ::isExpensive() has no effect by default when $wgMiserMode is off.
306 * It is expected that such large wikis, periodically run the
307 * UpdateSpecialPages maintenance script to update these query pages.
309 * By enabling $wgDisableQueryPages, all query pages will be considered
310 * as expensive and updated offline only, even query pages that do not
311 * mark themselves as expensive.
313 * @stable to override
314 * @return bool
316 public function isExpensive() {
317 return $this->getConfig()->get( MainConfigNames::DisableQueryPages );
321 * Is the output of this query cacheable? Non-cacheable expensive pages
322 * will be disabled in miser mode and will not have their results written
323 * to the querycache table.
324 * @stable to override
325 * @return bool
326 * @since 1.18
328 public function isCacheable() {
329 return true;
333 * Whether or not the output of the page in question is retrieved from
334 * the database cache.
336 * @stable to override
337 * @return bool
339 public function isCached() {
340 return $this->isExpensive() && $this->getConfig()->get( MainConfigNames::MiserMode );
344 * Sometimes we don't want to build rss / atom feeds.
346 * @stable to override
347 * @return bool
349 public function isSyndicated() {
350 return true;
354 * Formats the results of the query for display. The skin is the current
355 * skin; you can use it for making links. The result is a single row of
356 * result data. You should be able to grab SQL results from it.
357 * If the function returns false, the line output will be skipped.
358 * @param Skin $skin
359 * @param stdClass $result Result row
360 * @return string|bool String or false to skip
362 abstract protected function formatResult( $skin, $result );
365 * The content returned by this function will be output before any result
367 * @stable to override
368 * @return string
370 protected function getPageHeader() {
371 return '';
375 * Outputs some kind of an informative message (via OutputPage) to let the
376 * user know that the query returned nothing and thus there's nothing to
377 * show.
379 * @since 1.26
381 protected function showEmptyText() {
382 $this->getOutput()->addWikiMsg( 'specialpage-empty' );
386 * If using extra form wheely-dealies, return a set of parameters here
387 * as an associative array. They will be encoded and added to the paging
388 * links (prev/next/lengths).
390 * @stable to override
391 * @return array
393 protected function linkParameters() {
394 return [];
398 * Clear the cache and save new results
400 * @stable to override
402 * @param int|false $limit Limit for SQL statement or false for no limit
403 * @param bool $unused Unused since 1.43, kept for backwards-compatibility
404 * @throws DBError|Exception
405 * @return bool|int
407 public function recache( $limit, $unused = true ) {
408 if ( !$this->isCacheable() ) {
409 return 0;
412 $fname = static::class . '::recache';
413 $dbw = $this->getDatabaseProvider()->getPrimaryDatabase();
415 // Do query
416 $res = $this->reallyDoQuery( $limit, false );
417 $num = false;
418 if ( $res ) {
419 $num = $res->numRows();
420 // Fetch results
421 $vals = [];
422 foreach ( $res as $i => $row ) {
423 if ( isset( $row->value ) ) {
424 if ( $this->usesTimestamps() ) {
425 $value = (int)wfTimestamp( TS_UNIX, $row->value );
426 } else {
427 $value = intval( $row->value ); // T16414
429 } else {
430 $value = $i;
433 $vals[] = [
434 'qc_type' => $this->getName(),
435 'qc_namespace' => $row->namespace,
436 'qc_title' => $row->title,
437 'qc_value' => $value
441 $dbw->doAtomicSection(
442 $fname,
443 function ( IDatabase $dbw, $fname ) use ( $vals ) {
444 // Clear out any old cached data
445 $dbw->newDeleteQueryBuilder()
446 ->deleteFrom( 'querycache' )
447 ->where( [ 'qc_type' => $this->getName() ] )
448 ->caller( $fname )->execute();
449 // Update the querycache_info record for the page
450 $dbw->newInsertQueryBuilder()
451 ->insertInto( 'querycache_info' )
452 ->row( [ 'qci_type' => $this->getName(), 'qci_timestamp' => $dbw->timestamp() ] )
453 ->onDuplicateKeyUpdate()
454 ->uniqueIndexFields( [ 'qci_type' ] )
455 ->set( [ 'qci_timestamp' => $dbw->timestamp() ] )
456 ->caller( $fname )->execute();
459 // Save results into the querycache table on the primary DB
460 if ( count( $vals ) ) {
461 foreach ( array_chunk( $vals, 500 ) as $chunk ) {
462 $dbw->newInsertQueryBuilder()
463 ->insertInto( 'querycache' )
464 ->rows( $chunk )
465 ->caller( $fname )->execute();
470 return $num;
474 * Get a DB connection to be used for slow recache queries
475 * @stable to override
476 * @return IDatabase
478 protected function getRecacheDB() {
479 return $this->getDBLoadBalancer()
480 ->getConnection( ILoadBalancer::DB_REPLICA, 'vslow' );
484 * Remove a cached result.
485 * Useful for interactive backlogs where the user can fix problems in-place.
486 * @param LinkTarget $title The page to remove.
487 * @since 1.34
489 public function delete( LinkTarget $title ) {
490 if ( $this->isCached() ) {
491 $dbw = $this->getDatabaseProvider()->getPrimaryDatabase();
492 $dbw->newDeleteQueryBuilder()
493 ->deleteFrom( 'querycache' )
494 ->where( [
495 'qc_type' => $this->getName(),
496 'qc_namespace' => $title->getNamespace(),
497 'qc_title' => $title->getDBkey(),
499 ->caller( __METHOD__ )->execute();
504 * Remove all cached value
505 * This is needed when the page is no longer using the cache
506 * @since 1.36
508 public function deleteAllCachedData() {
509 $fname = static::class . '::' . __FUNCTION__;
510 $dbw = $this->getDatabaseProvider()->getPrimaryDatabase();
511 $dbw->newDeleteQueryBuilder()
512 ->deleteFrom( 'querycache' )
513 ->where( [ 'qc_type' => $this->getName() ] )
514 ->caller( $fname )->execute();
515 $dbw->newDeleteQueryBuilder()
516 ->deleteFrom( 'querycachetwo' )
517 ->where( [ 'qcc_type' => $this->getName() ] )
518 ->caller( $fname )->execute();
519 $dbw->newDeleteQueryBuilder()
520 ->deleteFrom( 'querycache_info' )
521 ->where( [ 'qci_type' => $this->getName() ] )
522 ->caller( $fname )->execute();
526 * Run the query and return the result
527 * @stable to override
528 * @param int|false $limit Numerical limit or false for no limit
529 * @param int|false $offset Numerical offset or false for no offset
530 * @return IResultWrapper
531 * @since 1.18
533 public function reallyDoQuery( $limit, $offset = false ) {
534 $fname = static::class . '::reallyDoQuery';
535 $dbr = $this->getRecacheDB();
536 $query = $this->getQueryInfo();
537 $order = $this->getOrderFields();
539 if ( $this->sortDescending() ) {
540 foreach ( $order as &$field ) {
541 $field .= ' DESC';
545 $tables = isset( $query['tables'] ) ? (array)$query['tables'] : [];
546 $fields = isset( $query['fields'] ) ? (array)$query['fields'] : [];
547 $conds = isset( $query['conds'] ) ? (array)$query['conds'] : [];
548 $options = isset( $query['options'] ) ? (array)$query['options'] : [];
549 $join_conds = isset( $query['join_conds'] ) ? (array)$query['join_conds'] : [];
551 $queryBuilder = $dbr->newSelectQueryBuilder()
552 ->tables( $tables )
553 ->fields( $fields )
554 ->conds( $conds )
555 ->caller( $fname )
556 ->options( $options )
557 ->joinConds( $join_conds );
558 if ( $order ) {
559 $queryBuilder->orderBy( $order );
562 if ( $limit !== false ) {
563 $queryBuilder->limit( intval( $limit ) );
566 if ( $offset !== false ) {
567 $queryBuilder->offset( intval( $offset ) );
570 return $queryBuilder->fetchResultSet();
574 * Somewhat deprecated, you probably want to be using execute()
575 * @param int|false $offset
576 * @param int|false $limit
577 * @return IResultWrapper
579 public function doQuery( $offset = false, $limit = false ) {
580 if ( $this->isCached() && $this->isCacheable() ) {
581 return $this->fetchFromCache( $limit, $offset );
582 } else {
583 return $this->reallyDoQuery( $limit, $offset );
588 * Fetch the query results from the query cache
589 * @stable to override
591 * @param int|false $limit Numerical limit or false for no limit
592 * @param int|false $offset Numerical offset or false for no offset
593 * @return IResultWrapper
594 * @since 1.18
596 public function fetchFromCache( $limit, $offset = false ) {
597 $dbr = $this->getDatabaseProvider()->getReplicaDatabase();
598 $queryBuilder = $dbr->newSelectQueryBuilder()
599 ->select( [ 'qc_type', 'namespace' => 'qc_namespace', 'title' => 'qc_title', 'value' => 'qc_value' ] )
600 ->from( 'querycache' )
601 ->where( [ 'qc_type' => $this->getName() ] );
603 if ( $limit !== false ) {
604 $queryBuilder->limit( intval( $limit ) );
607 if ( $offset !== false ) {
608 $queryBuilder->offset( intval( $offset ) );
611 $order = $this->getCacheOrderFields();
612 if ( $this->sortDescending() ) {
613 $queryBuilder->orderBy( $order, SelectQueryBuilder::SORT_DESC );
614 } else {
615 $queryBuilder->orderBy( $order );
618 return $queryBuilder->caller( __METHOD__ )->fetchResultSet();
622 * Return the order fields for fetchFromCache. Default is to always use
623 * "ORDER BY value" which was the default prior to this function.
624 * @stable to override
625 * @return array
626 * @since 1.29
628 protected function getCacheOrderFields() {
629 return [ 'value' ];
633 * @return string|false
635 public function getCachedTimestamp() {
636 if ( $this->cachedTimestamp === null ) {
637 $dbr = $this->getDatabaseProvider()->getReplicaDatabase();
638 $fname = static::class . '::getCachedTimestamp';
639 $this->cachedTimestamp = $dbr->newSelectQueryBuilder()
640 ->select( 'qci_timestamp' )
641 ->from( 'querycache_info' )
642 ->where( [ 'qci_type' => $this->getName() ] )
643 ->caller( $fname )->fetchField();
645 return $this->cachedTimestamp;
649 * Returns limit and offset, as returned by $this->getRequest()->getLimitOffsetForUser().
650 * Subclasses may override this to further restrict or modify limit and offset.
652 * @note Restricts the offset parameter, as most query pages have inefficient paging
654 * Its generally expected that the returned limit will not be 0, and the returned
655 * offset will be less than the max results.
657 * @since 1.26
658 * @return int[] list( $limit, $offset )
660 protected function getLimitOffset() {
661 [ $limit, $offset ] = $this->getRequest()
662 ->getLimitOffsetForUser( $this->getUser() );
663 if ( $this->getConfig()->get( MainConfigNames::MiserMode ) ) {
664 $maxResults = $this->getMaxResults();
665 // Can't display more than max results on a page
666 $limit = min( $limit, $maxResults );
667 // Can't skip over more than the end of $maxResults
668 $offset = min( $offset, $maxResults + 1 );
670 return [ $limit, $offset ];
674 * What is limit to fetch from DB
676 * Used to make it appear the DB stores less results then it actually does
677 * @param int $uiLimit Limit from UI
678 * @param int $uiOffset Offset from UI
679 * @return int Limit to use for DB (not including extra row to see if at end)
681 protected function getDBLimit( $uiLimit, $uiOffset ) {
682 $maxResults = $this->getMaxResults();
683 if ( $this->getConfig()->get( MainConfigNames::MiserMode ) ) {
684 $limit = min( $uiLimit + 1, $maxResults - $uiOffset );
685 return max( $limit, 0 );
686 } else {
687 return $uiLimit + 1;
692 * Get max number of results we can return in miser mode.
694 * Most QueryPage subclasses use inefficient paging, so limit the max amount we return
695 * This matters for uncached query pages that might otherwise accept an offset of 3 million
697 * @stable to override
698 * @since 1.27
699 * @return int
701 protected function getMaxResults() {
702 // Max of 10000, unless we store more than 10000 in query cache.
703 return max( $this->getConfig()->get( MainConfigNames::QueryCacheLimit ), 10000 );
707 * This is the actual workhorse. It does everything needed to make a
708 * real, honest-to-gosh query page.
709 * @stable to override
710 * @param string|null $par
712 public function execute( $par ) {
713 $this->checkPermissions();
715 $this->setHeaders();
716 $this->outputHeader();
718 $out = $this->getOutput();
720 if ( $this->isCached() && !$this->isCacheable() ) {
721 $out->addWikiMsg( 'querypage-disabled' );
722 return;
725 $out->setSyndicated( $this->isSyndicated() );
727 if ( $this->limit == 0 && $this->offset == 0 ) {
728 [ $this->limit, $this->offset ] = $this->getLimitOffset();
730 $dbLimit = $this->getDBLimit( $this->limit, $this->offset );
731 // @todo Use doQuery()
732 if ( !$this->isCached() ) {
733 // select one extra row for navigation
734 $res = $this->reallyDoQuery( $dbLimit, $this->offset );
735 } else {
736 // Get the cached result, select one extra row for navigation
737 $res = $this->fetchFromCache( $dbLimit, $this->offset );
738 if ( !$this->listoutput ) {
739 // Fetch the timestamp of this update
740 $ts = $this->getCachedTimestamp();
741 $lang = $this->getLanguage();
742 $maxResults = $lang->formatNum( $this->getConfig()->get(
743 MainConfigNames::QueryCacheLimit ) );
745 if ( $ts ) {
746 $user = $this->getUser();
747 $updated = $lang->userTimeAndDate( $ts, $user );
748 $updateddate = $lang->userDate( $ts, $user );
749 $updatedtime = $lang->userTime( $ts, $user );
750 $out->addMeta( 'Data-Cache-Time', $ts );
751 $out->addJsConfigVars( 'dataCacheTime', $ts );
752 $out->addWikiMsg( 'perfcachedts', $updated, $updateddate, $updatedtime, $maxResults );
753 } else {
754 $out->addWikiMsg( 'perfcached', $maxResults );
757 // If updates on this page have been disabled, let the user know
758 // that the data set won't be refreshed for now
759 $disabledQueryPages = self::getDisabledQueryPages( $this->getConfig() );
760 if ( isset( $disabledQueryPages[$this->getName()] ) ) {
761 $runMode = $disabledQueryPages[$this->getName()];
762 if ( $runMode === 'disabled' ) {
763 $out->wrapWikiMsg(
764 "<div class=\"mw-querypage-no-updates\">\n$1\n</div>",
765 'querypage-no-updates'
767 } else {
768 // Messages used here: querypage-updates-periodical
769 $out->wrapWikiMsg(
770 "<div class=\"mw-querypage-updates-" . $runMode . "\">\n$1\n</div>",
771 'querypage-updates-' . $runMode
778 $this->numRows = $res->numRows();
780 $dbr = $this->getRecacheDB();
781 $this->preprocessResults( $dbr, $res );
783 $out->addHTML( Xml::openElement( 'div', [ 'class' => 'mw-spcontent' ] ) );
785 // Top header and navigation
786 if ( $this->shownavigation ) {
787 $out->addHTML( $this->getPageHeader() );
788 if ( $this->numRows > 0 ) {
789 $out->addHTML( $this->msg( 'showingresultsinrange' )->numParams(
790 min( $this->numRows, $this->limit ), // do not show the one extra row, if exist
791 $this->offset + 1, ( min( $this->numRows, $this->limit ) + $this->offset ) )->parseAsBlock() );
792 // Disable the "next" link when we reach the end
793 $miserMaxResults = $this->getConfig()->get( MainConfigNames::MiserMode )
794 && ( $this->offset + $this->limit >= $this->getMaxResults() );
795 $atEnd = ( $this->numRows <= $this->limit ) || $miserMaxResults;
796 $paging = $this->buildPrevNextNavigation( $this->offset,
797 $this->limit, $this->linkParameters(), $atEnd, $par );
798 $out->addHTML( '<p>' . $paging . '</p>' );
799 } else {
800 // No results to show, so don't bother with "showing X of Y" etc.
801 // -- just let the user know and give up now
802 $this->showEmptyText();
803 $out->addHTML( Xml::closeElement( 'div' ) );
804 return;
808 // The actual results; specialist subclasses will want to handle this
809 // with more than a straight list, so we hand them the info, plus
810 // an OutputPage, and let them get on with it
811 $this->outputResults( $out,
812 $this->getSkin(),
813 $dbr, // Should use IResultWrapper for this
814 $res,
815 min( $this->numRows, $this->limit ), // do not format the one extra row, if exist
816 $this->offset );
818 // Repeat the paging links at the bottom
819 if ( $this->shownavigation ) {
820 // @phan-suppress-next-line PhanPossiblyUndeclaredVariable paging is set when used here
821 $out->addHTML( '<p>' . $paging . '</p>' );
824 $out->addHTML( Xml::closeElement( 'div' ) );
828 * Format and output report results using the given information plus
829 * OutputPage
831 * @stable to override
833 * @param OutputPage $out OutputPage to print to
834 * @param Skin $skin User skin to use
835 * @param IReadableDatabase $dbr Database (read) connection to use
836 * @param IResultWrapper $res Result pointer
837 * @param int $num Number of available result rows
838 * @param int $offset Paging offset
840 protected function outputResults( $out, $skin, $dbr, $res, $num, $offset ) {
841 if ( $num > 0 ) {
842 $html = [];
843 if ( !$this->listoutput ) {
844 $html[] = $this->openList( $offset );
847 // $res might contain the whole 1,000 rows, so we read up to
848 // $num [should update this to use a Pager]
849 // phpcs:ignore Generic.CodeAnalysis.AssignmentInCondition.Found
850 for ( $i = 0; $i < $num && $row = $res->fetchObject(); $i++ ) {
851 $line = $this->formatResult( $skin, $row );
852 if ( $line ) {
853 $html[] = $this->listoutput
854 ? $line
855 : "<li>{$line}</li>\n";
859 if ( !$this->listoutput ) {
860 $html[] = $this->closeList();
863 $html = $this->listoutput
864 ? $this->getContentLanguage()->listToText( $html )
865 : implode( '', $html );
867 $out->addHTML( $html );
872 * @param int $offset
873 * @return string
875 protected function openList( $offset ) {
876 return "\n<ol start='" . ( $offset + 1 ) . "' class='special'>\n";
880 * @return string
882 protected function closeList() {
883 return "</ol>\n";
887 * Do any necessary preprocessing of the result object.
888 * @stable to override
889 * @param IDatabase $db
890 * @param IResultWrapper $res
892 protected function preprocessResults( $db, $res ) {
896 * Creates a new LinkBatch object, adds all pages from the passed result wrapper (MUST include
897 * title and optional the namespace field) and executes the batch. This operation will pre-cache
898 * LinkCache information like page existence and information for stub color and redirect hints.
900 * @note Call self::setLinkBatchFactory from special page constructor when use
902 * @param IResultWrapper $res The result wrapper to process. Needs to include the title
903 * field and namespace field, if the $ns parameter isn't set.
904 * @param int|null $ns Use this namespace for the given titles in the result wrapper,
905 * instead of the namespace value of $res.
907 protected function executeLBFromResultWrapper( IResultWrapper $res, $ns = null ) {
908 if ( !$res->numRows() ) {
909 return;
912 $batch = $this->getLinkBatchFactory()->newLinkBatch();
913 foreach ( $res as $row ) {
914 $batch->add( $ns ?? (int)$row->namespace, $row->title );
916 $batch->execute();
918 $res->seek( 0 );
922 * @since 1.36
923 * @deprecated since 1.43, use self::setDatabaseProvider
924 * @param ILoadBalancer $loadBalancer
926 final protected function setDBLoadBalancer( ILoadBalancer $loadBalancer ) {
927 $this->loadBalancer = $loadBalancer;
931 * @since 1.36
932 * @deprecated since 1.43, use self::getDatabaseProvider
933 * @return ILoadBalancer
935 final protected function getDBLoadBalancer(): ILoadBalancer {
936 if ( $this->loadBalancer === null ) {
937 // Fallback if not provided
938 // TODO Change to wfWarn in a future release
939 $this->loadBalancer = MediaWikiServices::getInstance()->getDBLoadBalancer();
941 return $this->loadBalancer;
945 * @since 1.41
946 * @param IConnectionProvider $databaseProvider
948 final protected function setDatabaseProvider( IConnectionProvider $databaseProvider ) {
949 $this->databaseProvider = $databaseProvider;
953 * @since 1.41
954 * @return IConnectionProvider
956 final protected function getDatabaseProvider(): IConnectionProvider {
957 if ( $this->databaseProvider === null ) {
958 $this->databaseProvider = MediaWikiServices::getInstance()->getConnectionProvider();
960 return $this->databaseProvider;
964 /** @deprecated class alias since 1.41 */
965 class_alias( QueryPage::class, 'QueryPage' );