MediaWiki  1.30.0
ContribsPager.php
Go to the documentation of this file.
1 <?php
30 
32 
34  public $messages;
35  public $target;
36  public $namespace = '';
37  public $mDb;
38  public $preventClickjacking = false;
39 
41  public $mDbSecondary;
42 
46  protected $mParentLens;
47 
51  protected $templateParser;
52 
54  parent::__construct( $context );
55 
56  $msgs = [
57  'diff',
58  'hist',
59  'pipe-separator',
60  'uctop'
61  ];
62 
63  foreach ( $msgs as $msg ) {
64  $this->messages[$msg] = $this->msg( $msg )->escaped();
65  }
66 
67  $this->target = isset( $options['target'] ) ? $options['target'] : '';
68  $this->contribs = isset( $options['contribs'] ) ? $options['contribs'] : 'users';
69  $this->namespace = isset( $options['namespace'] ) ? $options['namespace'] : '';
70  $this->tagFilter = isset( $options['tagfilter'] ) ? $options['tagfilter'] : false;
71  $this->nsInvert = isset( $options['nsInvert'] ) ? $options['nsInvert'] : false;
72  $this->associated = isset( $options['associated'] ) ? $options['associated'] : false;
73 
74  $this->deletedOnly = !empty( $options['deletedOnly'] );
75  $this->topOnly = !empty( $options['topOnly'] );
76  $this->newOnly = !empty( $options['newOnly'] );
77  $this->hideMinor = !empty( $options['hideMinor'] );
78 
79  // Date filtering: use timestamp if available
80  $startTimestamp = '';
81  $endTimestamp = '';
82  if ( $options['start'] ) {
83  $startTimestamp = $options['start'] . ' 00:00:00';
84  }
85  if ( $options['end'] ) {
86  $endTimestamp = $options['end'] . ' 23:59:59';
87  }
88  $this->getDateRangeCond( $startTimestamp, $endTimestamp );
89 
90  // This property on IndexPager is set by $this->getIndexField() in parent::__construct().
91  // We need to reassign it here so that it is used when the actual query is ran.
92  $this->mIndexField = $this->getIndexField();
93 
94  // Most of this code will use the 'contributions' group DB, which can map to replica DBs
95  // with extra user based indexes or partioning by user. The additional metadata
96  // queries should use a regular replica DB since the lookup pattern is not all by user.
97  $this->mDbSecondary = wfGetDB( DB_REPLICA ); // any random replica DB
98  $this->mDb = wfGetDB( DB_REPLICA, 'contributions' );
99  $this->templateParser = new TemplateParser();
100  }
101 
102  function getDefaultQuery() {
103  $query = parent::getDefaultQuery();
104  $query['target'] = $this->target;
105 
106  return $query;
107  }
108 
118  function reallyDoQuery( $offset, $limit, $descending ) {
119  list( $tables, $fields, $conds, $fname, $options, $join_conds ) = $this->buildQueryInfo(
120  $offset,
121  $limit,
122  $descending
123  );
124 
125  /*
126  * This hook will allow extensions to add in additional queries, so they can get their data
127  * in My Contributions as well. Extensions should append their results to the $data array.
128  *
129  * Extension queries have to implement the navbar requirement as well. They should
130  * - have a column aliased as $pager->getIndexField()
131  * - have LIMIT set
132  * - have a WHERE-clause that compares the $pager->getIndexField()-equivalent column to the offset
133  * - have the ORDER BY specified based upon the details provided by the navbar
134  *
135  * See includes/Pager.php buildQueryInfo() method on how to build LIMIT, WHERE & ORDER BY
136  *
137  * &$data: an array of results of all contribs queries
138  * $pager: the ContribsPager object hooked into
139  * $offset: see phpdoc above
140  * $limit: see phpdoc above
141  * $descending: see phpdoc above
142  */
143  $data = [ $this->mDb->select(
144  $tables, $fields, $conds, $fname, $options, $join_conds
145  ) ];
146  Hooks::run(
147  'ContribsPager::reallyDoQuery',
148  [ &$data, $this, $offset, $limit, $descending ]
149  );
150 
151  $result = [];
152 
153  // loop all results and collect them in an array
154  foreach ( $data as $query ) {
155  foreach ( $query as $i => $row ) {
156  // use index column as key, allowing us to easily sort in PHP
157  $result[$row->{$this->getIndexField()} . "-$i"] = $row;
158  }
159  }
160 
161  // sort results
162  if ( $descending ) {
163  ksort( $result );
164  } else {
165  krsort( $result );
166  }
167 
168  // enforce limit
169  $result = array_slice( $result, 0, $limit );
170 
171  // get rid of array keys
172  $result = array_values( $result );
173 
174  return new FakeResultWrapper( $result );
175  }
176 
177  function getQueryInfo() {
178  list( $tables, $index, $userCond, $join_cond ) = $this->getUserCond();
179 
180  $user = $this->getUser();
181  $conds = array_merge( $userCond, $this->getNamespaceCond() );
182 
183  // Paranoia: avoid brute force searches (T19342)
184  if ( !$user->isAllowed( 'deletedhistory' ) ) {
185  $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0';
186  } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
187  $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::SUPPRESSED_USER ) .
188  ' != ' . Revision::SUPPRESSED_USER;
189  }
190 
191  # Don't include orphaned revisions
192  $join_cond['page'] = Revision::pageJoinCond();
193  # Get the current user name for accounts
194  $join_cond['user'] = Revision::userJoinCond();
195 
196  $options = [];
197  if ( $index ) {
198  $options['USE INDEX'] = [ 'revision' => $index ];
199  }
200 
201  $queryInfo = [
202  'tables' => $tables,
203  'fields' => array_merge(
206  [ 'page_namespace', 'page_title', 'page_is_new',
207  'page_latest', 'page_is_redirect', 'page_len' ]
208  ),
209  'conds' => $conds,
210  'options' => $options,
211  'join_conds' => $join_cond
212  ];
213 
214  // For IPv6, we use ipc_rev_timestamp on ip_changes as the index field,
215  // which will be referenced when parsing the results of a query.
216  if ( self::isQueryableRange( $this->target ) ) {
217  $queryInfo['fields'][] = 'ipc_rev_timestamp';
218  }
219 
221  $queryInfo['tables'],
222  $queryInfo['fields'],
223  $queryInfo['conds'],
224  $queryInfo['join_conds'],
225  $queryInfo['options'],
226  $this->tagFilter
227  );
228 
229  // Avoid PHP 7.1 warning from passing $this by reference
230  $pager = $this;
231  Hooks::run( 'ContribsPager::getQueryInfo', [ &$pager, &$queryInfo ] );
232 
233  return $queryInfo;
234  }
235 
236  function getUserCond() {
237  $condition = [];
238  $join_conds = [];
239  $tables = [ 'revision', 'page', 'user' ];
240  $index = false;
241  if ( $this->contribs == 'newbie' ) {
242  $max = $this->mDb->selectField( 'user', 'max(user_id)', false, __METHOD__ );
243  $condition[] = 'rev_user >' . (int)( $max - $max / 100 );
244  # ignore local groups with the bot right
245  # @todo FIXME: Global groups may have 'bot' rights
246  $groupsWithBotPermission = User::getGroupsWithPermission( 'bot' );
247  if ( count( $groupsWithBotPermission ) ) {
248  $tables[] = 'user_groups';
249  $condition[] = 'ug_group IS NULL';
250  $join_conds['user_groups'] = [
251  'LEFT JOIN', [
252  'ug_user = rev_user',
253  'ug_group' => $groupsWithBotPermission,
254  'ug_expiry IS NULL OR ug_expiry >= ' .
255  $this->mDb->addQuotes( $this->mDb->timestamp() )
256  ]
257  ];
258  }
259  // (T140537) Disallow looking too far in the past for 'newbies' queries. If the user requested
260  // a timestamp offset far in the past such that there are no edits by users with user_ids in
261  // the range, we would end up scanning all revisions from that offset until start of time.
262  $condition[] = 'rev_timestamp > ' .
263  $this->mDb->addQuotes( $this->mDb->timestamp( wfTimestamp() - 30 * 24 * 60 * 60 ) );
264  } else {
265  $uid = User::idFromName( $this->target );
266  if ( $uid ) {
267  $condition['rev_user'] = $uid;
268  $index = 'user_timestamp';
269  } else {
270  $ipRangeConds = $this->getIpRangeConds( $this->mDb, $this->target );
271 
272  if ( $ipRangeConds ) {
273  $tables[] = 'ip_changes';
274  $join_conds['ip_changes'] = [
275  'LEFT JOIN', [ 'ipc_rev_id = rev_id' ]
276  ];
277  $condition[] = $ipRangeConds;
278  } else {
279  $condition['rev_user_text'] = $this->target;
280  $index = 'usertext_timestamp';
281  }
282  }
283  }
284 
285  if ( $this->deletedOnly ) {
286  $condition[] = 'rev_deleted != 0';
287  }
288 
289  if ( $this->topOnly ) {
290  $condition[] = 'rev_id = page_latest';
291  }
292 
293  if ( $this->newOnly ) {
294  $condition[] = 'rev_parent_id = 0';
295  }
296 
297  if ( $this->hideMinor ) {
298  $condition[] = 'rev_minor_edit = 0';
299  }
300 
301  return [ $tables, $index, $condition, $join_conds ];
302  }
303 
304  function getNamespaceCond() {
305  if ( $this->namespace !== '' ) {
306  $selectedNS = $this->mDb->addQuotes( $this->namespace );
307  $eq_op = $this->nsInvert ? '!=' : '=';
308  $bool_op = $this->nsInvert ? 'AND' : 'OR';
309 
310  if ( !$this->associated ) {
311  return [ "page_namespace $eq_op $selectedNS" ];
312  }
313 
314  $associatedNS = $this->mDb->addQuotes(
315  MWNamespace::getAssociated( $this->namespace )
316  );
317 
318  return [
319  "page_namespace $eq_op $selectedNS " .
320  $bool_op .
321  " page_namespace $eq_op $associatedNS"
322  ];
323  }
324 
325  return [];
326  }
327 
334  private function getIpRangeConds( $db, $ip ) {
335  // First make sure it is a valid range and they are not outside the CIDR limit
336  if ( !$this->isQueryableRange( $ip ) ) {
337  return false;
338  }
339 
340  list( $start, $end ) = IP::parseRange( $ip );
341 
342  return 'ipc_hex BETWEEN ' . $db->addQuotes( $start ) . ' AND ' . $db->addQuotes( $end );
343  }
344 
352  public function isQueryableRange( $ipRange ) {
353  $limits = $this->getConfig()->get( 'RangeContributionsCIDRLimit' );
354 
355  $bits = IP::parseCIDR( $ipRange )[1];
356  if (
357  ( $bits === false ) ||
358  ( IP::isIPv4( $ipRange ) && $bits < $limits['IPv4'] ) ||
359  ( IP::isIPv6( $ipRange ) && $bits < $limits['IPv6'] )
360  ) {
361  return false;
362  }
363 
364  return true;
365  }
366 
373  public function getIndexField() {
374  if ( $this->isQueryableRange( $this->target ) ) {
375  return 'ipc_rev_timestamp';
376  } else {
377  return 'rev_timestamp';
378  }
379  }
380 
381  function doBatchLookups() {
382  # Do a link batch query
383  $this->mResult->seek( 0 );
384  $parentRevIds = [];
385  $this->mParentLens = [];
386  $batch = new LinkBatch();
387  $isIpRange = $this->isQueryableRange( $this->target );
388  # Give some pointers to make (last) links
389  foreach ( $this->mResult as $row ) {
390  if ( isset( $row->rev_parent_id ) && $row->rev_parent_id ) {
391  $parentRevIds[] = $row->rev_parent_id;
392  }
393  if ( isset( $row->rev_id ) ) {
394  $this->mParentLens[$row->rev_id] = $row->rev_len;
395  if ( $this->contribs === 'newbie' ) { // multiple users
396  $batch->add( NS_USER, $row->user_name );
397  $batch->add( NS_USER_TALK, $row->user_name );
398  } elseif ( $isIpRange ) {
399  // If this is an IP range, batch the IP's talk page
400  $batch->add( NS_USER_TALK, $row->rev_user_text );
401  }
402  $batch->add( $row->page_namespace, $row->page_title );
403  }
404  }
405  # Fetch rev_len for revisions not already scanned above
406  $this->mParentLens += Revision::getParentLengths(
407  $this->mDbSecondary,
408  array_diff( $parentRevIds, array_keys( $this->mParentLens ) )
409  );
410  $batch->execute();
411  $this->mResult->seek( 0 );
412  }
413 
417  function getStartBody() {
418  return "<ul class=\"mw-contributions-list\">\n";
419  }
420 
424  function getEndBody() {
425  return "</ul>\n";
426  }
427 
440  function formatRow( $row ) {
441  $ret = '';
442  $classes = [];
443  $attribs = [];
444 
445  $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
446 
447  /*
448  * There may be more than just revision rows. To make sure that we'll only be processing
449  * revisions here, let's _try_ to build a revision out of our row (without displaying
450  * notices though) and then trying to grab data from the built object. If we succeed,
451  * we're definitely dealing with revision data and we may proceed, if not, we'll leave it
452  * to extensions to subscribe to the hook to parse the row.
453  */
454  MediaWiki\suppressWarnings();
455  try {
456  $rev = new Revision( $row );
457  $validRevision = (bool)$rev->getId();
458  } catch ( Exception $e ) {
459  $validRevision = false;
460  }
461  MediaWiki\restoreWarnings();
462 
463  if ( $validRevision ) {
464  $attribs['data-mw-revid'] = $rev->getId();
465 
466  $page = Title::newFromRow( $row );
467  $link = $linkRenderer->makeLink(
468  $page,
469  $page->getPrefixedText(),
470  [ 'class' => 'mw-contributions-title' ],
471  $page->isRedirect() ? [ 'redirect' => 'no' ] : []
472  );
473  # Mark current revisions
474  $topmarktext = '';
475  $user = $this->getUser();
476 
477  if ( $row->rev_id === $row->page_latest ) {
478  $topmarktext .= '<span class="mw-uctop">' . $this->messages['uctop'] . '</span>';
479  $classes[] = 'mw-contributions-current';
480  # Add rollback link
481  if ( !$row->page_is_new && $page->quickUserCan( 'rollback', $user )
482  && $page->quickUserCan( 'edit', $user )
483  ) {
484  $this->preventClickjacking();
485  $topmarktext .= ' ' . Linker::generateRollback( $rev, $this->getContext() );
486  }
487  }
488  # Is there a visible previous revision?
489  if ( $rev->userCan( Revision::DELETED_TEXT, $user ) && $rev->getParentId() !== 0 ) {
490  $difftext = $linkRenderer->makeKnownLink(
491  $page,
492  new HtmlArmor( $this->messages['diff'] ),
493  [ 'class' => 'mw-changeslist-diff' ],
494  [
495  'diff' => 'prev',
496  'oldid' => $row->rev_id
497  ]
498  );
499  } else {
500  $difftext = $this->messages['diff'];
501  }
502  $histlink = $linkRenderer->makeKnownLink(
503  $page,
504  new HtmlArmor( $this->messages['hist'] ),
505  [ 'class' => 'mw-changeslist-history' ],
506  [ 'action' => 'history' ]
507  );
508 
509  if ( $row->rev_parent_id === null ) {
510  // For some reason rev_parent_id isn't populated for this row.
511  // Its rumoured this is true on wikipedia for some revisions (T36922).
512  // Next best thing is to have the total number of bytes.
513  $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
514  $chardiff .= Linker::formatRevisionSize( $row->rev_len );
515  $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
516  } else {
517  $parentLen = 0;
518  if ( isset( $this->mParentLens[$row->rev_parent_id] ) ) {
519  $parentLen = $this->mParentLens[$row->rev_parent_id];
520  }
521 
522  $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
524  $parentLen,
525  $row->rev_len,
526  $this->getContext()
527  );
528  $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
529  }
530 
531  $lang = $this->getLanguage();
532  $comment = $lang->getDirMark() . Linker::revComment( $rev, false, true );
533  $date = $lang->userTimeAndDate( $row->rev_timestamp, $user );
534  if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
535  $d = $linkRenderer->makeKnownLink(
536  $page,
537  $date,
538  [ 'class' => 'mw-changeslist-date' ],
539  [ 'oldid' => intval( $row->rev_id ) ]
540  );
541  } else {
542  $d = htmlspecialchars( $date );
543  }
544  if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
545  $d = '<span class="history-deleted">' . $d . '</span>';
546  }
547 
548  # Show user names for /newbies as there may be different users.
549  # Note that only unprivileged users have rows with hidden user names excluded.
550  # When querying for an IP range, we want to always show user and user talk links.
551  $userlink = '';
552  if ( ( $this->contribs == 'newbie' && !$rev->isDeleted( Revision::DELETED_USER ) )
553  || $this->isQueryableRange( $this->target ) ) {
554  $userlink = ' . . ' . $lang->getDirMark()
555  . Linker::userLink( $rev->getUser(), $rev->getUserText() );
556  $userlink .= ' ' . $this->msg( 'parentheses' )->rawParams(
557  Linker::userTalkLink( $rev->getUser(), $rev->getUserText() ) )->escaped() . ' ';
558  }
559 
560  $flags = [];
561  if ( $rev->getParentId() === 0 ) {
562  $flags[] = ChangesList::flag( 'newpage' );
563  }
564 
565  if ( $rev->isMinor() ) {
566  $flags[] = ChangesList::flag( 'minor' );
567  }
568 
569  $del = Linker::getRevDeleteLink( $user, $rev, $page );
570  if ( $del !== '' ) {
571  $del .= ' ';
572  }
573 
574  $diffHistLinks = $this->msg( 'parentheses' )
575  ->rawParams( $difftext . $this->messages['pipe-separator'] . $histlink )
576  ->escaped();
577 
578  # Tags, if any.
579  list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow(
580  $row->ts_tags,
581  'contributions',
582  $this->getContext()
583  );
584  $classes = array_merge( $classes, $newClasses );
585 
586  Hooks::run( 'SpecialContributions::formatRow::flags', [ $this->getContext(), $row, &$flags ] );
587 
588  $templateParams = [
589  'del' => $del,
590  'timestamp' => $d,
591  'diffHistLinks' => $diffHistLinks,
592  'charDifference' => $chardiff,
593  'flags' => $flags,
594  'articleLink' => $link,
595  'userlink' => $userlink,
596  'logText' => $comment,
597  'topmarktext' => $topmarktext,
598  'tagSummary' => $tagSummary,
599  ];
600 
601  # Denote if username is redacted for this edit
602  if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
603  $templateParams['rev-deleted-user-contribs'] =
604  $this->msg( 'rev-deleted-user-contribs' )->escaped();
605  }
606 
607  $ret = $this->templateParser->processTemplate(
608  'SpecialContributionsLine',
609  $templateParams
610  );
611  }
612 
613  // Let extensions add data
614  Hooks::run( 'ContributionsLineEnding', [ $this, &$ret, $row, &$classes, &$attribs ] );
615  $attribs = wfArrayFilterByKey( $attribs, [ Sanitizer::class, 'isReservedDataAttribute' ] );
616 
617  // TODO: Handle exceptions in the catch block above. Do any extensions rely on
618  // receiving empty rows?
619 
620  if ( $classes === [] && $attribs === [] && $ret === '' ) {
621  wfDebug( "Dropping Special:Contribution row that could not be formatted\n" );
622  return "<!-- Could not format Special:Contribution row. -->\n";
623  }
624  $attribs['class'] = $classes;
625 
626  // FIXME: The signature of the ContributionsLineEnding hook makes it
627  // very awkward to move this LI wrapper into the template.
628  return Html::rawElement( 'li', $attribs, $ret ) . "\n";
629  }
630 
635  function getSqlComment() {
636  if ( $this->namespace || $this->deletedOnly ) {
637  // potentially slow, see CR r58153
638  return 'contributions page filtered for namespace or RevisionDeleted edits';
639  } else {
640  return 'contributions page unfiltered';
641  }
642  }
643 
644  protected function preventClickjacking() {
645  $this->preventClickjacking = true;
646  }
647 
651  public function getPreventClickjacking() {
652  return $this->preventClickjacking;
653  }
654 
661  public static function processDateFilter( $opts ) {
662  $start = isset( $opts['start'] ) ? $opts['start'] : '';
663  $end = isset( $opts['end'] ) ? $opts['end'] : '';
664  $year = isset( $opts['year'] ) ? $opts['year'] : '';
665  $month = isset( $opts['month'] ) ? $opts['month'] : '';
666 
667  if ( $start !== '' && $end !== '' && $start > $end ) {
668  $temp = $start;
669  $start = $end;
670  $end = $temp;
671  }
672 
673  // If year/month legacy filtering options are set, convert them to display the new stamp
674  if ( $year !== '' || $month !== '' ) {
675  // Reuse getDateCond logic, but subtract a day because
676  // the endpoints of our date range appear inclusive
677  // but the internal end offsets are always exclusive
678  $legacyTimestamp = ReverseChronologicalPager::getOffsetDate( $year, $month );
679  $legacyDateTime = new DateTime( $legacyTimestamp->getTimestamp( TS_ISO_8601 ) );
680  $legacyDateTime = $legacyDateTime->modify( '-1 day' );
681 
682  // Clear the new timestamp range options if used and
683  // replace with the converted legacy timestamp
684  $start = '';
685  $end = $legacyDateTime->format( 'Y-m-d' );
686  }
687 
688  $opts['start'] = $start;
689  $opts['end'] = $end;
690 
691  return $opts;
692  }
693 }
ReverseChronologicalPager\getOffsetDate
static getOffsetDate( $year, $month, $day=-1)
Core logic of determining the mOffset timestamp such that we can get all items with a timestamp up to...
Definition: ReverseChronologicalPager.php:116
Revision\DELETED_USER
const DELETED_USER
Definition: Revision.php:92
ContextSource\$context
IContextSource $context
Definition: ContextSource.php:34
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:244
if
if($IP===false)
Definition: cleanupArchiveUserText.php:4
HtmlArmor
Marks HTML that shouldn't be escaped.
Definition: HtmlArmor.php:28
Linker\userTalkLink
static userTalkLink( $userId, $userText)
Definition: Linker.php:993
ContribsPager\$namespace
$namespace
Definition: ContribsPager.php:36
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
$tables
this hook is for auditing only RecentChangesLinked and Watchlist 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:988
Revision\pageJoinCond
static pageJoinCond()
Return the value of a select() page conds array for the page table.
Definition: Revision.php:441
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:34
ContribsPager\$messages
$messages
Definition: ContribsPager.php:34
Linker\userLink
static userLink( $userId, $userName, $altUserName=false)
Make user link (or user contributions for unregistered users)
Definition: Linker.php:893
ContribsPager\getUserCond
getUserCond()
Definition: ContribsPager.php:236
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
ContribsPager\reallyDoQuery
reallyDoQuery( $offset, $limit, $descending)
This method basically executes the exact same code as the parent class, though with a hook added,...
Definition: ContribsPager.php:118
captcha-old.count
count
Definition: captcha-old.py:249
ContextSource\msg
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Definition: ContextSource.php:189
ContribsPager\__construct
__construct(IContextSource $context, array $options)
Definition: ContribsPager.php:53
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1963
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:2040
ContribsPager\getDefaultQuery
getDefaultQuery()
Get an array of query parameters that should be put into self-links.
Definition: ContribsPager.php:102
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$fname
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
Definition: Setup.php:36
ContribsPager\getSqlComment
getSqlComment()
Overwrite Pager function and return a helpful comment.
Definition: ContribsPager.php:635
ContribsPager\formatRow
formatRow( $row)
Generates each row in the contributions list.
Definition: ContribsPager.php:440
IP\isIPv6
static isIPv6( $ip)
Given a string, determine if it as valid IP in IPv6 only.
Definition: IP.php:88
$linkRenderer
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 after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
Definition: hooks.txt:1965
ContribsPager\$mDbSecondary
IDatabase $mDbSecondary
Definition: ContribsPager.php:41
Wikimedia\Rdbms\ResultWrapper
Result wrapper for grabbing data queried from an IDatabase object.
Definition: ResultWrapper.php:24
wfArrayFilterByKey
wfArrayFilterByKey(array $arr, callable $callback)
Like array_filter with ARRAY_FILTER_USE_KEY, but works pre-5.6.
Definition: GlobalFunctions.php:233
Wikimedia\Rdbms\FakeResultWrapper
Overloads the relevant methods of the real ResultsWrapper so it doesn't go anywhere near an actual da...
Definition: FakeResultWrapper.php:11
getContext
getContext()
ContribsPager\doBatchLookups
doBatchLookups()
Called from getBody(), before getStartBody() is called and after doQuery() was called.
Definition: ContribsPager.php:381
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
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:40
Revision
Definition: Revision.php:33
ContribsPager\getPreventClickjacking
getPreventClickjacking()
Definition: ContribsPager.php:651
ChangeTags\modifyDisplayQuery
static modifyDisplayQuery(&$tables, &$fields, &$conds, &$join_conds, &$options, $filter_tag='')
Applies all tags-related changes to a query.
Definition: ChangeTags.php:661
$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:1581
Revision\SUPPRESSED_USER
const SUPPRESSED_USER
Definition: Revision.php:94
ContribsPager\getNamespaceCond
getNamespaceCond()
Definition: ContribsPager.php:304
Linker\generateRollback
static generateRollback( $rev, IContextSource $context=null, $options=[ 'verify'])
Generate a rollback link for a given revision.
Definition: Linker.php:1691
ContribsPager\getStartBody
getStartBody()
Definition: ContribsPager.php:417
Title\newFromRow
static newFromRow( $row)
Make a Title object from a DB row.
Definition: Title.php:459
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2856
RangeChronologicalPager\getDateRangeCond
getDateRangeCond( $startStamp, $endStamp)
Set and return a date range condition using timestamps provided by the user.
Definition: RangeChronologicalPager.php:42
ContribsPager\$mDefaultDirection
$mDefaultDirection
Definition: ContribsPager.php:33
$attribs
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 after processing & $attribs
Definition: hooks.txt:1965
ContribsPager\$target
$target
Definition: ContribsPager.php:35
ChangesList\flag
static flag( $flag, IContextSource $context=null)
Make an "<abbr>" element for a given change flag.
Definition: ChangesList.php:228
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:1047
list
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
Definition: deferred.txt:11
RangeChronologicalPager
Pager for filtering by a range of dates.
Definition: RangeChronologicalPager.php:27
ContribsPager
Definition: ContribsPager.php:31
Linker\revComment
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it.
Definition: Linker.php:1470
ContribsPager\isQueryableRange
isQueryableRange( $ipRange)
Is the given IP a range and within the CIDR limit?
Definition: ContribsPager.php:352
NS_USER_TALK
const NS_USER_TALK
Definition: Defines.php:68
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2141
ContribsPager\$preventClickjacking
$preventClickjacking
Definition: ContribsPager.php:38
Revision\getParentLengths
static getParentLengths( $db, array $revIds)
Do a batched query to get the parent revision lengths.
Definition: Revision.php:554
IP\parseRange
static parseRange( $range)
Given a string range in a number of formats, return the start and end of the range in hexadecimal.
Definition: IP.php:513
Linker\getRevDeleteLink
static getRevDeleteLink(User $user, Revision $rev, Title $title)
Get a revision-deletion link, or disabled link, or nothing, depending on user permissions & the setti...
Definition: Linker.php:2030
ContribsPager\$templateParser
TemplateParser $templateParser
Definition: ContribsPager.php:51
Linker\formatRevisionSize
static formatRevisionSize( $size)
Definition: Linker.php:1493
ChangesList\showCharacterDifference
static showCharacterDifference( $old, $new, IContextSource $context=null)
Show formatted char difference.
Definition: ChangesList.php:289
$ret
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 & $ret
Definition: hooks.txt:1965
ContribsPager\processDateFilter
static processDateFilter( $opts)
Set up date filter options, given request data.
Definition: ContribsPager.php:661
IP\isIPv4
static isIPv4( $ip)
Given a string, determine if it as valid IP in IPv4 only.
Definition: IP.php:99
IContextSource
Interface for objects which can provide a MediaWiki context on request.
Definition: IContextSource.php:55
IP\parseCIDR
static parseCIDR( $range)
Convert a network specification in CIDR notation to an integer network and a number of bits.
Definition: IP.php:470
IndexPager\DIR_DESCENDING
const DIR_DESCENDING
Definition: IndexPager.php:76
$options
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
Definition: hooks.txt:1965
User\idFromName
static idFromName( $name, $flags=self::READ_NORMAL)
Get database id given a user name.
Definition: User.php:765
$rev
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition: hooks.txt:1750
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
Revision\userJoinCond
static userJoinCond()
Return the value of a select() JOIN conds array for the user table.
Definition: Revision.php:431
Html\rawElement
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition: Html.php:209
messages
passed in as a query string parameter to the various URLs constructed here(i.e. $prevlink) $ldel you ll need to handle error messages
Definition: hooks.txt:1265
NS_USER
const NS_USER
Definition: Defines.php:67
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:2981
$batch
$batch
Definition: linkcache.txt:23
ContribsPager\getIpRangeConds
getIpRangeConds( $db, $ip)
Get SQL conditions for an IP range, if applicable.
Definition: ContribsPager.php:334
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
Revision\selectUserFields
static selectUserFields()
Return the list of user fields that should be selected from user table.
Definition: Revision.php:544
ContribsPager\$mDb
$mDb
Definition: ContribsPager.php:37
ContribsPager\getEndBody
getEndBody()
Definition: ContribsPager.php:424
ContribsPager\getQueryInfo
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
Definition: ContribsPager.php:177
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
Revision\selectFields
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
Definition: Revision.php:452
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:203
ContribsPager\preventClickjacking
preventClickjacking()
Definition: ContribsPager.php:644
MWNamespace\getAssociated
static getAssociated( $index)
Get the associated namespace.
Definition: MWNamespace.php:140
ContribsPager\getIndexField
getIndexField()
Override of getIndexField() in IndexPager.
Definition: ContribsPager.php:373
ChangeTags\formatSummaryRow
static formatSummaryRow( $tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
Definition: ChangeTags.php:53
Revision\DELETED_TEXT
const DELETED_TEXT
Definition: Revision.php:90
$flags
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2801
ContribsPager\$mParentLens
array $mParentLens
Definition: ContribsPager.php:46
array
the array() calling protocol came about after MediaWiki 1.4rc1.
User\getGroupsWithPermission
static getGroupsWithPermission( $role)
Get all the groups who have a given permission.
Definition: User.php:4768
RangeChronologicalPager\buildQueryInfo
buildQueryInfo( $offset, $limit, $descending)
Build variables to use by the database wrapper.
Definition: RangeChronologicalPager.php:101