MediaWiki REL1_35
WatchedItemStoreInterface.php
Go to the documentation of this file.
1<?php
25
31
35 public const SORT_ASC = 'ASC';
36
40 public const SORT_DESC = 'DESC';
41
52 public function countWatchedItems( UserIdentity $user );
53
61 public function countWatchers( LinkTarget $target );
62
75 public function countVisitingWatchers( LinkTarget $target, $threshold );
76
88 public function countWatchersMultiple( array $targets, array $options = [] );
89
111 array $targetsWithVisitThresholds,
112 $minimumWatchers = null
113 );
114
125 public function getWatchedItem( UserIdentity $user, LinkTarget $target );
126
137 public function loadWatchedItem( UserIdentity $user, LinkTarget $target );
138
153 public function getWatchedItemsForUser( UserIdentity $user, array $options = [] );
154
165 public function isWatched( UserIdentity $user, LinkTarget $target );
166
178 public function isTempWatched( UserIdentity $user, LinkTarget $target ): bool;
179
191 public function getNotificationTimestampsBatch( UserIdentity $user, array $targets );
192
204 public function addWatch( UserIdentity $user, LinkTarget $target, ?string $expiry = null );
205
217 public function addWatchBatchForUser( UserIdentity $user, array $targets, ?string $expiry = null );
218
232 public function removeWatch( UserIdentity $user, LinkTarget $target );
233
244 UserIdentity $user,
245 $timestamp,
246 array $targets = []
247 );
248
257 public function resetAllNotificationTimestampsForUser( UserIdentity $user, $timestamp = null );
258
270 UserIdentity $editor, LinkTarget $target, $timestamp );
271
288 UserIdentity $user, LinkTarget $title, $force = '', $oldid = 0 );
289
299 public function countUnreadNotifications( UserIdentity $user, $unreadLimit = null );
300
312 public function duplicateAllAssociatedEntries( LinkTarget $oldTarget, LinkTarget $newTarget );
313
326 public function duplicateEntry( LinkTarget $oldTarget, LinkTarget $newTarget );
327
335 public function clearUserWatchedItems( UserIdentity $user );
336
346 public function mustClearWatchedItemsUsingJobQueue( UserIdentity $user ): bool;
347
356
364 public function enqueueWatchlistExpiryJob( float $watchlistPurgeRate ): void;
365
374 public function removeWatchBatchForUser( UserIdentity $user, array $targets );
375
390 $timestamp, UserIdentity $user, LinkTarget $target );
391
399 public function countExpired(): int;
400
411 public function removeExpired( int $limit, bool $deleteOrphans = false ): void;
412}
Interface for objects representing user identity.
updateNotificationTimestamp(UserIdentity $editor, LinkTarget $target, $timestamp)
enqueueWatchlistExpiryJob(float $watchlistPurgeRate)
Probabilistically add a job to purge the expired watchlist items.
countWatchersMultiple(array $targets, array $options=[])
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.
getLatestNotificationTimestamp( $timestamp, UserIdentity $user, LinkTarget $target)
Convert $timestamp to TS_MW or return null if the page was visited since then by $user.
removeWatchBatchForUser(UserIdentity $user, array $targets)
removeExpired(int $limit, bool $deleteOrphans=false)
Remove some number of expired watchlist items.
countVisitingWatchersMultiple(array $targetsWithVisitThresholds, $minimumWatchers=null)
Number of watchers of each page who have visited recent edits to that page.
countWatchers(LinkTarget $target)
getWatchedItemsForUser(UserIdentity $user, array $options=[])
countExpired()
Get the number of watchlist items that expire before the current time.
countVisitingWatchers(LinkTarget $target, $threshold)
Number of page watchers who also visited a "recent" edit.
isWatched(UserIdentity $user, LinkTarget $target)
Must be called separately for Subject & Talk namespaces.
getWatchedItem(UserIdentity $user, LinkTarget $target)
Get an item (may be cached)
countUnreadNotifications(UserIdentity $user, $unreadLimit=null)
clearUserWatchedItemsUsingJobQueue(UserIdentity $user)
Queues a job that will clear the users watchlist using the Job Queue.
addWatchBatchForUser(UserIdentity $user, array $targets, ?string $expiry=null)
addWatch(UserIdentity $user, LinkTarget $target, ?string $expiry=null)
Must be called separately for Subject & Talk namespaces.
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.
loadWatchedItem(UserIdentity $user, LinkTarget $target)
Loads an item from the db.
countWatchedItems(UserIdentity $user)
Count the number of individual items that are watched by the user.
isTempWatched(UserIdentity $user, LinkTarget $target)
Whether the page is only being watched temporarily (has expiry).
resetNotificationTimestamp(UserIdentity $user, LinkTarget $title, $force='', $oldid=0)
Reset the notification timestamp of this entry.
clearUserWatchedItems(UserIdentity $user)
Synchronously clear the users watchlist.
mustClearWatchedItemsUsingJobQueue(UserIdentity $user)
Does the size of the users watchlist require clearUserWatchedItemsUsingJobQueue() to be used instead ...
removeWatch(UserIdentity $user, LinkTarget $target)
Removes an entry for the UserIdentity watching the LinkTarget Must be called separately for Subject &...
setNotificationTimestampsForUser(UserIdentity $user, $timestamp, array $targets=[])
getNotificationTimestampsBatch(UserIdentity $user, array $targets)
resetAllNotificationTimestampsForUser(UserIdentity $user, $timestamp=null)
Reset all watchlist notificaton timestamps for a user using the job queue.