MediaWiki REL1_34
SpecialBrokenRedirects.php
Go to the documentation of this file.
1<?php
27
35 function __construct( $name = 'BrokenRedirects' ) {
36 parent::__construct( $name );
37 }
38
39 public function isExpensive() {
40 return true;
41 }
42
43 function isSyndicated() {
44 return false;
45 }
46
47 function sortDescending() {
48 return false;
49 }
50
51 function getPageHeader() {
52 return $this->msg( 'brokenredirectstext' )->parseAsBlock();
53 }
54
55 public function getQueryInfo() {
57
58 return [
59 'tables' => [
60 'redirect',
61 'p1' => 'page',
62 'p2' => 'page',
63 ],
64 'fields' => [
65 'namespace' => 'p1.page_namespace',
66 'title' => 'p1.page_title',
67 'rd_namespace',
68 'rd_title',
69 'rd_fragment',
70 ],
71 'conds' => [
72 // Exclude pages that don't exist locally as wiki pages,
73 // but aren't "broken" either.
74 // Special pages and interwiki links
75 'rd_namespace >= 0',
76 'rd_interwiki IS NULL OR rd_interwiki = ' . $dbr->addQuotes( '' ),
77 'p2.page_namespace IS NULL',
78 ],
79 'join_conds' => [
80 'p1' => [ 'JOIN', [
81 'rd_from=p1.page_id',
82 ] ],
83 'p2' => [ 'LEFT JOIN', [
84 'rd_namespace=p2.page_namespace',
85 'rd_title=p2.page_title'
86 ] ],
87 ],
88 ];
89 }
90
94 function getOrderFields() {
95 return [ 'rd_namespace', 'rd_title', 'rd_from' ];
96 }
97
103 function formatResult( $skin, $result ) {
104 $fromObj = Title::makeTitle( $result->namespace, $result->title );
105 if ( isset( $result->rd_title ) ) {
106 $toObj = Title::makeTitle( $result->rd_namespace, $result->rd_title, $result->rd_fragment );
107 } else {
108 $blinks = $fromObj->getBrokenLinksFrom(); # TODO: check for redirect, not for links
109 if ( $blinks ) {
110 $toObj = $blinks[0];
111 } else {
112 $toObj = false;
113 }
114 }
115
117 $permissionManager = MediaWikiServices::getInstance()->getPermissionManager();
118
119 // $toObj may very easily be false if the $result list is cached
120 if ( !is_object( $toObj ) ) {
121 return '<del>' . $linkRenderer->makeLink( $fromObj ) . '</del>';
122 }
123
124 $from = $linkRenderer->makeKnownLink(
125 $fromObj,
126 null,
127 [],
128 [ 'redirect' => 'no' ]
129 );
130 $links = [];
131 // if the page is editable, add an edit link
132 if (
133 // check user permissions
134 $permissionManager->userHasRight( $this->getUser(), 'edit' ) &&
135 // check, if the content model is editable through action=edit
136 ContentHandler::getForTitle( $fromObj )->supportsDirectEditing()
137 ) {
138 $links[] = $linkRenderer->makeKnownLink(
139 $fromObj,
140 $this->msg( 'brokenredirects-edit' )->text(),
141 [],
142 [ 'action' => 'edit' ]
143 );
144 }
145 $to = $linkRenderer->makeBrokenLink( $toObj, $toObj->getFullText() );
146 $arr = $this->getLanguage()->getArrow();
147
148 $out = $from . $this->msg( 'word-separator' )->escaped();
149
150 if ( $permissionManager->userHasRight( $this->getUser(), 'delete' ) ) {
151 $links[] = $linkRenderer->makeKnownLink(
152 $fromObj,
153 $this->msg( 'brokenredirects-delete' )->text(),
154 [],
155 [ 'action' => 'delete' ]
156 );
157 }
158
159 if ( $links ) {
160 $out .= $this->msg( 'parentheses' )->rawParams( $this->getLanguage()
161 ->pipeList( $links ) )->escaped();
162 }
163 $out .= " {$arr} {$to}";
164
165 return $out;
166 }
167
168 public function execute( $par ) {
169 $this->addHelpLink( 'Help:Redirects' );
170 parent::execute( $par );
171 }
172
179 function preprocessResults( $db, $res ) {
181 }
182
183 protected function getGroupName() {
184 return 'maintenance';
185 }
186}
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
MediaWikiServices is the service locator for the application scope of MediaWiki.
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
Definition QueryPage.php:36
executeLBFromResultWrapper(IResultWrapper $res, $ns=null)
Creates a new LinkBatch object, adds all pages from the passed result wrapper (MUST include title and...
A special page listing redirects to non existent page.
preprocessResults( $db, $res)
Cache page content model for performance.
isSyndicated()
Sometime we don't want to build rss / atom feeds.
getQueryInfo()
Subclasses return an SQL query here, formatted as an array with the following keys: tables => Table(s...
execute( $par)
This is the actual workhorse.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
sortDescending()
Override to sort by increasing values.
isExpensive()
Is this query expensive (for some definition of expensive)? Then we don't let it run in miser mode.
__construct( $name='BrokenRedirects')
getPageHeader()
The content returned by this function will be output before any result.
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getLanguage()
Shortcut to get user's language.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
MediaWiki Linker LinkRenderer null $linkRenderer
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
Result wrapper for grabbing data queried from an IDatabase object.
const DB_REPLICA
Definition defines.php:25