Merge "Chinese Conversion Table Update 2017-6"
[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 $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)', false, __METHOD__ );
189 $queryInfo['conds'][] = '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 = 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 $uid = User::idFromName( $this->target );
212 if ( $uid ) {
213 $queryInfo['conds']['rev_user'] = $uid;
214 $queryInfo['options']['USE INDEX']['revision'] = 'user_timestamp';
215 } else {
216 $ipRangeConds = $this->getIpRangeConds( $this->mDb, $this->target );
217
218 if ( $ipRangeConds ) {
219 $queryInfo['tables'][] = 'ip_changes';
220 $queryInfo['join_conds']['ip_changes'] = [
221 'LEFT JOIN', [ 'ipc_rev_id = rev_id' ]
222 ];
223 $queryInfo['conds'][] = $ipRangeConds;
224 } else {
225 $queryInfo['conds']['rev_user_text'] = $this->target;
226 $queryInfo['options']['USE INDEX']['revision'] = 'usertext_timestamp';
227 }
228 }
229 }
230
231 if ( $this->deletedOnly ) {
232 $queryInfo['conds'][] = 'rev_deleted != 0';
233 }
234
235 if ( $this->topOnly ) {
236 $queryInfo['conds'][] = 'rev_id = page_latest';
237 }
238
239 if ( $this->newOnly ) {
240 $queryInfo['conds'][] = 'rev_parent_id = 0';
241 }
242
243 if ( $this->hideMinor ) {
244 $queryInfo['conds'][] = 'rev_minor_edit = 0';
245 }
246
247 $user = $this->getUser();
248 $queryInfo['conds'] = array_merge( $queryInfo['conds'], $this->getNamespaceCond() );
249
250 // Paranoia: avoid brute force searches (T19342)
251 if ( !$user->isAllowed( 'deletedhistory' ) ) {
252 $queryInfo['conds'][] = $this->mDb->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0';
253 } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
254 $queryInfo['conds'][] = $this->mDb->bitAnd( 'rev_deleted', Revision::SUPPRESSED_USER ) .
255 ' != ' . Revision::SUPPRESSED_USER;
256 }
257
258 // For IPv6, we use ipc_rev_timestamp on ip_changes as the index field,
259 // which will be referenced when parsing the results of a query.
260 if ( self::isQueryableRange( $this->target ) ) {
261 $queryInfo['fields'][] = 'ipc_rev_timestamp';
262 }
263
264 ChangeTags::modifyDisplayQuery(
265 $queryInfo['tables'],
266 $queryInfo['fields'],
267 $queryInfo['conds'],
268 $queryInfo['join_conds'],
269 $queryInfo['options'],
270 $this->tagFilter
271 );
272
273 // Avoid PHP 7.1 warning from passing $this by reference
274 $pager = $this;
275 Hooks::run( 'ContribsPager::getQueryInfo', [ &$pager, &$queryInfo ] );
276
277 return $queryInfo;
278 }
279
280 function getNamespaceCond() {
281 if ( $this->namespace !== '' ) {
282 $selectedNS = $this->mDb->addQuotes( $this->namespace );
283 $eq_op = $this->nsInvert ? '!=' : '=';
284 $bool_op = $this->nsInvert ? 'AND' : 'OR';
285
286 if ( !$this->associated ) {
287 return [ "page_namespace $eq_op $selectedNS" ];
288 }
289
290 $associatedNS = $this->mDb->addQuotes(
291 MWNamespace::getAssociated( $this->namespace )
292 );
293
294 return [
295 "page_namespace $eq_op $selectedNS " .
296 $bool_op .
297 " page_namespace $eq_op $associatedNS"
298 ];
299 }
300
301 return [];
302 }
303
304 /**
305 * Get SQL conditions for an IP range, if applicable
306 * @param IDatabase $db
307 * @param string $ip The IP address or CIDR
308 * @return string|false SQL for valid IP ranges, false if invalid
309 */
310 private function getIpRangeConds( $db, $ip ) {
311 // First make sure it is a valid range and they are not outside the CIDR limit
312 if ( !$this->isQueryableRange( $ip ) ) {
313 return false;
314 }
315
316 list( $start, $end ) = IP::parseRange( $ip );
317
318 return 'ipc_hex BETWEEN ' . $db->addQuotes( $start ) . ' AND ' . $db->addQuotes( $end );
319 }
320
321 /**
322 * Is the given IP a range and within the CIDR limit?
323 *
324 * @param string $ipRange
325 * @return bool True if it is valid
326 * @since 1.30
327 */
328 public function isQueryableRange( $ipRange ) {
329 $limits = $this->getConfig()->get( 'RangeContributionsCIDRLimit' );
330
331 $bits = IP::parseCIDR( $ipRange )[1];
332 if (
333 ( $bits === false ) ||
334 ( IP::isIPv4( $ipRange ) && $bits < $limits['IPv4'] ) ||
335 ( IP::isIPv6( $ipRange ) && $bits < $limits['IPv6'] )
336 ) {
337 return false;
338 }
339
340 return true;
341 }
342
343 /**
344 * Override of getIndexField() in IndexPager.
345 * For IP ranges, it's faster to use the replicated ipc_rev_timestamp
346 * on the `ip_changes` table than the rev_timestamp on the `revision` table.
347 * @return string Name of field
348 */
349 public function getIndexField() {
350 if ( $this->isQueryableRange( $this->target ) ) {
351 return 'ipc_rev_timestamp';
352 } else {
353 return 'rev_timestamp';
354 }
355 }
356
357 function doBatchLookups() {
358 # Do a link batch query
359 $this->mResult->seek( 0 );
360 $parentRevIds = [];
361 $this->mParentLens = [];
362 $batch = new LinkBatch();
363 $isIpRange = $this->isQueryableRange( $this->target );
364 # Give some pointers to make (last) links
365 foreach ( $this->mResult as $row ) {
366 if ( isset( $row->rev_parent_id ) && $row->rev_parent_id ) {
367 $parentRevIds[] = $row->rev_parent_id;
368 }
369 if ( isset( $row->rev_id ) ) {
370 $this->mParentLens[$row->rev_id] = $row->rev_len;
371 if ( $this->contribs === 'newbie' ) { // multiple users
372 $batch->add( NS_USER, $row->user_name );
373 $batch->add( NS_USER_TALK, $row->user_name );
374 } elseif ( $isIpRange ) {
375 // If this is an IP range, batch the IP's talk page
376 $batch->add( NS_USER_TALK, $row->rev_user_text );
377 }
378 $batch->add( $row->page_namespace, $row->page_title );
379 }
380 }
381 # Fetch rev_len for revisions not already scanned above
382 $this->mParentLens += Revision::getParentLengths(
383 $this->mDbSecondary,
384 array_diff( $parentRevIds, array_keys( $this->mParentLens ) )
385 );
386 $batch->execute();
387 $this->mResult->seek( 0 );
388 }
389
390 /**
391 * @return string
392 */
393 function getStartBody() {
394 return "<ul class=\"mw-contributions-list\">\n";
395 }
396
397 /**
398 * @return string
399 */
400 function getEndBody() {
401 return "</ul>\n";
402 }
403
404 /**
405 * Generates each row in the contributions list.
406 *
407 * Contributions which are marked "top" are currently on top of the history.
408 * For these contributions, a [rollback] link is shown for users with roll-
409 * back privileges. The rollback link restores the most recent version that
410 * was not written by the target user.
411 *
412 * @todo This would probably look a lot nicer in a table.
413 * @param object $row
414 * @return string
415 */
416 function formatRow( $row ) {
417 $ret = '';
418 $classes = [];
419 $attribs = [];
420
421 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
422
423 /*
424 * There may be more than just revision rows. To make sure that we'll only be processing
425 * revisions here, let's _try_ to build a revision out of our row (without displaying
426 * notices though) and then trying to grab data from the built object. If we succeed,
427 * we're definitely dealing with revision data and we may proceed, if not, we'll leave it
428 * to extensions to subscribe to the hook to parse the row.
429 */
430 MediaWiki\suppressWarnings();
431 try {
432 $rev = new Revision( $row );
433 $validRevision = (bool)$rev->getId();
434 } catch ( Exception $e ) {
435 $validRevision = false;
436 }
437 MediaWiki\restoreWarnings();
438
439 if ( $validRevision ) {
440 $attribs['data-mw-revid'] = $rev->getId();
441
442 $page = Title::newFromRow( $row );
443 $link = $linkRenderer->makeLink(
444 $page,
445 $page->getPrefixedText(),
446 [ 'class' => 'mw-contributions-title' ],
447 $page->isRedirect() ? [ 'redirect' => 'no' ] : []
448 );
449 # Mark current revisions
450 $topmarktext = '';
451 $user = $this->getUser();
452
453 if ( $row->rev_id === $row->page_latest ) {
454 $topmarktext .= '<span class="mw-uctop">' . $this->messages['uctop'] . '</span>';
455 $classes[] = 'mw-contributions-current';
456 # Add rollback link
457 if ( !$row->page_is_new && $page->quickUserCan( 'rollback', $user )
458 && $page->quickUserCan( 'edit', $user )
459 ) {
460 $this->preventClickjacking();
461 $topmarktext .= ' ' . Linker::generateRollback( $rev, $this->getContext() );
462 }
463 }
464 # Is there a visible previous revision?
465 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) && $rev->getParentId() !== 0 ) {
466 $difftext = $linkRenderer->makeKnownLink(
467 $page,
468 new HtmlArmor( $this->messages['diff'] ),
469 [ 'class' => 'mw-changeslist-diff' ],
470 [
471 'diff' => 'prev',
472 'oldid' => $row->rev_id
473 ]
474 );
475 } else {
476 $difftext = $this->messages['diff'];
477 }
478 $histlink = $linkRenderer->makeKnownLink(
479 $page,
480 new HtmlArmor( $this->messages['hist'] ),
481 [ 'class' => 'mw-changeslist-history' ],
482 [ 'action' => 'history' ]
483 );
484
485 if ( $row->rev_parent_id === null ) {
486 // For some reason rev_parent_id isn't populated for this row.
487 // Its rumoured this is true on wikipedia for some revisions (T36922).
488 // Next best thing is to have the total number of bytes.
489 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
490 $chardiff .= Linker::formatRevisionSize( $row->rev_len );
491 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
492 } else {
493 $parentLen = 0;
494 if ( isset( $this->mParentLens[$row->rev_parent_id] ) ) {
495 $parentLen = $this->mParentLens[$row->rev_parent_id];
496 }
497
498 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
499 $chardiff .= ChangesList::showCharacterDifference(
500 $parentLen,
501 $row->rev_len,
502 $this->getContext()
503 );
504 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
505 }
506
507 $lang = $this->getLanguage();
508 $comment = $lang->getDirMark() . Linker::revComment( $rev, false, true );
509 $date = $lang->userTimeAndDate( $row->rev_timestamp, $user );
510 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
511 $d = $linkRenderer->makeKnownLink(
512 $page,
513 $date,
514 [ 'class' => 'mw-changeslist-date' ],
515 [ 'oldid' => intval( $row->rev_id ) ]
516 );
517 } else {
518 $d = htmlspecialchars( $date );
519 }
520 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
521 $d = '<span class="history-deleted">' . $d . '</span>';
522 }
523
524 # Show user names for /newbies as there may be different users.
525 # Note that only unprivileged users have rows with hidden user names excluded.
526 # When querying for an IP range, we want to always show user and user talk links.
527 $userlink = '';
528 if ( ( $this->contribs == 'newbie' && !$rev->isDeleted( Revision::DELETED_USER ) )
529 || $this->isQueryableRange( $this->target ) ) {
530 $userlink = ' . . ' . $lang->getDirMark()
531 . Linker::userLink( $rev->getUser(), $rev->getUserText() );
532 $userlink .= ' ' . $this->msg( 'parentheses' )->rawParams(
533 Linker::userTalkLink( $rev->getUser(), $rev->getUserText() ) )->escaped() . ' ';
534 }
535
536 $flags = [];
537 if ( $rev->getParentId() === 0 ) {
538 $flags[] = ChangesList::flag( 'newpage' );
539 }
540
541 if ( $rev->isMinor() ) {
542 $flags[] = ChangesList::flag( 'minor' );
543 }
544
545 $del = Linker::getRevDeleteLink( $user, $rev, $page );
546 if ( $del !== '' ) {
547 $del .= ' ';
548 }
549
550 $diffHistLinks = $this->msg( 'parentheses' )
551 ->rawParams( $difftext . $this->messages['pipe-separator'] . $histlink )
552 ->escaped();
553
554 # Tags, if any.
555 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow(
556 $row->ts_tags,
557 'contributions',
558 $this->getContext()
559 );
560 $classes = array_merge( $classes, $newClasses );
561
562 Hooks::run( 'SpecialContributions::formatRow::flags', [ $this->getContext(), $row, &$flags ] );
563
564 $templateParams = [
565 'del' => $del,
566 'timestamp' => $d,
567 'diffHistLinks' => $diffHistLinks,
568 'charDifference' => $chardiff,
569 'flags' => $flags,
570 'articleLink' => $link,
571 'userlink' => $userlink,
572 'logText' => $comment,
573 'topmarktext' => $topmarktext,
574 'tagSummary' => $tagSummary,
575 ];
576
577 # Denote if username is redacted for this edit
578 if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
579 $templateParams['rev-deleted-user-contribs'] =
580 $this->msg( 'rev-deleted-user-contribs' )->escaped();
581 }
582
583 $ret = $this->templateParser->processTemplate(
584 'SpecialContributionsLine',
585 $templateParams
586 );
587 }
588
589 // Let extensions add data
590 Hooks::run( 'ContributionsLineEnding', [ $this, &$ret, $row, &$classes, &$attribs ] );
591 $attribs = wfArrayFilterByKey( $attribs, [ Sanitizer::class, 'isReservedDataAttribute' ] );
592
593 // TODO: Handle exceptions in the catch block above. Do any extensions rely on
594 // receiving empty rows?
595
596 if ( $classes === [] && $attribs === [] && $ret === '' ) {
597 wfDebug( "Dropping Special:Contribution row that could not be formatted\n" );
598 return "<!-- Could not format Special:Contribution row. -->\n";
599 }
600 $attribs['class'] = $classes;
601
602 // FIXME: The signature of the ContributionsLineEnding hook makes it
603 // very awkward to move this LI wrapper into the template.
604 return Html::rawElement( 'li', $attribs, $ret ) . "\n";
605 }
606
607 /**
608 * Overwrite Pager function and return a helpful comment
609 * @return string
610 */
611 function getSqlComment() {
612 if ( $this->namespace || $this->deletedOnly ) {
613 // potentially slow, see CR r58153
614 return 'contributions page filtered for namespace or RevisionDeleted edits';
615 } else {
616 return 'contributions page unfiltered';
617 }
618 }
619
620 protected function preventClickjacking() {
621 $this->preventClickjacking = true;
622 }
623
624 /**
625 * @return bool
626 */
627 public function getPreventClickjacking() {
628 return $this->preventClickjacking;
629 }
630
631 /**
632 * Set up date filter options, given request data.
633 *
634 * @param array $opts Options array
635 * @return array Options array with processed start and end date filter options
636 */
637 public static function processDateFilter( array $opts ) {
638 $start = isset( $opts['start'] ) ? $opts['start'] : '';
639 $end = isset( $opts['end'] ) ? $opts['end'] : '';
640 $year = isset( $opts['year'] ) ? $opts['year'] : '';
641 $month = isset( $opts['month'] ) ? $opts['month'] : '';
642
643 if ( $start !== '' && $end !== '' && $start > $end ) {
644 $temp = $start;
645 $start = $end;
646 $end = $temp;
647 }
648
649 // If year/month legacy filtering options are set, convert them to display the new stamp
650 if ( $year !== '' || $month !== '' ) {
651 // Reuse getDateCond logic, but subtract a day because
652 // the endpoints of our date range appear inclusive
653 // but the internal end offsets are always exclusive
654 $legacyTimestamp = ReverseChronologicalPager::getOffsetDate( $year, $month );
655 $legacyDateTime = new DateTime( $legacyTimestamp->getTimestamp( TS_ISO_8601 ) );
656 $legacyDateTime = $legacyDateTime->modify( '-1 day' );
657
658 // Clear the new timestamp range options if used and
659 // replace with the converted legacy timestamp
660 $start = '';
661 $end = $legacyDateTime->format( 'Y-m-d' );
662 }
663
664 $opts['start'] = $start;
665 $opts['end'] = $end;
666
667 return $opts;
668 }
669 }