79 [ AncientPagesPage::class,
'Ancientpages' ],
80 [ BrokenRedirectsPage::class,
'BrokenRedirects' ],
81 [ DeadendPagesPage::class,
'Deadendpages' ],
82 [ DoubleRedirectsPage::class,
'DoubleRedirects' ],
83 [ FileDuplicateSearchPage::class,
'FileDuplicateSearch' ],
84 [ ListDuplicatedFilesPage::class,
'ListDuplicatedFiles' ],
85 [ LinkSearchPage::class,
'LinkSearch' ],
86 [ ListredirectsPage::class,
'Listredirects' ],
87 [ LonelyPagesPage::class,
'Lonelypages' ],
88 [ LongPagesPage::class,
'Longpages' ],
89 [ MediaStatisticsPage::class,
'MediaStatistics' ],
90 [ MIMEsearchPage::class,
'MIMEsearch' ],
91 [ MostcategoriesPage::class,
'Mostcategories' ],
92 [ MostimagesPage::class,
'Mostimages' ],
93 [ MostinterwikisPage::class,
'Mostinterwikis' ],
94 [ MostlinkedCategoriesPage::class,
'Mostlinkedcategories' ],
95 [ MostlinkedTemplatesPage::class,
'Mostlinkedtemplates' ],
96 [ MostlinkedPage::class,
'Mostlinked' ],
97 [ MostrevisionsPage::class,
'Mostrevisions' ],
98 [ FewestrevisionsPage::class,
'Fewestrevisions' ],
99 [ ShortPagesPage::class,
'Shortpages' ],
100 [ UncategorizedCategoriesPage::class,
'Uncategorizedcategories' ],
101 [ UncategorizedPagesPage::class,
'Uncategorizedpages' ],
102 [ UncategorizedImagesPage::class,
'Uncategorizedimages' ],
103 [ UncategorizedTemplatesPage::class,
'Uncategorizedtemplates' ],
104 [ UnusedCategoriesPage::class,
'Unusedcategories' ],
105 [ UnusedimagesPage::class,
'Unusedimages' ],
106 [ WantedCategoriesPage::class,
'Wantedcategories' ],
107 [ WantedFilesPage::class,
'Wantedfiles' ],
108 [ WantedPagesPage::class,
'Wantedpages' ],
109 [ WantedTemplatesPage::class,
'Wantedtemplates' ],
110 [ UnwatchedpagesPage::class,
'Unwatchedpages' ],
111 [ UnusedtemplatesPage::class,
'Unusedtemplates' ],
112 [ WithoutInterwikiPage::class,
'Withoutinterwiki' ],
114 Hooks::run(
'wgQueryPages', [ &$qp ] );
126 $this->listoutput =
$bool;
167 throw new MWException(
"Bug in a QueryPage: doesn't implement getQueryInfo() nor "
168 .
"getQuery() properly" );
213 return $this->
getConfig()->get(
'DisableQueryPages' );
274 $this->
getOutput()->addWikiMsg(
'specialpage-empty' );
316 $fname = static::class .
'::recache';
327 $num =
$res->numRows();
330 foreach (
$res as $row ) {
331 if (
isset( $row->value ) ) {
344 'qc_namespace' => $row->namespace,
345 'qc_title' => $row->title,
350 $dbw->doAtomicSection(
353 # Clear out any old cached data
354 $dbw->
delete(
'querycache',
355 [
'qc_type' => $this->
getName() ],
358 # Save results into the querycache table on the master
359 if ( count( $vals ) ) {
362 # Update the querycache_info record for the page
363 $dbw->
delete(
'querycache_info',
364 [
'qci_type' => $this->
getName() ],
367 $dbw->
insert(
'querycache_info',
368 [
'qci_type' => $this->
getName(),
376 if ( !$ignoreErrors ) {
401 $fname = static::class .
'::reallyDoQuery';
407 foreach ( $order as &$field ) {
437 $sql .=
' ORDER BY ' . implode(
', ', $order );
480 foreach ( $order as &$field ) {
488 return $dbr->select(
'querycache',
490 'namespace' =>
'qc_namespace',
491 'title' =>
'qc_title',
492 'value' =>
'qc_value' ],
493 [
'qc_type' => $this->
getName() ],
513 if (
is_null( $this->cachedTimestamp ) ) {
515 $fname = static::class .
'::getCachedTimestamp';
516 $this->cachedTimestamp =
$dbr->selectField(
'querycache_info',
'qci_timestamp',
536 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
556 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
557 $limit = min( $uiLimit + 1, $maxResults - $uiOffset );
575 return max( $this->
getConfig()->
get(
'QueryCacheLimit' ), 10000 );
596 $out->addWikiMsg(
'querypage-disabled' );
602 if ( $this->limit == 0 && $this->offset == 0 ) {
605 $dbLimit = $this->
getDBLimit( $this->limit, $this->offset );
608 # select one extra row for navigation
611 # Get the cached result, select one extra row for navigation
613 if ( !$this->listoutput ) {
614 # Fetch the timestamp of this update
617 $maxResults =
$lang->formatNum( $this->
getConfig()->
get(
'QueryCacheLimit' ) );
620 $updated =
$lang->userTimeAndDate( $ts, $user );
621 $updateddate =
$lang->userDate( $ts, $user );
622 $updatedtime =
$lang->userTime( $ts, $user );
623 $out->addMeta(
'Data-Cache-Time', $ts );
624 $out->addJsConfigVars(
'dataCacheTime', $ts );
625 $out->addWikiMsg(
'perfcachedts', $updated, $updateddate, $updatedtime, $maxResults );
627 $out->addWikiMsg(
'perfcached', $maxResults );
630 # If updates on this page have been disabled, let the user know
631 # that the data set won't be refreshed for now
636 "<div class=\"mw-querypage-no-updates\">\n$1\n</div>",
637 'querypage-no-updates'
643 $this->numRows =
$res->numRows();
648 $out->addHTML( Xml::openElement(
'div', [
'class' =>
'mw-spcontent' ] ) );
650 # Top header and navigation
651 if ( $this->shownavigation ) {
653 if ( $this->numRows > 0 ) {
654 $out->addHTML( $this->
msg(
'showingresultsinrange' )->numParams(
655 min( $this->numRows, $this->limit ), #
do not show the one extra row,
if exist
656 $this->offset + 1, ( min( $this->numRows, $this->limit ) + $this->offset ) )->parseAsBlock() );
657 # Disable the "next" link when we reach the end
658 $miserMaxResults = $this->
getConfig()->get(
'MiserMode' )
659 && ( $this->offset + $this->limit >= $this->
getMaxResults() );
660 $atEnd = ( $this->numRows <=
$this->limit ) || $miserMaxResults;
663 $out->addHTML(
'<p>' . $paging .
'</p>' );
665 # No results to show, so don't bother with "showing X of Y" etc.
666 # -- just let the user know and give up now
668 $out->addHTML( Xml::closeElement(
'div' ) );
673 # The actual results; specialist subclasses will want to handle this
674 # with more than a straight list, so we hand them the info, plus
675 # an OutputPage, and let them get on with it
678 $dbr, # Should use a ResultWrapper
for this
680 min( $this->numRows, $this->limit ), #
do not format the one extra row,
if exist
683 # Repeat the paging links at the bottom
684 if ( $this->shownavigation ) {
685 $out->addHTML(
'<p>' . $paging .
'</p>' );
688 $out->addHTML( Xml::closeElement(
'div' ) );
705 if ( !$this->listoutput ) {
709 # $res might contain the whole 1,000 rows, so we read up to
710 # $num [should update this to use a Pager]
711 for ( $i = 0; $i < $num && $row =
$res->fetchObject(); $i++ ) {
714 $html[] = $this->listoutput
716 :
"<li>{$line}</li>\n";
720 # Flush the final result
725 $html[] = $this->listoutput
727 :
"<li>{$line}</li>\n";
731 if ( !$this->listoutput ) {
735 $html = $this->listoutput
736 ? MediaWikiServices::getInstance()->getContentLanguage()->listToText(
$html )
737 : implode(
'',
$html );
748 return "\n<ol start='" . (
$offset + 1 ) .
"' class='special'>\n";
777 if ( !
$res->numRows() ) {
782 foreach (
$res as $row ) {
783 $batch->
add( $ns ?? $row->namespace, $row->title );
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Class representing a list of titles The execute() method checks them all for existence and adds them ...
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
isExpensive()
Is this query expensive (for some definition of expensive)? Then we don't let it run in miser mode.
linkParameters()
If using extra form wheely-dealies, return a set of parameters here as an associative array.
getMaxResults()
Get max number of results we can return in miser mode.
doQuery( $offset=false, $limit=false)
Somewhat deprecated, you probably want to be using execute()
executeLBFromResultWrapper(IResultWrapper $res, $ns=null)
Creates a new LinkBatch object, adds all pages from the passed ResultWrapper (MUST include title and ...
setListoutput( $bool)
A mutator for $this->listoutput;.
recache( $limit, $ignoreErrors=true)
Clear the cache and save new results.
tryLastResult()
Some special pages (for example SpecialListusers used to) might not return the current object formatt...
fetchFromCache( $limit, $offset=false)
Fetch the query results from the query cache.
int $offset
The offset and limit in use, as passed to the query() function.
outputResults( $out, $skin, $dbr, $res, $num, $offset)
Format and output report results using the given information plus OutputPage.
isCached()
Whether or not the output of the page in question is retrieved from the database cache.
sortDescending()
Override to sort by increasing values.
formatResult( $skin, $result)
Formats the results of the query for display.
isSyndicated()
Sometime we don't want to build rss / atom feeds.
string null $cachedTimestamp
static getPages()
Get a list of query page classes and their associated special pages, for periodic updates.
bool $shownavigation
Whether to show prev/next links.
reallyDoQuery( $limit, $offset=false)
Run the query and return the result.
isCacheable()
Is the output of this query cacheable? Non-cacheable expensive pages will be disabled in miser mode a...
getOrderFields()
Subclasses return an array of fields to order by here.
showEmptyText()
Outputs some kind of an informative message (via OutputPage) to let the user know that the query retu...
usesTimestamps()
Does this query return timestamps rather than integers in its 'value' field? If true,...
getCacheOrderFields()
Return the order fields for fetchFromCache.
getQueryInfo()
Subclasses return an SQL query here, formatted as an array with the following keys: tables => Table(s...
getDBLimit( $uiLimit, $uiOffset)
What is limit to fetch from DB.
int $numRows
The number of rows returned by the query.
preprocessResults( $db, $res)
Do any necessary preprocessing of the result object.
getSQL()
For back-compat, subclasses may return a raw SQL query here, as a string.
getPageHeader()
The content returned by this function will be output before any result.
bool $listoutput
Whether or not we want plain listoutput rather than an ordered list.
execute( $par)
This is the actual workhorse.
getLimitOffset()
Returns limit and offset, as returned by $this->getRequest()->getLimitOffset().
getRecacheDB()
Get a DB connection to be used for slow recache queries.
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
getName()
Get the name of this Special Page.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
buildPrevNextNavigation( $offset, $limit, array $query=[], $atend=false, $subpage=false)
Generate (prev x| next x) (20|50|100...) type links for paging.
getSkin()
Shortcut to get the skin being used for this instance.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getRequest()
Get the WebRequest being used for this instance.
displayRestrictionError()
Output an error message telling the user what access level they have to have.
getLanguage()
Shortcut to get user's language.
userCanExecute(User $user)
Checks if the given user (identified by an object) can execute this special page (as defined by $mRes...
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
returning false will NOT prevent logging $e
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
if(!isset( $args[0])) $lang