MediaWiki REL1_30
WatchedItemStore.php
Go to the documentation of this file.
1<?php
2
4use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;
7use Wikimedia\Assert\Assert;
8use Wikimedia\ScopedCallback;
11
24
25 const SORT_DESC = 'DESC';
26 const SORT_ASC = 'ASC';
27
32
37
41 private $cache;
42
49 private $cacheIndex = [];
50
55
60
64 private $stats;
65
71 public function __construct(
72 LoadBalancer $loadBalancer,
74 ReadOnlyMode $readOnlyMode
75 ) {
76 $this->loadBalancer = $loadBalancer;
77 $this->cache = $cache;
78 $this->readOnlyMode = $readOnlyMode;
79 $this->stats = new NullStatsdDataFactory();
80 $this->deferredUpdatesAddCallableUpdateCallback = [ 'DeferredUpdates', 'addCallableUpdate' ];
81 $this->revisionGetTimestampFromIdCallback = [ 'Revision', 'getTimestampFromId' ];
82 }
83
84 public function setStatsdDataFactory( StatsdDataFactoryInterface $stats ) {
85 $this->stats = $stats;
86 }
87
99 public function overrideDeferredUpdatesAddCallableUpdateCallback( callable $callback ) {
100 if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
101 throw new MWException(
102 'Cannot override DeferredUpdates::addCallableUpdate callback in operation.'
103 );
104 }
105 $previousValue = $this->deferredUpdatesAddCallableUpdateCallback;
106 $this->deferredUpdatesAddCallableUpdateCallback = $callback;
107 return new ScopedCallback( function () use ( $previousValue ) {
108 $this->deferredUpdatesAddCallableUpdateCallback = $previousValue;
109 } );
110 }
111
122 public function overrideRevisionGetTimestampFromIdCallback( callable $callback ) {
123 if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
124 throw new MWException(
125 'Cannot override Revision::getTimestampFromId callback in operation.'
126 );
127 }
128 $previousValue = $this->revisionGetTimestampFromIdCallback;
129 $this->revisionGetTimestampFromIdCallback = $callback;
130 return new ScopedCallback( function () use ( $previousValue ) {
131 $this->revisionGetTimestampFromIdCallback = $previousValue;
132 } );
133 }
134
135 private function getCacheKey( User $user, LinkTarget $target ) {
136 return $this->cache->makeKey(
137 (string)$target->getNamespace(),
138 $target->getDBkey(),
139 (string)$user->getId()
140 );
141 }
142
143 private function cache( WatchedItem $item ) {
144 $user = $item->getUser();
145 $target = $item->getLinkTarget();
146 $key = $this->getCacheKey( $user, $target );
147 $this->cache->set( $key, $item );
148 $this->cacheIndex[$target->getNamespace()][$target->getDBkey()][$user->getId()] = $key;
149 $this->stats->increment( 'WatchedItemStore.cache' );
150 }
151
152 private function uncache( User $user, LinkTarget $target ) {
153 $this->cache->delete( $this->getCacheKey( $user, $target ) );
154 unset( $this->cacheIndex[$target->getNamespace()][$target->getDBkey()][$user->getId()] );
155 $this->stats->increment( 'WatchedItemStore.uncache' );
156 }
157
158 private function uncacheLinkTarget( LinkTarget $target ) {
159 $this->stats->increment( 'WatchedItemStore.uncacheLinkTarget' );
160 if ( !isset( $this->cacheIndex[$target->getNamespace()][$target->getDBkey()] ) ) {
161 return;
162 }
163 foreach ( $this->cacheIndex[$target->getNamespace()][$target->getDBkey()] as $key ) {
164 $this->stats->increment( 'WatchedItemStore.uncacheLinkTarget.items' );
165 $this->cache->delete( $key );
166 }
167 }
168
169 private function uncacheUser( User $user ) {
170 $this->stats->increment( 'WatchedItemStore.uncacheUser' );
171 foreach ( $this->cacheIndex as $ns => $dbKeyArray ) {
172 foreach ( $dbKeyArray as $dbKey => $userArray ) {
173 if ( isset( $userArray[$user->getId()] ) ) {
174 $this->stats->increment( 'WatchedItemStore.uncacheUser.items' );
175 $this->cache->delete( $userArray[$user->getId()] );
176 }
177 }
178 }
179 }
180
187 private function getCached( User $user, LinkTarget $target ) {
188 return $this->cache->get( $this->getCacheKey( $user, $target ) );
189 }
190
200 private function dbCond( User $user, LinkTarget $target ) {
201 return [
202 'wl_user' => $user->getId(),
203 'wl_namespace' => $target->getNamespace(),
204 'wl_title' => $target->getDBkey(),
205 ];
206 }
207
214 private function getConnectionRef( $dbIndex ) {
215 return $this->loadBalancer->getConnectionRef( $dbIndex, [ 'watchlist' ] );
216 }
217
226 public function countWatchedItems( User $user ) {
227 $dbr = $this->getConnectionRef( DB_REPLICA );
228 $return = (int)$dbr->selectField(
229 'watchlist',
230 'COUNT(*)',
231 [
232 'wl_user' => $user->getId()
233 ],
234 __METHOD__
235 );
236
237 return $return;
238 }
239
245 public function countWatchers( LinkTarget $target ) {
246 $dbr = $this->getConnectionRef( DB_REPLICA );
247 $return = (int)$dbr->selectField(
248 'watchlist',
249 'COUNT(*)',
250 [
251 'wl_namespace' => $target->getNamespace(),
252 'wl_title' => $target->getDBkey(),
253 ],
254 __METHOD__
255 );
256
257 return $return;
258 }
259
270 public function countVisitingWatchers( LinkTarget $target, $threshold ) {
271 $dbr = $this->getConnectionRef( DB_REPLICA );
272 $visitingWatchers = (int)$dbr->selectField(
273 'watchlist',
274 'COUNT(*)',
275 [
276 'wl_namespace' => $target->getNamespace(),
277 'wl_title' => $target->getDBkey(),
278 'wl_notificationtimestamp >= ' .
279 $dbr->addQuotes( $dbr->timestamp( $threshold ) ) .
280 ' OR wl_notificationtimestamp IS NULL'
281 ],
282 __METHOD__
283 );
284
285 return $visitingWatchers;
286 }
287
297 public function countWatchersMultiple( array $targets, array $options = [] ) {
298 if ( $targets === [] ) {
299 // No titles requested => no results returned
300 return [];
301 }
302
303 $dbOptions = [ 'GROUP BY' => [ 'wl_namespace', 'wl_title' ] ];
304
305 $dbr = $this->getConnectionRef( DB_REPLICA );
306
307 if ( array_key_exists( 'minimumWatchers', $options ) ) {
308 $dbOptions['HAVING'] = 'COUNT(*) >= ' . (int)$options['minimumWatchers'];
309 }
310
311 $lb = new LinkBatch( $targets );
312 $res = $dbr->select(
313 'watchlist',
314 [ 'wl_title', 'wl_namespace', 'watchers' => 'COUNT(*)' ],
315 [ $lb->constructSet( 'wl', $dbr ) ],
316 __METHOD__,
317 $dbOptions
318 );
319
320 $watchCounts = [];
321 foreach ( $targets as $linkTarget ) {
322 $watchCounts[$linkTarget->getNamespace()][$linkTarget->getDBkey()] = 0;
323 }
324
325 foreach ( $res as $row ) {
326 $watchCounts[$row->wl_namespace][$row->wl_title] = (int)$row->watchers;
327 }
328
329 return $watchCounts;
330 }
331
348 array $targetsWithVisitThresholds,
349 $minimumWatchers = null
350 ) {
351 $dbr = $this->getConnectionRef( DB_REPLICA );
352
353 $conds = $this->getVisitingWatchersCondition( $dbr, $targetsWithVisitThresholds );
354
355 $dbOptions = [ 'GROUP BY' => [ 'wl_namespace', 'wl_title' ] ];
356 if ( $minimumWatchers !== null ) {
357 $dbOptions['HAVING'] = 'COUNT(*) >= ' . (int)$minimumWatchers;
358 }
359 $res = $dbr->select(
360 'watchlist',
361 [ 'wl_namespace', 'wl_title', 'watchers' => 'COUNT(*)' ],
362 $conds,
363 __METHOD__,
364 $dbOptions
365 );
366
367 $watcherCounts = [];
368 foreach ( $targetsWithVisitThresholds as list( $target ) ) {
369 /* @var LinkTarget $target */
370 $watcherCounts[$target->getNamespace()][$target->getDBkey()] = 0;
371 }
372
373 foreach ( $res as $row ) {
374 $watcherCounts[$row->wl_namespace][$row->wl_title] = (int)$row->watchers;
375 }
376
377 return $watcherCounts;
378 }
379
388 IDatabase $db,
389 array $targetsWithVisitThresholds
390 ) {
391 $missingTargets = [];
392 $namespaceConds = [];
393 foreach ( $targetsWithVisitThresholds as list( $target, $threshold ) ) {
394 if ( $threshold === null ) {
395 $missingTargets[] = $target;
396 continue;
397 }
398 /* @var LinkTarget $target */
399 $namespaceConds[$target->getNamespace()][] = $db->makeList( [
400 'wl_title = ' . $db->addQuotes( $target->getDBkey() ),
401 $db->makeList( [
402 'wl_notificationtimestamp >= ' . $db->addQuotes( $db->timestamp( $threshold ) ),
403 'wl_notificationtimestamp IS NULL'
404 ], LIST_OR )
405 ], LIST_AND );
406 }
407
408 $conds = [];
409 foreach ( $namespaceConds as $namespace => $pageConds ) {
410 $conds[] = $db->makeList( [
411 'wl_namespace = ' . $namespace,
412 '(' . $db->makeList( $pageConds, LIST_OR ) . ')'
413 ], LIST_AND );
414 }
415
416 if ( $missingTargets ) {
417 $lb = new LinkBatch( $missingTargets );
418 $conds[] = $lb->constructSet( 'wl', $db );
419 }
420
421 return $db->makeList( $conds, LIST_OR );
422 }
423
432 public function getWatchedItem( User $user, LinkTarget $target ) {
433 if ( $user->isAnon() ) {
434 return false;
435 }
436
437 $cached = $this->getCached( $user, $target );
438 if ( $cached ) {
439 $this->stats->increment( 'WatchedItemStore.getWatchedItem.cached' );
440 return $cached;
441 }
442 $this->stats->increment( 'WatchedItemStore.getWatchedItem.load' );
443 return $this->loadWatchedItem( $user, $target );
444 }
445
454 public function loadWatchedItem( User $user, LinkTarget $target ) {
455 // Only loggedin user can have a watchlist
456 if ( $user->isAnon() ) {
457 return false;
458 }
459
460 $dbr = $this->getConnectionRef( DB_REPLICA );
461 $row = $dbr->selectRow(
462 'watchlist',
463 'wl_notificationtimestamp',
464 $this->dbCond( $user, $target ),
465 __METHOD__
466 );
467
468 if ( !$row ) {
469 return false;
470 }
471
472 $item = new WatchedItem(
473 $user,
474 $target,
475 wfTimestampOrNull( TS_MW, $row->wl_notificationtimestamp )
476 );
477 $this->cache( $item );
478
479 return $item;
480 }
481
491 public function getWatchedItemsForUser( User $user, array $options = [] ) {
492 $options += [ 'forWrite' => false ];
493
494 $dbOptions = [];
495 if ( array_key_exists( 'sort', $options ) ) {
496 Assert::parameter(
497 ( in_array( $options['sort'], [ self::SORT_ASC, self::SORT_DESC ] ) ),
498 '$options[\'sort\']',
499 'must be SORT_ASC or SORT_DESC'
500 );
501 $dbOptions['ORDER BY'] = [
502 "wl_namespace {$options['sort']}",
503 "wl_title {$options['sort']}"
504 ];
505 }
506 $db = $this->getConnectionRef( $options['forWrite'] ? DB_MASTER : DB_REPLICA );
507
508 $res = $db->select(
509 'watchlist',
510 [ 'wl_namespace', 'wl_title', 'wl_notificationtimestamp' ],
511 [ 'wl_user' => $user->getId() ],
512 __METHOD__,
513 $dbOptions
514 );
515
516 $watchedItems = [];
517 foreach ( $res as $row ) {
518 // @todo: Should we add these to the process cache?
519 $watchedItems[] = new WatchedItem(
520 $user,
521 new TitleValue( (int)$row->wl_namespace, $row->wl_title ),
522 $row->wl_notificationtimestamp
523 );
524 }
525
526 return $watchedItems;
527 }
528
537 public function isWatched( User $user, LinkTarget $target ) {
538 return (bool)$this->getWatchedItem( $user, $target );
539 }
540
550 public function getNotificationTimestampsBatch( User $user, array $targets ) {
551 $timestamps = [];
552 foreach ( $targets as $target ) {
553 $timestamps[$target->getNamespace()][$target->getDBkey()] = false;
554 }
555
556 if ( $user->isAnon() ) {
557 return $timestamps;
558 }
559
560 $targetsToLoad = [];
561 foreach ( $targets as $target ) {
562 $cachedItem = $this->getCached( $user, $target );
563 if ( $cachedItem ) {
564 $timestamps[$target->getNamespace()][$target->getDBkey()] =
565 $cachedItem->getNotificationTimestamp();
566 } else {
567 $targetsToLoad[] = $target;
568 }
569 }
570
571 if ( !$targetsToLoad ) {
572 return $timestamps;
573 }
574
575 $dbr = $this->getConnectionRef( DB_REPLICA );
576
577 $lb = new LinkBatch( $targetsToLoad );
578 $res = $dbr->select(
579 'watchlist',
580 [ 'wl_namespace', 'wl_title', 'wl_notificationtimestamp' ],
581 [
582 $lb->constructSet( 'wl', $dbr ),
583 'wl_user' => $user->getId(),
584 ],
585 __METHOD__
586 );
587
588 foreach ( $res as $row ) {
589 $timestamps[$row->wl_namespace][$row->wl_title] =
590 wfTimestampOrNull( TS_MW, $row->wl_notificationtimestamp );
591 }
592
593 return $timestamps;
594 }
595
602 public function addWatch( User $user, LinkTarget $target ) {
603 $this->addWatchBatchForUser( $user, [ $target ] );
604 }
605
612 public function addWatchBatchForUser( User $user, array $targets ) {
613 if ( $this->readOnlyMode->isReadOnly() ) {
614 return false;
615 }
616 // Only loggedin user can have a watchlist
617 if ( $user->isAnon() ) {
618 return false;
619 }
620
621 if ( !$targets ) {
622 return true;
623 }
624
625 $rows = [];
626 $items = [];
627 foreach ( $targets as $target ) {
628 $rows[] = [
629 'wl_user' => $user->getId(),
630 'wl_namespace' => $target->getNamespace(),
631 'wl_title' => $target->getDBkey(),
632 'wl_notificationtimestamp' => null,
633 ];
634 $items[] = new WatchedItem(
635 $user,
636 $target,
637 null
638 );
639 $this->uncache( $user, $target );
640 }
641
642 $dbw = $this->getConnectionRef( DB_MASTER );
643 foreach ( array_chunk( $rows, 100 ) as $toInsert ) {
644 // Use INSERT IGNORE to avoid overwriting the notification timestamp
645 // if there's already an entry for this page
646 $dbw->insert( 'watchlist', $toInsert, __METHOD__, 'IGNORE' );
647 }
648 // Update process cache to ensure skin doesn't claim that the current
649 // page is unwatched in the response of action=watch itself (T28292).
650 // This would otherwise be re-queried from a slave by isWatched().
651 foreach ( $items as $item ) {
652 $this->cache( $item );
653 }
654
655 return true;
656 }
657
669 public function removeWatch( User $user, LinkTarget $target ) {
670 // Only logged in user can have a watchlist
671 if ( $this->readOnlyMode->isReadOnly() || $user->isAnon() ) {
672 return false;
673 }
674
675 $this->uncache( $user, $target );
676
677 $dbw = $this->getConnectionRef( DB_MASTER );
678 $dbw->delete( 'watchlist',
679 [
680 'wl_user' => $user->getId(),
681 'wl_namespace' => $target->getNamespace(),
682 'wl_title' => $target->getDBkey(),
683 ], __METHOD__
684 );
685 $success = (bool)$dbw->affectedRows();
686
687 return $success;
688 }
689
697 public function setNotificationTimestampsForUser( User $user, $timestamp, array $targets = [] ) {
698 // Only loggedin user can have a watchlist
699 if ( $user->isAnon() ) {
700 return false;
701 }
702
703 $dbw = $this->getConnectionRef( DB_MASTER );
704
705 $conds = [ 'wl_user' => $user->getId() ];
706 if ( $targets ) {
707 $batch = new LinkBatch( $targets );
708 $conds[] = $batch->constructSet( 'wl', $dbw );
709 }
710
711 if ( $timestamp !== null ) {
712 $timestamp = $dbw->timestamp( $timestamp );
713 }
714
715 $success = $dbw->update(
716 'watchlist',
717 [ 'wl_notificationtimestamp' => $timestamp ],
718 $conds,
719 __METHOD__
720 );
721
722 $this->uncacheUser( $user );
723
724 return $success;
725 }
726
735 public function updateNotificationTimestamp( User $editor, LinkTarget $target, $timestamp ) {
736 $dbw = $this->getConnectionRef( DB_MASTER );
737 $uids = $dbw->selectFieldValues(
738 'watchlist',
739 'wl_user',
740 [
741 'wl_user != ' . intval( $editor->getId() ),
742 'wl_namespace' => $target->getNamespace(),
743 'wl_title' => $target->getDBkey(),
744 'wl_notificationtimestamp IS NULL',
745 ],
746 __METHOD__
747 );
748
749 $watchers = array_map( 'intval', $uids );
750 if ( $watchers ) {
751 // Update wl_notificationtimestamp for all watching users except the editor
752 $fname = __METHOD__;
753 DeferredUpdates::addCallableUpdate(
754 function () use ( $timestamp, $watchers, $target, $fname ) {
756
757 $dbw = $this->getConnectionRef( DB_MASTER );
758 $factory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
759 $ticket = $factory->getEmptyTransactionTicket( __METHOD__ );
760
761 $watchersChunks = array_chunk( $watchers, $wgUpdateRowsPerQuery );
762 foreach ( $watchersChunks as $watchersChunk ) {
763 $dbw->update( 'watchlist',
764 [ /* SET */
765 'wl_notificationtimestamp' => $dbw->timestamp( $timestamp )
766 ], [ /* WHERE - TODO Use wl_id T130067 */
767 'wl_user' => $watchersChunk,
768 'wl_namespace' => $target->getNamespace(),
769 'wl_title' => $target->getDBkey(),
770 ], $fname
771 );
772 if ( count( $watchersChunks ) > 1 ) {
773 $factory->commitAndWaitForReplication(
774 __METHOD__, $ticket, [ 'domain' => $dbw->getDomainID() ]
775 );
776 }
777 }
778 $this->uncacheLinkTarget( $target );
779 },
780 DeferredUpdates::POSTSEND,
781 $dbw
782 );
783 }
784
785 return $watchers;
786 }
787
800 public function resetNotificationTimestamp( User $user, Title $title, $force = '', $oldid = 0 ) {
801 // Only loggedin user can have a watchlist
802 if ( $this->readOnlyMode->isReadOnly() || $user->isAnon() ) {
803 return false;
804 }
805
806 $item = null;
807 if ( $force != 'force' ) {
808 $item = $this->loadWatchedItem( $user, $title );
809 if ( !$item || $item->getNotificationTimestamp() === null ) {
810 return false;
811 }
812 }
813
814 // If the page is watched by the user (or may be watched), update the timestamp
816 $title,
817 [
818 'type' => 'updateWatchlistNotification',
819 'userid' => $user->getId(),
820 'notifTime' => $this->getNotificationTimestamp( $user, $title, $item, $force, $oldid ),
821 'curTime' => time()
822 ]
823 );
824
825 // Try to run this post-send
826 // Calls DeferredUpdates::addCallableUpdate in normal operation
827 call_user_func(
828 $this->deferredUpdatesAddCallableUpdateCallback,
829 function () use ( $job ) {
830 $job->run();
831 }
832 );
833
834 $this->uncache( $user, $title );
835
836 return true;
837 }
838
839 private function getNotificationTimestamp( User $user, Title $title, $item, $force, $oldid ) {
840 if ( !$oldid ) {
841 // No oldid given, assuming latest revision; clear the timestamp.
842 return null;
843 }
844
845 if ( !$title->getNextRevisionID( $oldid ) ) {
846 // Oldid given and is the latest revision for this title; clear the timestamp.
847 return null;
848 }
849
850 if ( $item === null ) {
851 $item = $this->loadWatchedItem( $user, $title );
852 }
853
854 if ( !$item ) {
855 // This can only happen if $force is enabled.
856 return null;
857 }
858
859 // Oldid given and isn't the latest; update the timestamp.
860 // This will result in no further notification emails being sent!
861 // Calls Revision::getTimestampFromId in normal operation
862 $notificationTimestamp = call_user_func(
863 $this->revisionGetTimestampFromIdCallback,
864 $title,
865 $oldid
866 );
867
868 // We need to go one second to the future because of various strict comparisons
869 // throughout the codebase
870 $ts = new MWTimestamp( $notificationTimestamp );
871 $ts->timestamp->add( new DateInterval( 'PT1S' ) );
872 $notificationTimestamp = $ts->getTimestamp( TS_MW );
873
874 if ( $notificationTimestamp < $item->getNotificationTimestamp() ) {
875 if ( $force != 'force' ) {
876 return false;
877 } else {
878 // This is a little silly…
879 return $item->getNotificationTimestamp();
880 }
881 }
882
883 return $notificationTimestamp;
884 }
885
893 public function countUnreadNotifications( User $user, $unreadLimit = null ) {
894 $queryOptions = [];
895 if ( $unreadLimit !== null ) {
896 $unreadLimit = (int)$unreadLimit;
897 $queryOptions['LIMIT'] = $unreadLimit;
898 }
899
900 $dbr = $this->getConnectionRef( DB_REPLICA );
901 $rowCount = $dbr->selectRowCount(
902 'watchlist',
903 '1',
904 [
905 'wl_user' => $user->getId(),
906 'wl_notificationtimestamp IS NOT NULL',
907 ],
908 __METHOD__,
909 $queryOptions
910 );
911
912 if ( !isset( $unreadLimit ) ) {
913 return $rowCount;
914 }
915
916 if ( $rowCount >= $unreadLimit ) {
917 return true;
918 }
919
920 return $rowCount;
921 }
922
932 public function duplicateAllAssociatedEntries( LinkTarget $oldTarget, LinkTarget $newTarget ) {
933 $oldTarget = Title::newFromLinkTarget( $oldTarget );
934 $newTarget = Title::newFromLinkTarget( $newTarget );
935
936 $this->duplicateEntry( $oldTarget->getSubjectPage(), $newTarget->getSubjectPage() );
937 $this->duplicateEntry( $oldTarget->getTalkPage(), $newTarget->getTalkPage() );
938 }
939
950 public function duplicateEntry( LinkTarget $oldTarget, LinkTarget $newTarget ) {
951 $dbw = $this->getConnectionRef( DB_MASTER );
952
953 $result = $dbw->select(
954 'watchlist',
955 [ 'wl_user', 'wl_notificationtimestamp' ],
956 [
957 'wl_namespace' => $oldTarget->getNamespace(),
958 'wl_title' => $oldTarget->getDBkey(),
959 ],
960 __METHOD__,
961 [ 'FOR UPDATE' ]
962 );
963
964 $newNamespace = $newTarget->getNamespace();
965 $newDBkey = $newTarget->getDBkey();
966
967 # Construct array to replace into the watchlist
968 $values = [];
969 foreach ( $result as $row ) {
970 $values[] = [
971 'wl_user' => $row->wl_user,
972 'wl_namespace' => $newNamespace,
973 'wl_title' => $newDBkey,
974 'wl_notificationtimestamp' => $row->wl_notificationtimestamp,
975 ];
976 }
977
978 if ( !empty( $values ) ) {
979 # Perform replace
980 # Note that multi-row replace is very efficient for MySQL but may be inefficient for
981 # some other DBMSes, mostly due to poor simulation by us
982 $dbw->replace(
983 'watchlist',
984 [ [ 'wl_user', 'wl_namespace', 'wl_title' ] ],
985 $values,
986 __METHOD__
987 );
988 }
989 }
990
991}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgUpdateRowsPerQuery
Number of rows to update per query.
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
Definition Setup.php:36
Job for updating user activity like "last viewed" timestamps.
Simple store for keeping values in an associative array for the current process.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition LinkBatch.php:34
MediaWiki exception.
Library for creating and parsing MW-style timestamps.
MediaWikiServices is the service locator for the application scope of MediaWiki.
A service class for fetching the wiki's current read-only mode.
Represents a page (or page fragment) title within MediaWiki.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:51
Storage layer class for WatchedItems.
getCacheKey(User $user, LinkTarget $target)
countWatchedItems(User $user)
Count the number of individual items that are watched by the user.
uncacheLinkTarget(LinkTarget $target)
callable null $deferredUpdatesAddCallableUpdateCallback
loadWatchedItem(User $user, LinkTarget $target)
Loads an item from the db.
duplicateEntry(LinkTarget $oldTarget, LinkTarget $newTarget)
Check if the given title already is watched by the user, and if so add a watch for the new title.
duplicateAllAssociatedEntries(LinkTarget $oldTarget, LinkTarget $newTarget)
Check if the given title already is watched by the user, and if so add a watch for the new title.
setNotificationTimestampsForUser(User $user, $timestamp, array $targets=[])
countVisitingWatchersMultiple(array $targetsWithVisitThresholds, $minimumWatchers=null)
Number of watchers of each page who have visited recent edits to that page.
countUnreadNotifications(User $user, $unreadLimit=null)
ReadOnlyMode $readOnlyMode
updateNotificationTimestamp(User $editor, LinkTarget $target, $timestamp)
getNotificationTimestamp(User $user, Title $title, $item, $force, $oldid)
uncache(User $user, LinkTarget $target)
countVisitingWatchers(LinkTarget $target, $threshold)
Number of page watchers who also visited a "recent" edit.
HashBagOStuff $cache
setStatsdDataFactory(StatsdDataFactoryInterface $stats)
Sets a StatsdDataFactory instance on the object.
addWatchBatchForUser(User $user, array $targets)
getWatchedItemsForUser(User $user, array $options=[])
dbCond(User $user, LinkTarget $target)
Return an array of conditions to select or update the appropriate database row.
cache(WatchedItem $item)
__construct(LoadBalancer $loadBalancer, HashBagOStuff $cache, ReadOnlyMode $readOnlyMode)
callable null $revisionGetTimestampFromIdCallback
getConnectionRef( $dbIndex)
countWatchers(LinkTarget $target)
overrideRevisionGetTimestampFromIdCallback(callable $callback)
Overrides the Revision::getTimestampFromId callback This is intended for use while testing and will f...
resetNotificationTimestamp(User $user, Title $title, $force='', $oldid=0)
Reset the notification timestamp of this entry.
addWatch(User $user, LinkTarget $target)
Must be called separately for Subject & Talk namespaces.
countWatchersMultiple(array $targets, array $options=[])
isWatched(User $user, LinkTarget $target)
Must be called separately for Subject & Talk namespaces.
StatsdDataFactoryInterface $stats
getNotificationTimestampsBatch(User $user, array $targets)
getWatchedItem(User $user, LinkTarget $target)
Get an item (may be cached)
getVisitingWatchersCondition(IDatabase $db, array $targetsWithVisitThresholds)
Generates condition for the query used in a batch count visiting watchers.
removeWatch(User $user, LinkTarget $target)
Removes the an entry for the User watching the LinkTarget Must be called separately for Subject & Tal...
getCached(User $user, LinkTarget $target)
LoadBalancer $loadBalancer
overrideDeferredUpdatesAddCallableUpdateCallback(callable $callback)
Overrides the DeferredUpdates::addCallableUpdate callback This is intended for use while testing and ...
array[] $cacheIndex
Looks like $cacheIndex[Namespace ID][Target DB Key][User Id] => 'key' The index is needed so that on ...
Representation of a pair of user and title for watchlist entries.
Database connection, tracking, load balancing, and transaction manager for a cluster.
$res
Definition database.txt:21
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
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
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
const LIST_OR
Definition Defines.php:47
const LIST_AND
Definition Defines.php:44
the array() calling protocol came about after MediaWiki 1.4rc1.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
Definition hooks.txt:2746
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
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:1971
passed in as a query string parameter to the various URLs constructed here(i.e. $prevlink) $ldel you ll need to handle error etc yourself modifying $error and returning true will cause the contents of $error to be echoed at the top of the edit form as wikitext Return true without altering $error to allow the edit to proceed & $editor
Definition hooks.txt:1409
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:962
processing should stop and the error should be shown to the user * false
Definition hooks.txt:187
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 local account $user
Definition hooks.txt:247
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:37
getNamespace()
Get the namespace index.
getDBkey()
Get the main part with underscores.
Describes a Statsd aware interface.
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:40
addQuotes( $s)
Adds quotes and backslashes.
timestamp( $ts=0)
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting ...
makeList( $a, $mode=self::LIST_COMMA)
Makes an encoded list of strings from an array.
$batch
Definition linkcache.txt:23
you have access to all of the normal MediaWiki so you can get a DB use the cache
$cache
Definition mcc.php:33
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:26
if(count( $args)< 1) $job