MediaWiki  1.33.0
NoWriteWatchedItemStore.php
Go to the documentation of this file.
1 <?php
23 
29 
33  private $actualStore;
34 
38  const DB_READONLY_ERROR = 'The watchlist is currently readonly.';
39 
45  $this->actualStore = $actualStore;
46  }
47 
48  public function countWatchedItems( User $user ) {
49  return $this->actualStore->countWatchedItems( $user );
50  }
51 
52  public function countWatchers( LinkTarget $target ) {
53  return $this->actualStore->countWatchers( $target );
54  }
55 
56  public function countVisitingWatchers( LinkTarget $target, $threshold ) {
57  return $this->actualStore->countVisitingWatchers( $target, $threshold );
58  }
59 
60  public function countWatchersMultiple( array $targets, array $options = [] ) {
61  return $this->actualStore->countVisitingWatchersMultiple( $targets, $options );
62  }
63 
65  array $targetsWithVisitThresholds,
66  $minimumWatchers = null
67  ) {
68  return $this->actualStore->countVisitingWatchersMultiple(
69  $targetsWithVisitThresholds,
70  $minimumWatchers
71  );
72  }
73 
74  public function getWatchedItem( User $user, LinkTarget $target ) {
75  return $this->actualStore->getWatchedItem( $user, $target );
76  }
77 
78  public function loadWatchedItem( User $user, LinkTarget $target ) {
79  return $this->actualStore->loadWatchedItem( $user, $target );
80  }
81 
82  public function getWatchedItemsForUser( User $user, array $options = [] ) {
83  return $this->actualStore->getWatchedItemsForUser( $user, $options );
84  }
85 
86  public function isWatched( User $user, LinkTarget $target ) {
87  return $this->actualStore->isWatched( $user, $target );
88  }
89 
90  public function getNotificationTimestampsBatch( User $user, array $targets ) {
91  return $this->actualStore->getNotificationTimestampsBatch( $user, $targets );
92  }
93 
94  public function countUnreadNotifications( User $user, $unreadLimit = null ) {
95  return $this->actualStore->countUnreadNotifications( $user, $unreadLimit );
96  }
97 
98  public function duplicateAllAssociatedEntries( LinkTarget $oldTarget, LinkTarget $newTarget ) {
99  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
100  }
101 
102  public function duplicateEntry( LinkTarget $oldTarget, LinkTarget $newTarget ) {
103  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
104  }
105 
106  public function addWatch( User $user, LinkTarget $target ) {
107  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
108  }
109 
110  public function addWatchBatchForUser( User $user, array $targets ) {
111  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
112  }
113 
114  public function removeWatch( User $user, LinkTarget $target ) {
115  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
116  }
117 
119  User $user,
120  $timestamp,
121  array $targets = []
122  ) {
123  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
124  }
125 
126  public function updateNotificationTimestamp( User $editor, LinkTarget $target, $timestamp ) {
127  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
128  }
129 
131  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
132  }
133 
134  public function resetNotificationTimestamp(
135  User $user,
136  Title $title,
137  $force = '',
138  $oldid = 0
139  ) {
140  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
141  }
142 
143  public function clearUserWatchedItems( User $user ) {
144  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
145  }
146 
148  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
149  }
150 
152  throw new DBReadOnlyError( null, self::DB_READONLY_ERROR );
153  }
154 
155  public function getLatestNotificationTimestamp( $timestamp, User $user, LinkTarget $target ) {
156  return wfTimestampOrNull( TS_MW, $timestamp );
157  }
158 }
NoWriteWatchedItemStore\getNotificationTimestampsBatch
getNotificationTimestampsBatch(User $user, array $targets)
Definition: NoWriteWatchedItemStore.php:90
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
NoWriteWatchedItemStore\addWatch
addWatch(User $user, LinkTarget $target)
Must be called separately for Subject & Talk namespaces.
Definition: NoWriteWatchedItemStore.php:106
NoWriteWatchedItemStore\getWatchedItem
getWatchedItem(User $user, LinkTarget $target)
Get an item (may be cached)
Definition: NoWriteWatchedItemStore.php:74
NoWriteWatchedItemStore\countVisitingWatchers
countVisitingWatchers(LinkTarget $target, $threshold)
Number of page watchers who also visited a "recent" edit.
Definition: NoWriteWatchedItemStore.php:56
NoWriteWatchedItemStore\duplicateEntry
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.
Definition: NoWriteWatchedItemStore.php:102
NoWriteWatchedItemStore\duplicateAllAssociatedEntries
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.
Definition: NoWriteWatchedItemStore.php:98
NoWriteWatchedItemStore\countWatchedItems
countWatchedItems(User $user)
Count the number of individual items that are watched by the user.
Definition: NoWriteWatchedItemStore.php:48
NoWriteWatchedItemStore\countWatchersMultiple
countWatchersMultiple(array $targets, array $options=[])
Definition: NoWriteWatchedItemStore.php:60
php
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:35
NoWriteWatchedItemStore\__construct
__construct(WatchedItemStoreInterface $actualStore)
Initialy set WatchedItemStore that will be used in cases where writing is not needed.
Definition: NoWriteWatchedItemStore.php:44
NoWriteWatchedItemStore\addWatchBatchForUser
addWatchBatchForUser(User $user, array $targets)
Definition: NoWriteWatchedItemStore.php:110
NoWriteWatchedItemStore\updateNotificationTimestamp
updateNotificationTimestamp(User $editor, LinkTarget $target, $timestamp)
Definition: NoWriteWatchedItemStore.php:126
NoWriteWatchedItemStore\$actualStore
WatchedItemStoreInterface $actualStore
Definition: NoWriteWatchedItemStore.php:33
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
$titles
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
Definition: linkcache.txt:17
NoWriteWatchedItemStore\getLatestNotificationTimestamp
getLatestNotificationTimestamp( $timestamp, User $user, LinkTarget $target)
Convert $timestamp to TS_MW or return null if the page was visited since then by $user.
Definition: NoWriteWatchedItemStore.php:155
NoWriteWatchedItemStore\clearUserWatchedItemsUsingJobQueue
clearUserWatchedItemsUsingJobQueue(User $user)
Queues a job that will clear the users watchlist using the Job Queue.
Definition: NoWriteWatchedItemStore.php:147
NoWriteWatchedItemStore\removeWatch
removeWatch(User $user, LinkTarget $target)
Removes an entry for the User watching the LinkTarget Must be called separately for Subject & Talk na...
Definition: NoWriteWatchedItemStore.php:114
wfTimestampOrNull
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
Definition: GlobalFunctions.php:1928
NoWriteWatchedItemStore\countUnreadNotifications
countUnreadNotifications(User $user, $unreadLimit=null)
Definition: NoWriteWatchedItemStore.php:94
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
$editor
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:1290
Wikimedia\Rdbms\DBReadOnlyError
Definition: DBReadOnlyError.php:27
NoWriteWatchedItemStore\resetNotificationTimestamp
resetNotificationTimestamp(User $user, Title $title, $force='', $oldid=0)
Reset the notification timestamp of this entry.
Definition: NoWriteWatchedItemStore.php:134
NoWriteWatchedItemStore\removeWatchBatchForUser
removeWatchBatchForUser(User $user, array $titles)
Definition: NoWriteWatchedItemStore.php:151
NoWriteWatchedItemStore\getWatchedItemsForUser
getWatchedItemsForUser(User $user, array $options=[])
Definition: NoWriteWatchedItemStore.php:82
NoWriteWatchedItemStore\countWatchers
countWatchers(LinkTarget $target)
Definition: NoWriteWatchedItemStore.php:52
Title
Represents a title within MediaWiki.
Definition: Title.php:40
$options
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:1985
NoWriteWatchedItemStore\resetAllNotificationTimestampsForUser
resetAllNotificationTimestampsForUser(User $user)
Reset all watchlist notificaton timestamps for a user using the job queue.
Definition: NoWriteWatchedItemStore.php:130
NoWriteWatchedItemStore\loadWatchedItem
loadWatchedItem(User $user, LinkTarget $target)
Loads an item from the db.
Definition: NoWriteWatchedItemStore.php:78
NoWriteWatchedItemStore\countVisitingWatchersMultiple
countVisitingWatchersMultiple(array $targetsWithVisitThresholds, $minimumWatchers=null)
Number of watchers of each page who have visited recent edits to that page.
Definition: NoWriteWatchedItemStore.php:64
NoWriteWatchedItemStore\isWatched
isWatched(User $user, LinkTarget $target)
Must be called separately for Subject & Talk namespaces.
Definition: NoWriteWatchedItemStore.php:86
NoWriteWatchedItemStore\clearUserWatchedItems
clearUserWatchedItems(User $user)
Queues a job that will clear the users watchlist using the Job Queue.
Definition: NoWriteWatchedItemStore.php:143
MediaWiki\Linker\LinkTarget
Definition: LinkTarget.php:26
WatchedItemStoreInterface
Definition: WatchedItemStoreInterface.php:28
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:48
NoWriteWatchedItemStore\setNotificationTimestampsForUser
setNotificationTimestampsForUser(User $user, $timestamp, array $targets=[])
Definition: NoWriteWatchedItemStore.php:118
NoWriteWatchedItemStore
Definition: NoWriteWatchedItemStore.php:28