3 * Class definition for a wanted query page.
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
21 * @ingroup SpecialPage
25 * Class definition for a wanted query page like
26 * WantedPages, WantedTemplates, etc
27 * @ingroup SpecialPage
29 abstract class WantedQueryPage
extends QueryPage
{
30 function isExpensive() {
34 function isSyndicated() {
39 * Cache page existence for performance
40 * @param IDatabase $db
41 * @param ResultWrapper $res
43 function preprocessResults( $db, $res ) {
44 $this->executeLBFromResultWrapper( $res );
48 * Should formatResult() always check page existence, even if
49 * the results are fresh? This is a (hopefully temporary)
50 * kluge for Special:WantedFiles, which may contain false
51 * positives for files that exist e.g. in a shared repo (bug
55 function forceExistenceCheck() {
60 * Format an individual result
62 * @param Skin $skin Skin to use for UI elements
63 * @param object $result Result row
66 public function formatResult( $skin, $result ) {
67 $linkRenderer = $this->getLinkRenderer();
68 $title = Title
::makeTitleSafe( $result->namespace, $result->title
);
69 if ( $title instanceof Title
) {
70 if ( $this->isCached() ||
$this->forceExistenceCheck() ) {
71 $pageLink = $this->existenceCheck( $title )
72 ?
'<del>' . $linkRenderer->makeLink( $title ) . '</del>'
73 : $linkRenderer->makeLink( $title );
75 $pageLink = $linkRenderer->makeLink(
83 return $this->getLanguage()->specialList( $pageLink, $this->makeWlhLink( $title, $result ) );
85 return $this->msg( 'wantedpages-badtitle', $result->title
)->escaped();
90 * Does the Title currently exists
92 * This method allows a subclass to override this check
93 * (For example, wantedfiles, would want to check if the file exists
94 * not just that a page in the file namespace exists).
96 * This will only control if the link is crossed out. Whether or not the link
97 * is blue vs red is controlled by if the title exists.
99 * @note This will only be run if the page is cached (ie $wgMiserMode = true)
100 * unless forceExistenceCheck() is true.
104 protected function existenceCheck( Title
$title ) {
105 return $title->isKnown();
109 * Make a "what links here" link for a given title
111 * @param Title $title Title to make the link for
112 * @param object $result Result row
115 private function makeWlhLink( $title, $result ) {
116 $wlh = SpecialPage
::getTitleFor( 'Whatlinkshere', $title->getPrefixedText() );
117 $label = $this->msg( 'nlinks' )->numParams( $result->value
)->escaped();
118 return Linker
::link( $wlh, $label );