ActorMigration: Remove possibility of read-both
[lhc/web/wiklou.git] / includes / specials / pagers / ContribsPager.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @ingroup Pager
20 */
21
22 /**
23 * Pager for Special:Contributions
24 * @ingroup Pager
25 */
26 use MediaWiki\MediaWikiServices;
27 use Wikimedia\Rdbms\IResultWrapper;
28 use Wikimedia\Rdbms\FakeResultWrapper;
29 use Wikimedia\Rdbms\IDatabase;
30
31 class ContribsPager extends RangeChronologicalPager {
32
33 public $mDefaultDirection = IndexPager::DIR_DESCENDING;
34 public $messages;
35 public $target;
36 public $namespace = '';
37 public $mDb;
38 public $preventClickjacking = false;
39
40 /** @var IDatabase */
41 public $mDbSecondary;
42
43 /**
44 * @var array
45 */
46 protected $mParentLens;
47
48 /**
49 * @var TemplateParser
50 */
51 protected $templateParser;
52
53 function __construct( IContextSource $context, array $options ) {
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 = $options['target'] ?? '';
68 $this->contribs = $options['contribs'] ?? 'users';
69 $this->namespace = $options['namespace'] ?? '';
70 $this->tagFilter = $options['tagfilter'] ?? false;
71 $this->nsInvert = $options['nsInvert'] ?? false;
72 $this->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
109 /**
110 * This method basically executes the exact same code as the parent class, though with
111 * a hook added, to allow extensions to add additional queries.
112 *
113 * @param string $offset Index offset, inclusive
114 * @param int $limit Exact query limit
115 * @param bool $descending Query direction, false for ascending, true for descending
116 * @return IResultWrapper
117 */
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 $revQuery = Revision::getQueryInfo( [ 'page', 'user' ] );
179 $queryInfo = [
180 'tables' => $revQuery['tables'],
181 'fields' => array_merge( $revQuery['fields'], [ 'page_is_new' ] ),
182 'conds' => [],
183 'options' => [],
184 'join_conds' => $revQuery['joins'],
185 ];
186
187 if ( $this->contribs == 'newbie' ) {
188 $max = $this->mDb->selectField( 'user', 'max(user_id)', '', __METHOD__ );
189 $queryInfo['conds'][] = $revQuery['fields']['rev_user'] . ' >' . (int)( $max - $max / 100 );
190 # ignore local groups with the bot right
191 # @todo FIXME: Global groups may have 'bot' rights
192 $groupsWithBotPermission = User::getGroupsWithPermission( 'bot' );
193 if ( count( $groupsWithBotPermission ) ) {
194 $queryInfo['tables'][] = 'user_groups';
195 $queryInfo['conds'][] = 'ug_group IS NULL';
196 $queryInfo['join_conds']['user_groups'] = [
197 'LEFT JOIN', [
198 'ug_user = ' . $revQuery['fields']['rev_user'],
199 'ug_group' => $groupsWithBotPermission,
200 'ug_expiry IS NULL OR ug_expiry >= ' .
201 $this->mDb->addQuotes( $this->mDb->timestamp() )
202 ]
203 ];
204 }
205 // (T140537) Disallow looking too far in the past for 'newbies' queries. If the user requested
206 // a timestamp offset far in the past such that there are no edits by users with user_ids in
207 // the range, we would end up scanning all revisions from that offset until start of time.
208 $queryInfo['conds'][] = 'rev_timestamp > ' .
209 $this->mDb->addQuotes( $this->mDb->timestamp( wfTimestamp() - 30 * 24 * 60 * 60 ) );
210 } else {
211 $user = User::newFromName( $this->target, false );
212 $ipRangeConds = $user->isAnon() ? $this->getIpRangeConds( $this->mDb, $this->target ) : null;
213 if ( $ipRangeConds ) {
214 $queryInfo['tables'][] = 'ip_changes';
215 $queryInfo['join_conds']['ip_changes'] = [
216 'LEFT JOIN', [ 'ipc_rev_id = rev_id' ]
217 ];
218 $queryInfo['conds'][] = $ipRangeConds;
219 } else {
220 // tables and joins are already handled by Revision::getQueryInfo()
221 $conds = ActorMigration::newMigration()->getWhere( $this->mDb, 'rev_user', $user );
222 $queryInfo['conds'][] = $conds['conds'];
223 // Force the appropriate index to avoid bad query plans (T189026)
224 if ( isset( $conds['orconds']['actor'] ) ) {
225 // @todo: This will need changing when revision_comment_temp goes away
226 $queryInfo['options']['USE INDEX']['temp_rev_user'] = 'actor_timestamp';
227 } else {
228 $queryInfo['options']['USE INDEX']['revision'] =
229 isset( $conds['orconds']['userid'] ) ? 'user_timestamp' : 'usertext_timestamp';
230 }
231 }
232 }
233
234 if ( $this->deletedOnly ) {
235 $queryInfo['conds'][] = 'rev_deleted != 0';
236 }
237
238 if ( $this->topOnly ) {
239 $queryInfo['conds'][] = 'rev_id = page_latest';
240 }
241
242 if ( $this->newOnly ) {
243 $queryInfo['conds'][] = 'rev_parent_id = 0';
244 }
245
246 if ( $this->hideMinor ) {
247 $queryInfo['conds'][] = 'rev_minor_edit = 0';
248 }
249
250 $user = $this->getUser();
251 $queryInfo['conds'] = array_merge( $queryInfo['conds'], $this->getNamespaceCond() );
252
253 // Paranoia: avoid brute force searches (T19342)
254 if ( !$user->isAllowed( 'deletedhistory' ) ) {
255 $queryInfo['conds'][] = $this->mDb->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0';
256 } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
257 $queryInfo['conds'][] = $this->mDb->bitAnd( 'rev_deleted', Revision::SUPPRESSED_USER ) .
258 ' != ' . Revision::SUPPRESSED_USER;
259 }
260
261 // For IPv6, we use ipc_rev_timestamp on ip_changes as the index field,
262 // which will be referenced when parsing the results of a query.
263 if ( self::isQueryableRange( $this->target ) ) {
264 $queryInfo['fields'][] = 'ipc_rev_timestamp';
265 }
266
267 ChangeTags::modifyDisplayQuery(
268 $queryInfo['tables'],
269 $queryInfo['fields'],
270 $queryInfo['conds'],
271 $queryInfo['join_conds'],
272 $queryInfo['options'],
273 $this->tagFilter
274 );
275
276 // Avoid PHP 7.1 warning from passing $this by reference
277 $pager = $this;
278 Hooks::run( 'ContribsPager::getQueryInfo', [ &$pager, &$queryInfo ] );
279
280 return $queryInfo;
281 }
282
283 function getNamespaceCond() {
284 if ( $this->namespace !== '' ) {
285 $selectedNS = $this->mDb->addQuotes( $this->namespace );
286 $eq_op = $this->nsInvert ? '!=' : '=';
287 $bool_op = $this->nsInvert ? 'AND' : 'OR';
288
289 if ( !$this->associated ) {
290 return [ "page_namespace $eq_op $selectedNS" ];
291 }
292
293 $associatedNS = $this->mDb->addQuotes(
294 MWNamespace::getAssociated( $this->namespace )
295 );
296
297 return [
298 "page_namespace $eq_op $selectedNS " .
299 $bool_op .
300 " page_namespace $eq_op $associatedNS"
301 ];
302 }
303
304 return [];
305 }
306
307 /**
308 * Get SQL conditions for an IP range, if applicable
309 * @param IDatabase $db
310 * @param string $ip The IP address or CIDR
311 * @return string|false SQL for valid IP ranges, false if invalid
312 */
313 private function getIpRangeConds( $db, $ip ) {
314 // First make sure it is a valid range and they are not outside the CIDR limit
315 if ( !$this->isQueryableRange( $ip ) ) {
316 return false;
317 }
318
319 list( $start, $end ) = IP::parseRange( $ip );
320
321 return 'ipc_hex BETWEEN ' . $db->addQuotes( $start ) . ' AND ' . $db->addQuotes( $end );
322 }
323
324 /**
325 * Is the given IP a range and within the CIDR limit?
326 *
327 * @param string $ipRange
328 * @return bool True if it is valid
329 * @since 1.30
330 */
331 public function isQueryableRange( $ipRange ) {
332 $limits = $this->getConfig()->get( 'RangeContributionsCIDRLimit' );
333
334 $bits = IP::parseCIDR( $ipRange )[1];
335 if (
336 ( $bits === false ) ||
337 ( IP::isIPv4( $ipRange ) && $bits < $limits['IPv4'] ) ||
338 ( IP::isIPv6( $ipRange ) && $bits < $limits['IPv6'] )
339 ) {
340 return false;
341 }
342
343 return true;
344 }
345
346 /**
347 * Override of getIndexField() in IndexPager.
348 * For IP ranges, it's faster to use the replicated ipc_rev_timestamp
349 * on the `ip_changes` table than the rev_timestamp on the `revision` table.
350 * @return string Name of field
351 */
352 public function getIndexField() {
353 if ( $this->isQueryableRange( $this->target ) ) {
354 return 'ipc_rev_timestamp';
355 } else {
356 return 'rev_timestamp';
357 }
358 }
359
360 function doBatchLookups() {
361 # Do a link batch query
362 $this->mResult->seek( 0 );
363 $parentRevIds = [];
364 $this->mParentLens = [];
365 $batch = new LinkBatch();
366 $isIpRange = $this->isQueryableRange( $this->target );
367 # Give some pointers to make (last) links
368 foreach ( $this->mResult as $row ) {
369 if ( isset( $row->rev_parent_id ) && $row->rev_parent_id ) {
370 $parentRevIds[] = $row->rev_parent_id;
371 }
372 if ( isset( $row->rev_id ) ) {
373 $this->mParentLens[$row->rev_id] = $row->rev_len;
374 if ( $this->contribs === 'newbie' ) { // multiple users
375 $batch->add( NS_USER, $row->user_name );
376 $batch->add( NS_USER_TALK, $row->user_name );
377 } elseif ( $isIpRange ) {
378 // If this is an IP range, batch the IP's talk page
379 $batch->add( NS_USER_TALK, $row->rev_user_text );
380 }
381 $batch->add( $row->page_namespace, $row->page_title );
382 }
383 }
384 # Fetch rev_len for revisions not already scanned above
385 $this->mParentLens += Revision::getParentLengths(
386 $this->mDbSecondary,
387 array_diff( $parentRevIds, array_keys( $this->mParentLens ) )
388 );
389 $batch->execute();
390 $this->mResult->seek( 0 );
391 }
392
393 /**
394 * @return string
395 */
396 function getStartBody() {
397 return "<ul class=\"mw-contributions-list\">\n";
398 }
399
400 /**
401 * @return string
402 */
403 function getEndBody() {
404 return "</ul>\n";
405 }
406
407 /**
408 * Check whether the revision associated is valid for formatting. If has no associated revision
409 * id then null is returned.
410 *
411 * @param object $row
412 * @return Revision|null
413 */
414 public function tryToCreateValidRevision( $row ) {
415 /*
416 * There may be more than just revision rows. To make sure that we'll only be processing
417 * revisions here, let's _try_ to build a revision out of our row (without displaying
418 * notices though) and then trying to grab data from the built object. If we succeed,
419 * we're definitely dealing with revision data and we may proceed, if not, we'll leave it
420 * to extensions to subscribe to the hook to parse the row.
421 */
422 Wikimedia\suppressWarnings();
423 try {
424 $rev = new Revision( $row );
425 $validRevision = (bool)$rev->getId();
426 } catch ( Exception $e ) {
427 $validRevision = false;
428 }
429 Wikimedia\restoreWarnings();
430 return $validRevision ? $rev : null;
431 }
432
433 /**
434 * Generates each row in the contributions list.
435 *
436 * Contributions which are marked "top" are currently on top of the history.
437 * For these contributions, a [rollback] link is shown for users with roll-
438 * back privileges. The rollback link restores the most recent version that
439 * was not written by the target user.
440 *
441 * @todo This would probably look a lot nicer in a table.
442 * @param object $row
443 * @return string
444 */
445 function formatRow( $row ) {
446 $ret = '';
447 $classes = [];
448 $attribs = [];
449
450 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
451
452 $rev = $this->tryToCreateValidRevision( $row );
453 if ( $rev ) {
454 $attribs['data-mw-revid'] = $rev->getId();
455
456 $page = Title::newFromRow( $row );
457 $link = $linkRenderer->makeLink(
458 $page,
459 $page->getPrefixedText(),
460 [ 'class' => 'mw-contributions-title' ],
461 $page->isRedirect() ? [ 'redirect' => 'no' ] : []
462 );
463 # Mark current revisions
464 $topmarktext = '';
465 $user = $this->getUser();
466
467 if ( $row->rev_id === $row->page_latest ) {
468 $topmarktext .= '<span class="mw-uctop">' . $this->messages['uctop'] . '</span>';
469 $classes[] = 'mw-contributions-current';
470 # Add rollback link
471 if ( !$row->page_is_new && $page->quickUserCan( 'rollback', $user )
472 && $page->quickUserCan( 'edit', $user )
473 ) {
474 $this->preventClickjacking();
475 $topmarktext .= ' ' . Linker::generateRollback( $rev, $this->getContext() );
476 }
477 }
478 # Is there a visible previous revision?
479 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) && $rev->getParentId() !== 0 ) {
480 $difftext = $linkRenderer->makeKnownLink(
481 $page,
482 new HtmlArmor( $this->messages['diff'] ),
483 [ 'class' => 'mw-changeslist-diff' ],
484 [
485 'diff' => 'prev',
486 'oldid' => $row->rev_id
487 ]
488 );
489 } else {
490 $difftext = $this->messages['diff'];
491 }
492 $histlink = $linkRenderer->makeKnownLink(
493 $page,
494 new HtmlArmor( $this->messages['hist'] ),
495 [ 'class' => 'mw-changeslist-history' ],
496 [ 'action' => 'history' ]
497 );
498
499 if ( $row->rev_parent_id === null ) {
500 // For some reason rev_parent_id isn't populated for this row.
501 // Its rumoured this is true on wikipedia for some revisions (T36922).
502 // Next best thing is to have the total number of bytes.
503 $chardiff = ' <span class="mw-changeslist-separator"></span> ';
504 $chardiff .= Linker::formatRevisionSize( $row->rev_len );
505 $chardiff .= ' <span class="mw-changeslist-separator"></span> ';
506 } else {
507 $parentLen = 0;
508 if ( isset( $this->mParentLens[$row->rev_parent_id] ) ) {
509 $parentLen = $this->mParentLens[$row->rev_parent_id];
510 }
511
512 $chardiff = ' <span class="mw-changeslist-separator"></span> ';
513 $chardiff .= ChangesList::showCharacterDifference(
514 $parentLen,
515 $row->rev_len,
516 $this->getContext()
517 );
518 $chardiff .= ' <span class="mw-changeslist-separator"></span> ';
519 }
520
521 $lang = $this->getLanguage();
522 $comment = $lang->getDirMark() . Linker::revComment( $rev, false, true );
523 $date = $lang->userTimeAndDate( $row->rev_timestamp, $user );
524 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
525 $d = $linkRenderer->makeKnownLink(
526 $page,
527 $date,
528 [ 'class' => 'mw-changeslist-date' ],
529 [ 'oldid' => intval( $row->rev_id ) ]
530 );
531 } else {
532 $d = htmlspecialchars( $date );
533 }
534 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
535 $d = '<span class="history-deleted">' . $d . '</span>';
536 }
537
538 # Show user names for /newbies as there may be different users.
539 # Note that only unprivileged users have rows with hidden user names excluded.
540 # When querying for an IP range, we want to always show user and user talk links.
541 $userlink = '';
542 if ( ( $this->contribs == 'newbie' && !$rev->isDeleted( Revision::DELETED_USER ) )
543 || $this->isQueryableRange( $this->target ) ) {
544 $userlink = ' <span class="mw-changeslist-separator"></span> '
545 . $lang->getDirMark()
546 . Linker::userLink( $rev->getUser(), $rev->getUserText() );
547 $userlink .= ' ' . $this->msg( 'parentheses' )->rawParams(
548 Linker::userTalkLink( $rev->getUser(), $rev->getUserText() ) )->escaped() . ' ';
549 }
550
551 $flags = [];
552 if ( $rev->getParentId() === 0 ) {
553 $flags[] = ChangesList::flag( 'newpage' );
554 }
555
556 if ( $rev->isMinor() ) {
557 $flags[] = ChangesList::flag( 'minor' );
558 }
559
560 $del = Linker::getRevDeleteLink( $user, $rev, $page );
561 if ( $del !== '' ) {
562 $del .= ' ';
563 }
564
565 $diffHistLinks = $this->msg( 'parentheses' )
566 ->rawParams( $difftext . $this->messages['pipe-separator'] . $histlink )
567 ->escaped();
568
569 # Tags, if any.
570 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow(
571 $row->ts_tags,
572 'contributions',
573 $this->getContext()
574 );
575 $classes = array_merge( $classes, $newClasses );
576
577 Hooks::run( 'SpecialContributions::formatRow::flags', [ $this->getContext(), $row, &$flags ] );
578
579 $templateParams = [
580 'del' => $del,
581 'timestamp' => $d,
582 'diffHistLinks' => $diffHistLinks,
583 'charDifference' => $chardiff,
584 'flags' => $flags,
585 'articleLink' => $link,
586 'userlink' => $userlink,
587 'logText' => $comment,
588 'topmarktext' => $topmarktext,
589 'tagSummary' => $tagSummary,
590 ];
591
592 # Denote if username is redacted for this edit
593 if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
594 $templateParams['rev-deleted-user-contribs'] =
595 $this->msg( 'rev-deleted-user-contribs' )->escaped();
596 }
597
598 $ret = $this->templateParser->processTemplate(
599 'SpecialContributionsLine',
600 $templateParams
601 );
602 }
603
604 // Let extensions add data
605 Hooks::run( 'ContributionsLineEnding', [ $this, &$ret, $row, &$classes, &$attribs ] );
606 $attribs = array_filter( $attribs,
607 [ Sanitizer::class, 'isReservedDataAttribute' ],
608 ARRAY_FILTER_USE_KEY
609 );
610
611 // TODO: Handle exceptions in the catch block above. Do any extensions rely on
612 // receiving empty rows?
613
614 if ( $classes === [] && $attribs === [] && $ret === '' ) {
615 wfDebug( "Dropping Special:Contribution row that could not be formatted\n" );
616 return "<!-- Could not format Special:Contribution row. -->\n";
617 }
618 $attribs['class'] = $classes;
619
620 // FIXME: The signature of the ContributionsLineEnding hook makes it
621 // very awkward to move this LI wrapper into the template.
622 return Html::rawElement( 'li', $attribs, $ret ) . "\n";
623 }
624
625 /**
626 * Overwrite Pager function and return a helpful comment
627 * @return string
628 */
629 function getSqlComment() {
630 if ( $this->namespace || $this->deletedOnly ) {
631 // potentially slow, see CR r58153
632 return 'contributions page filtered for namespace or RevisionDeleted edits';
633 } else {
634 return 'contributions page unfiltered';
635 }
636 }
637
638 protected function preventClickjacking() {
639 $this->preventClickjacking = true;
640 }
641
642 /**
643 * @return bool
644 */
645 public function getPreventClickjacking() {
646 return $this->preventClickjacking;
647 }
648
649 /**
650 * Set up date filter options, given request data.
651 *
652 * @param array $opts Options array
653 * @return array Options array with processed start and end date filter options
654 */
655 public static function processDateFilter( array $opts ) {
656 $start = $opts['start'] ?? '';
657 $end = $opts['end'] ?? '';
658 $year = $opts['year'] ?? '';
659 $month = $opts['month'] ?? '';
660
661 if ( $start !== '' && $end !== '' && $start > $end ) {
662 $temp = $start;
663 $start = $end;
664 $end = $temp;
665 }
666
667 // If year/month legacy filtering options are set, convert them to display the new stamp
668 if ( $year !== '' || $month !== '' ) {
669 // Reuse getDateCond logic, but subtract a day because
670 // the endpoints of our date range appear inclusive
671 // but the internal end offsets are always exclusive
672 $legacyTimestamp = ReverseChronologicalPager::getOffsetDate( $year, $month );
673 $legacyDateTime = new DateTime( $legacyTimestamp->getTimestamp( TS_ISO_8601 ) );
674 $legacyDateTime = $legacyDateTime->modify( '-1 day' );
675
676 // Clear the new timestamp range options if used and
677 // replace with the converted legacy timestamp
678 $start = '';
679 $end = $legacyDateTime->format( 'Y-m-d' );
680 }
681
682 $opts['start'] = $start;
683 $opts['end'] = $end;
684
685 return $opts;
686 }
687 }