Merge "RCFilters: make isStructuredFilterUiEnabled public"
[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\ResultWrapper;
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 = 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
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 ResultWrapper
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 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(
204 Revision::selectFields(),
205 Revision::selectUserFields(),
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
220 ChangeTags::modifyDisplayQuery(
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
328 /**
329 * Get SQL conditions for an IP range, if applicable
330 * @param IDatabase $db
331 * @param string $ip The IP address or CIDR
332 * @return string|false SQL for valid IP ranges, false if invalid
333 */
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
345 /**
346 * Is the given IP a range and within the CIDR limit?
347 *
348 * @param string $ipRange
349 * @return bool True if it is valid
350 * @since 1.30
351 */
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
367 /**
368 * Override of getIndexField() in IndexPager.
369 * For IP ranges, it's faster to use the replicated ipc_rev_timestamp
370 * on the `ip_changes` table than the rev_timestamp on the `revision` table.
371 * @return string Name of field
372 */
373 public function getIndexField() {
374 if ( self::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 # Give some pointers to make (last) links
388 foreach ( $this->mResult as $row ) {
389 if ( isset( $row->rev_parent_id ) && $row->rev_parent_id ) {
390 $parentRevIds[] = $row->rev_parent_id;
391 }
392 if ( isset( $row->rev_id ) ) {
393 $this->mParentLens[$row->rev_id] = $row->rev_len;
394 if ( $this->contribs === 'newbie' ) { // multiple users
395 $batch->add( NS_USER, $row->user_name );
396 $batch->add( NS_USER_TALK, $row->user_name );
397 }
398 $batch->add( $row->page_namespace, $row->page_title );
399 }
400 }
401 # Fetch rev_len for revisions not already scanned above
402 $this->mParentLens += Revision::getParentLengths(
403 $this->mDbSecondary,
404 array_diff( $parentRevIds, array_keys( $this->mParentLens ) )
405 );
406 $batch->execute();
407 $this->mResult->seek( 0 );
408 }
409
410 /**
411 * @return string
412 */
413 function getStartBody() {
414 return "<ul class=\"mw-contributions-list\">\n";
415 }
416
417 /**
418 * @return string
419 */
420 function getEndBody() {
421 return "</ul>\n";
422 }
423
424 /**
425 * Generates each row in the contributions list.
426 *
427 * Contributions which are marked "top" are currently on top of the history.
428 * For these contributions, a [rollback] link is shown for users with roll-
429 * back privileges. The rollback link restores the most recent version that
430 * was not written by the target user.
431 *
432 * @todo This would probably look a lot nicer in a table.
433 * @param object $row
434 * @return string
435 */
436 function formatRow( $row ) {
437 $ret = '';
438 $classes = [];
439 $attribs = [];
440
441 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
442
443 /*
444 * There may be more than just revision rows. To make sure that we'll only be processing
445 * revisions here, let's _try_ to build a revision out of our row (without displaying
446 * notices though) and then trying to grab data from the built object. If we succeed,
447 * we're definitely dealing with revision data and we may proceed, if not, we'll leave it
448 * to extensions to subscribe to the hook to parse the row.
449 */
450 MediaWiki\suppressWarnings();
451 try {
452 $rev = new Revision( $row );
453 $validRevision = (bool)$rev->getId();
454 } catch ( Exception $e ) {
455 $validRevision = false;
456 }
457 MediaWiki\restoreWarnings();
458
459 if ( $validRevision ) {
460 $attribs['data-mw-revid'] = $rev->getId();
461
462 $page = Title::newFromRow( $row );
463 $link = $linkRenderer->makeLink(
464 $page,
465 $page->getPrefixedText(),
466 [ 'class' => 'mw-contributions-title' ],
467 $page->isRedirect() ? [ 'redirect' => 'no' ] : []
468 );
469 # Mark current revisions
470 $topmarktext = '';
471 $user = $this->getUser();
472
473 if ( $row->rev_id === $row->page_latest ) {
474 $topmarktext .= '<span class="mw-uctop">' . $this->messages['uctop'] . '</span>';
475 $classes[] = 'mw-contributions-current';
476 # Add rollback link
477 if ( !$row->page_is_new && $page->quickUserCan( 'rollback', $user )
478 && $page->quickUserCan( 'edit', $user )
479 ) {
480 $this->preventClickjacking();
481 $topmarktext .= ' ' . Linker::generateRollback( $rev, $this->getContext() );
482 }
483 }
484 # Is there a visible previous revision?
485 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) && $rev->getParentId() !== 0 ) {
486 $difftext = $linkRenderer->makeKnownLink(
487 $page,
488 new HtmlArmor( $this->messages['diff'] ),
489 [ 'class' => 'mw-changeslist-diff' ],
490 [
491 'diff' => 'prev',
492 'oldid' => $row->rev_id
493 ]
494 );
495 } else {
496 $difftext = $this->messages['diff'];
497 }
498 $histlink = $linkRenderer->makeKnownLink(
499 $page,
500 new HtmlArmor( $this->messages['hist'] ),
501 [ 'class' => 'mw-changeslist-history' ],
502 [ 'action' => 'history' ]
503 );
504
505 if ( $row->rev_parent_id === null ) {
506 // For some reason rev_parent_id isn't populated for this row.
507 // Its rumoured this is true on wikipedia for some revisions (T36922).
508 // Next best thing is to have the total number of bytes.
509 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
510 $chardiff .= Linker::formatRevisionSize( $row->rev_len );
511 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
512 } else {
513 $parentLen = 0;
514 if ( isset( $this->mParentLens[$row->rev_parent_id] ) ) {
515 $parentLen = $this->mParentLens[$row->rev_parent_id];
516 }
517
518 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
519 $chardiff .= ChangesList::showCharacterDifference(
520 $parentLen,
521 $row->rev_len,
522 $this->getContext()
523 );
524 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
525 }
526
527 $lang = $this->getLanguage();
528 $comment = $lang->getDirMark() . Linker::revComment( $rev, false, true );
529 $date = $lang->userTimeAndDate( $row->rev_timestamp, $user );
530 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
531 $d = $linkRenderer->makeKnownLink(
532 $page,
533 $date,
534 [ 'class' => 'mw-changeslist-date' ],
535 [ 'oldid' => intval( $row->rev_id ) ]
536 );
537 } else {
538 $d = htmlspecialchars( $date );
539 }
540 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
541 $d = '<span class="history-deleted">' . $d . '</span>';
542 }
543
544 # Show user names for /newbies as there may be different users.
545 # Note that only unprivileged users have rows with hidden user names excluded.
546 # When querying for an IP range, we want to always show user and user talk links.
547 $userlink = '';
548 if ( ( $this->contribs == 'newbie' && !$rev->isDeleted( Revision::DELETED_USER ) )
549 || self::isQueryableRange( $this->target ) ) {
550 $userlink = ' . . ' . $lang->getDirMark()
551 . Linker::userLink( $rev->getUser(), $rev->getUserText() );
552 $userlink .= ' ' . $this->msg( 'parentheses' )->rawParams(
553 Linker::userTalkLink( $rev->getUser(), $rev->getUserText() ) )->escaped() . ' ';
554 }
555
556 $flags = [];
557 if ( $rev->getParentId() === 0 ) {
558 $flags[] = ChangesList::flag( 'newpage' );
559 }
560
561 if ( $rev->isMinor() ) {
562 $flags[] = ChangesList::flag( 'minor' );
563 }
564
565 $del = Linker::getRevDeleteLink( $user, $rev, $page );
566 if ( $del !== '' ) {
567 $del .= ' ';
568 }
569
570 $diffHistLinks = $this->msg( 'parentheses' )
571 ->rawParams( $difftext . $this->messages['pipe-separator'] . $histlink )
572 ->escaped();
573
574 # Tags, if any.
575 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow(
576 $row->ts_tags,
577 'contributions',
578 $this->getContext()
579 );
580 $classes = array_merge( $classes, $newClasses );
581
582 Hooks::run( 'SpecialContributions::formatRow::flags', [ $this->getContext(), $row, &$flags ] );
583
584 $templateParams = [
585 'del' => $del,
586 'timestamp' => $d,
587 'diffHistLinks' => $diffHistLinks,
588 'charDifference' => $chardiff,
589 'flags' => $flags,
590 'articleLink' => $link,
591 'userlink' => $userlink,
592 'logText' => $comment,
593 'topmarktext' => $topmarktext,
594 'tagSummary' => $tagSummary,
595 ];
596
597 # Denote if username is redacted for this edit
598 if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
599 $templateParams['rev-deleted-user-contribs'] =
600 $this->msg( 'rev-deleted-user-contribs' )->escaped();
601 }
602
603 $ret = $this->templateParser->processTemplate(
604 'SpecialContributionsLine',
605 $templateParams
606 );
607 }
608
609 // Let extensions add data
610 Hooks::run( 'ContributionsLineEnding', [ $this, &$ret, $row, &$classes, &$attribs ] );
611 $attribs = wfArrayFilterByKey( $attribs, [ Sanitizer::class, 'isReservedDataAttribute' ] );
612
613 // TODO: Handle exceptions in the catch block above. Do any extensions rely on
614 // receiving empty rows?
615
616 if ( $classes === [] && $attribs === [] && $ret === '' ) {
617 wfDebug( "Dropping Special:Contribution row that could not be formatted\n" );
618 return "<!-- Could not format Special:Contribution row. -->\n";
619 }
620 $attribs['class'] = $classes;
621
622 // FIXME: The signature of the ContributionsLineEnding hook makes it
623 // very awkward to move this LI wrapper into the template.
624 return Html::rawElement( 'li', $attribs, $ret ) . "\n";
625 }
626
627 /**
628 * Overwrite Pager function and return a helpful comment
629 * @return string
630 */
631 function getSqlComment() {
632 if ( $this->namespace || $this->deletedOnly ) {
633 // potentially slow, see CR r58153
634 return 'contributions page filtered for namespace or RevisionDeleted edits';
635 } else {
636 return 'contributions page unfiltered';
637 }
638 }
639
640 protected function preventClickjacking() {
641 $this->preventClickjacking = true;
642 }
643
644 /**
645 * @return bool
646 */
647 public function getPreventClickjacking() {
648 return $this->preventClickjacking;
649 }
650
651 /**
652 * Set up date filter options, given request data.
653 *
654 * @param array $opts Options array
655 * @return array Options array with processed start and end date filter options
656 */
657 public static function processDateFilter( $opts ) {
658 $start = isset( $opts['start'] ) ? $opts['start'] : '';
659 $end = isset( $opts['end'] ) ? $opts['end'] : '';
660 $year = isset( $opts['year'] ) ? $opts['year'] : '';
661 $month = isset( $opts['month'] ) ? $opts['month'] : '';
662
663 if ( $start !== '' && $end !== '' && $start > $end ) {
664 $temp = $start;
665 $start = $end;
666 $end = $temp;
667 }
668
669 // If year/month legacy filtering options are set, convert them to display the new stamp
670 if ( $year !== '' || $month !== '' ) {
671 // Reuse getDateCond logic, but subtract a day because
672 // the endpoints of our date range appear inclusive
673 // but the internal end offsets are always exclusive
674 $legacyTimestamp = ReverseChronologicalPager::getOffsetDate( $year, $month );
675 $legacyDateTime = new DateTime( $legacyTimestamp->getTimestamp( TS_ISO_8601 ) );
676 $legacyDateTime = $legacyDateTime->modify( '-1 day' );
677
678 // Clear the new timestamp range options if used and
679 // replace with the converted legacy timestamp
680 $start = '';
681 $end = $legacyDateTime->format( 'Y-m-d' );
682 }
683
684 $opts['start'] = $start;
685 $opts['end'] = $end;
686
687 return $opts;
688 }
689 }