MediaWiki  1.33.0
SpecialRecentchangeslinked.php
Go to the documentation of this file.
1 <?php
31  protected $rclTargetTitle;
32 
33  function __construct() {
34  parent::__construct( 'Recentchangeslinked' );
35  }
36 
37  public function getDefaultOptions() {
38  $opts = parent::getDefaultOptions();
39  $opts->add( 'target', '' );
40  $opts->add( 'showlinkedto', false );
41 
42  return $opts;
43  }
44 
45  public function parseParameters( $par, FormOptions $opts ) {
46  $opts['target'] = $par;
47  }
48 
52  protected function doMainQuery( $tables, $select, $conds, $query_options,
53  $join_conds, FormOptions $opts
54  ) {
55  $target = $opts['target'];
56  $showlinkedto = $opts['showlinkedto'];
57  $limit = $opts['limit'];
58 
59  if ( $target === '' ) {
60  return false;
61  }
62  $outputPage = $this->getOutput();
63  $title = Title::newFromText( $target );
64  if ( !$title || $title->isExternal() ) {
65  $outputPage->addHTML(
66  Html::errorBox( $this->msg( 'allpagesbadtitle' )->parse() )
67  );
68  return false;
69  }
70 
71  $outputPage->setPageTitle( $this->msg( 'recentchangeslinked-title', $title->getPrefixedText() ) );
72 
73  /*
74  * Ordinary links are in the pagelinks table, while transclusions are
75  * in the templatelinks table, categorizations in categorylinks and
76  * image use in imagelinks. We need to somehow combine all these.
77  * Special:Whatlinkshere does this by firing multiple queries and
78  * merging the results, but the code we inherit from our parent class
79  * expects only one result set so we use UNION instead.
80  */
81 
82  $dbr = wfGetDB( DB_REPLICA, 'recentchangeslinked' );
83  $id = $title->getArticleID();
84  $ns = $title->getNamespace();
85  $dbkey = $title->getDBkey();
86 
87  $rcQuery = RecentChange::getQueryInfo();
88  $tables = array_merge( $tables, $rcQuery['tables'] );
89  $select = array_merge( $rcQuery['fields'], $select );
90  $join_conds = array_merge( $join_conds, $rcQuery['joins'] );
91 
92  // left join with watchlist table to highlight watched rows
93  $uid = $this->getUser()->getId();
94  if ( $uid && $this->getUser()->isAllowed( 'viewmywatchlist' ) ) {
95  $tables[] = 'watchlist';
96  $select[] = 'wl_user';
97  $join_conds['watchlist'] = [ 'LEFT JOIN', [
98  'wl_user' => $uid,
99  'wl_title=rc_title',
100  'wl_namespace=rc_namespace'
101  ] ];
102  }
103 
104  // JOIN on page, used for 'last revision' filter highlight
105  $tables[] = 'page';
106  $join_conds['page'] = [ 'LEFT JOIN', 'rc_cur_id=page_id' ];
107  $select[] = 'page_latest';
108 
109  $tagFilter = $opts['tagfilter'] ? explode( '|', $opts['tagfilter'] ) : [];
111  $tables,
112  $select,
113  $conds,
114  $join_conds,
115  $query_options,
116  $tagFilter
117  );
118 
119  if ( $dbr->unionSupportsOrderAndLimit() ) {
120  if ( count( $tagFilter ) > 1 ) {
121  // ChangeTags::modifyDisplayQuery() will have added DISTINCT.
122  // To prevent this from causing query performance problems, we need to add
123  // a GROUP BY, and add rc_id to the ORDER BY.
124  $order = [
125  'GROUP BY' => 'rc_timestamp, rc_id',
126  'ORDER BY' => 'rc_timestamp DESC, rc_id DESC'
127  ];
128  } else {
129  $order = [ 'ORDER BY' => 'rc_timestamp DESC' ];
130  }
131  } else {
132  $order = [];
133  }
134 
135  if ( !$this->runMainQueryHook( $tables, $select, $conds, $query_options, $join_conds,
136  $opts )
137  ) {
138  return false;
139  }
140 
141  if ( $ns == NS_CATEGORY && !$showlinkedto ) {
142  // special handling for categories
143  // XXX: should try to make this less kludgy
144  $link_tables = [ 'categorylinks' ];
145  $showlinkedto = true;
146  } else {
147  // for now, always join on these tables; really should be configurable as in whatlinkshere
148  $link_tables = [ 'pagelinks', 'templatelinks' ];
149  // imagelinks only contains links to pages in NS_FILE
150  if ( $ns == NS_FILE || !$showlinkedto ) {
151  $link_tables[] = 'imagelinks';
152  }
153  }
154 
155  if ( $id == 0 && !$showlinkedto ) {
156  return false; // nonexistent pages can't link to any pages
157  }
158 
159  // field name prefixes for all the various tables we might want to join with
160  $prefix = [
161  'pagelinks' => 'pl',
162  'templatelinks' => 'tl',
163  'categorylinks' => 'cl',
164  'imagelinks' => 'il'
165  ];
166 
167  $subsql = []; // SELECT statements to combine with UNION
168 
169  foreach ( $link_tables as $link_table ) {
170  $pfx = $prefix[$link_table];
171 
172  // imagelinks and categorylinks tables have no xx_namespace field,
173  // and have xx_to instead of xx_title
174  if ( $link_table == 'imagelinks' ) {
175  $link_ns = NS_FILE;
176  } elseif ( $link_table == 'categorylinks' ) {
177  $link_ns = NS_CATEGORY;
178  } else {
179  $link_ns = 0;
180  }
181 
182  if ( $showlinkedto ) {
183  // find changes to pages linking to this page
184  if ( $link_ns ) {
185  if ( $ns != $link_ns ) {
186  continue;
187  } // should never happen, but check anyway
188  $subconds = [ "{$pfx}_to" => $dbkey ];
189  } else {
190  $subconds = [ "{$pfx}_namespace" => $ns, "{$pfx}_title" => $dbkey ];
191  }
192  $subjoin = "rc_cur_id = {$pfx}_from";
193  } else {
194  // find changes to pages linked from this page
195  $subconds = [ "{$pfx}_from" => $id ];
196  if ( $link_table == 'imagelinks' || $link_table == 'categorylinks' ) {
197  $subconds["rc_namespace"] = $link_ns;
198  $subjoin = "rc_title = {$pfx}_to";
199  } else {
200  $subjoin = [ "rc_namespace = {$pfx}_namespace", "rc_title = {$pfx}_title" ];
201  }
202  }
203 
204  $query = $dbr->selectSQLText(
205  array_merge( $tables, [ $link_table ] ),
206  $select,
207  $conds + $subconds,
208  __METHOD__,
209  $order + $query_options,
210  $join_conds + [ $link_table => [ 'JOIN', $subjoin ] ]
211  );
212 
213  if ( $dbr->unionSupportsOrderAndLimit() ) {
214  $query = $dbr->limitResult( $query, $limit );
215  }
216 
217  $subsql[] = $query;
218  }
219 
220  if ( count( $subsql ) == 0 ) {
221  return false; // should never happen
222  }
223  if ( count( $subsql ) == 1 && $dbr->unionSupportsOrderAndLimit() ) {
224  $sql = $subsql[0];
225  } else {
226  // need to resort and relimit after union
227  $sql = $dbr->unionQueries( $subsql, $dbr::UNION_DISTINCT ) .
228  ' ORDER BY rc_timestamp DESC';
229  $sql = $dbr->limitResult( $sql, $limit, false );
230  }
231 
232  $res = $dbr->query( $sql, __METHOD__ );
233 
234  if ( $res->numRows() == 0 ) {
235  $this->mResultEmpty = true;
236  }
237 
238  return $res;
239  }
240 
241  function setTopText( FormOptions $opts ) {
242  $target = $this->getTargetTitle();
243  if ( $target ) {
244  $this->getOutput()->addBacklinkSubtitle( $target );
245  $this->getSkin()->setRelevantTitle( $target );
246  }
247  }
248 
255  function getExtraOptions( $opts ) {
256  $extraOpts = parent::getExtraOptions( $opts );
257 
258  $opts->consumeValues( [ 'showlinkedto', 'target' ] );
259 
260  $extraOpts['target'] = [ $this->msg( 'recentchangeslinked-page' )->escaped(),
261  Xml::input( 'target', 40, str_replace( '_', ' ', $opts['target'] ) ) .
262  Xml::check( 'showlinkedto', $opts['showlinkedto'], [ 'id' => 'showlinkedto' ] ) . ' ' .
263  Xml::label( $this->msg( 'recentchangeslinked-to' )->text(), 'showlinkedto' ) ];
264 
265  $this->addHelpLink( 'Help:Related changes' );
266  return $extraOpts;
267  }
268 
272  function getTargetTitle() {
273  if ( $this->rclTargetTitle === null ) {
274  $opts = $this->getOptions();
275  if ( isset( $opts['target'] ) && $opts['target'] !== '' ) {
276  $this->rclTargetTitle = Title::newFromText( $opts['target'] );
277  } else {
278  $this->rclTargetTitle = false;
279  }
280  }
281 
282  return $this->rclTargetTitle;
283  }
284 
293  public function prefixSearchSubpages( $search, $limit, $offset ) {
294  return $this->prefixSearchString( $search, $limit, $offset );
295  }
296 
297  protected function outputNoResults() {
298  $targetTitle = $this->getTargetTitle();
299  if ( $targetTitle === false ) {
300  $this->getOutput()->addHTML(
301  Html::rawElement(
302  'div',
303  [ 'class' => 'mw-changeslist-empty mw-changeslist-notargetpage' ],
304  $this->msg( 'recentchanges-notargetpage' )->parse()
305  )
306  );
307  } elseif ( !$targetTitle || $targetTitle->isExternal() ) {
308  $this->getOutput()->addHTML(
309  Html::rawElement(
310  'div',
311  [ 'class' => 'mw-changeslist-empty mw-changeslist-invalidtargetpage' ],
312  $this->msg( 'allpagesbadtitle' )->parse()
313  )
314  );
315  } else {
316  parent::outputNoResults();
317  }
318  }
319 }
SpecialRecentChangesLinked\getExtraOptions
getExtraOptions( $opts)
Get options to be displayed in a form.
Definition: SpecialRecentchangeslinked.php:255
RecentChange\getQueryInfo
static getQueryInfo()
Return the tables, fields, and join conditions to be selected to create a new recentchanges object.
Definition: RecentChange.php:280
SpecialRecentChangesLinked\outputNoResults
outputNoResults()
Add the "no results" message to the output.
Definition: SpecialRecentchangeslinked.php:297
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:306
SpecialRecentChangesLinked\parseParameters
parseParameters( $par, FormOptions $opts)
Process $par and put options found in $opts.
Definition: SpecialRecentchangeslinked.php:45
SpecialPage\msg
msg( $key)
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:796
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:725
SpecialRecentChangesLinked
This is to display changes made to all articles linked in an article.
Definition: SpecialRecentchangeslinked.php:29
Xml\label
static label( $label, $id, $attribs=[])
Convenience function to build an HTML form label.
Definition: Xml.php:358
captcha-old.count
count
Definition: captcha-old.py:249
SpecialRecentChangesLinked\getTargetTitle
getTargetTitle()
Definition: SpecialRecentchangeslinked.php:272
$tables
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
Definition: hooks.txt:979
SpecialRecentChangesLinked\setTopText
setTopText(FormOptions $opts)
Send the text to be displayed above the options.
Definition: SpecialRecentchangeslinked.php:241
NS_FILE
const NS_FILE
Definition: Defines.php:70
SpecialPage\getSkin
getSkin()
Shortcut to get the skin being used for this instance.
Definition: SpecialPage.php:745
$res
$res
Definition: database.txt:21
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
$dbr
$dbr
Definition: testCompression.php:50
ChangeTags\modifyDisplayQuery
static modifyDisplayQuery(&$tables, &$fields, &$conds, &$join_conds, &$options, $filter_tag='')
Applies all tags-related changes to a query.
Definition: ChangeTags.php:728
$query
null for the 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
Definition: hooks.txt:1588
SpecialPage\addHelpLink
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
Definition: SpecialPage.php:832
SpecialPage\prefixSearchString
prefixSearchString( $search, $limit, $offset)
Perform a regular substring search for prefixSearchSubpages.
Definition: SpecialPage.php:495
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
ChangesListSpecialPage\runMainQueryHook
runMainQueryHook(&$tables, &$fields, &$conds, &$query_options, &$join_conds, $opts)
Definition: ChangesListSpecialPage.php:1532
Xml\check
static check( $name, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox.
Definition: Xml.php:323
SpecialPage\getUser
getUser()
Shortcut to get the User executing this instance.
Definition: SpecialPage.php:735
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
NS_CATEGORY
const NS_CATEGORY
Definition: Defines.php:78
SpecialRecentChangesLinked\prefixSearchSubpages
prefixSearchSubpages( $search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
Definition: SpecialRecentchangeslinked.php:293
SpecialRecentChangesLinked\__construct
__construct()
Definition: SpecialRecentchangeslinked.php:33
SpecialRecentChangesLinked\doMainQuery
doMainQuery( $tables, $select, $conds, $query_options, $join_conds, FormOptions $opts)
@inheritDoc
Definition: SpecialRecentchangeslinked.php:52
SpecialRecentChanges
A special page that lists last changes made to the wiki.
Definition: SpecialRecentchanges.php:33
text
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
Definition: All_system_messages.txt:1267
Title
Represents a title within MediaWiki.
Definition: Title.php:40
SpecialRecentChangesLinked\getDefaultOptions
getDefaultOptions()
Get a FormOptions object containing the default options.
Definition: SpecialRecentchangeslinked.php:37
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Xml\input
static input( $name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
Definition: Xml.php:274
FormOptions
Helper class to keep track of options when mixing links and form elements.
Definition: FormOptions.php:35
SpecialRecentChangesLinked\$rclTargetTitle
bool Title $rclTargetTitle
Definition: SpecialRecentchangeslinked.php:31
ChangesListSpecialPage\getOptions
getOptions()
Get the current FormOptions for this request.
Definition: ChangesListSpecialPage.php:952