Merge "Migrate block log to new log system"
[mediawiki.git] / includes / WatchedItem.php
blob4d226924a32da027e165d5444701931cb90bfd89
1 <?php
2 /**
3 * Accessor and mutator for watchlist entries.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Watchlist
24 /**
25 * Representation of a pair of user and title for watchlist entries.
27 * @ingroup Watchlist
29 class WatchedItem {
30 /**
31 * Constant to specify that user rights 'editmywatchlist' and
32 * 'viewmywatchlist' should not be checked.
33 * @since 1.22
35 const IGNORE_USER_RIGHTS = 0;
37 /**
38 * Constant to specify that user rights 'editmywatchlist' and
39 * 'viewmywatchlist' should be checked.
40 * @since 1.22
42 const CHECK_USER_RIGHTS = 1;
44 /** @var Title */
45 public $mTitle;
47 /** @var User */
48 public $mUser;
50 /** @var int */
51 public $mCheckRights;
53 /** @var bool */
54 private $loaded = false;
56 /** @var bool */
57 private $watched;
59 /** @var string */
60 private $timestamp;
62 /**
63 * Create a WatchedItem object with the given user and title
64 * @since 1.22 $checkRights parameter added
65 * @param User $user The user to use for (un)watching
66 * @param Title $title The title we're going to (un)watch
67 * @param int $checkRights Whether to check the 'viewmywatchlist' and 'editmywatchlist' rights.
68 * Pass either WatchedItem::IGNORE_USER_RIGHTS or WatchedItem::CHECK_USER_RIGHTS.
69 * @return WatchedItem
71 public static function fromUserTitle( $user, $title,
72 $checkRights = WatchedItem::CHECK_USER_RIGHTS
73 ) {
74 $wl = new WatchedItem;
75 $wl->mUser = $user;
76 $wl->mTitle = $title;
77 $wl->mCheckRights = $checkRights;
79 return $wl;
82 /**
83 * Title being watched
84 * @return Title
86 protected function getTitle() {
87 return $this->mTitle;
90 /**
91 * Helper to retrieve the title namespace
92 * @return int
94 protected function getTitleNs() {
95 return $this->getTitle()->getNamespace();
98 /**
99 * Helper to retrieve the title DBkey
100 * @return string
102 protected function getTitleDBkey() {
103 return $this->getTitle()->getDBkey();
107 * Helper to retrieve the user id
108 * @return int
110 protected function getUserId() {
111 return $this->mUser->getId();
115 * Return an array of conditions to select or update the appropriate database
116 * row.
118 * @return array
120 private function dbCond() {
121 return array(
122 'wl_user' => $this->getUserId(),
123 'wl_namespace' => $this->getTitleNs(),
124 'wl_title' => $this->getTitleDBkey(),
129 * Load the object from the database
131 private function load() {
132 if ( $this->loaded ) {
133 return;
135 $this->loaded = true;
137 // Only loggedin user can have a watchlist
138 if ( $this->mUser->isAnon() ) {
139 $this->watched = false;
140 return;
143 // some pages cannot be watched
144 if ( !$this->getTitle()->isWatchable() ) {
145 $this->watched = false;
146 return;
149 # Pages and their talk pages are considered equivalent for watching;
150 # remember that talk namespaces are numbered as page namespace+1.
152 $dbr = wfGetDB( DB_SLAVE );
153 $row = $dbr->selectRow( 'watchlist', 'wl_notificationtimestamp',
154 $this->dbCond(), __METHOD__ );
156 if ( $row === false ) {
157 $this->watched = false;
158 } else {
159 $this->watched = true;
160 $this->timestamp = $row->wl_notificationtimestamp;
165 * Check permissions
166 * @param string $what 'viewmywatchlist' or 'editmywatchlist'
167 * @return bool
169 private function isAllowed( $what ) {
170 return !$this->mCheckRights || $this->mUser->isAllowed( $what );
174 * Is mTitle being watched by mUser?
175 * @return bool
177 public function isWatched() {
178 if ( !$this->isAllowed( 'viewmywatchlist' ) ) {
179 return false;
182 $this->load();
183 return $this->watched;
187 * Get the notification timestamp of this entry.
189 * @return bool|null|string False if the page is not watched, the value of
190 * the wl_notificationtimestamp field otherwise
192 public function getNotificationTimestamp() {
193 if ( !$this->isAllowed( 'viewmywatchlist' ) ) {
194 return false;
197 $this->load();
198 if ( $this->watched ) {
199 return $this->timestamp;
200 } else {
201 return false;
206 * Reset the notification timestamp of this entry
208 * @param bool $force Whether to force the write query to be executed even if the
209 * page is not watched or the notification timestamp is already NULL.
210 * @param int $oldid The revision id being viewed. If not given or 0, latest revision is assumed.
212 public function resetNotificationTimestamp( $force = '', $oldid = 0 ) {
213 // Only loggedin user can have a watchlist
214 if ( wfReadOnly() || $this->mUser->isAnon() || !$this->isAllowed( 'editmywatchlist' ) ) {
215 return;
218 if ( $force != 'force' ) {
219 $this->load();
220 if ( !$this->watched || $this->timestamp === null ) {
221 return;
225 $title = $this->getTitle();
226 if ( !$oldid ) {
227 // No oldid given, assuming latest revision; clear the timestamp.
228 $notificationTimestamp = null;
229 } elseif ( !$title->getNextRevisionID( $oldid ) ) {
230 // Oldid given and is the latest revision for this title; clear the timestamp.
231 $notificationTimestamp = null;
232 } else {
233 // See if the version marked as read is more recent than the one we're viewing.
234 // Call load() if it wasn't called before due to $force.
235 $this->load();
237 if ( $this->timestamp === null ) {
238 // This can only happen if $force is enabled.
239 $notificationTimestamp = null;
240 } else {
241 // Oldid given and isn't the latest; update the timestamp.
242 // This will result in no further notification emails being sent!
243 $dbr = wfGetDB( DB_SLAVE );
244 $notificationTimestamp = $dbr->selectField(
245 'revision', 'rev_timestamp',
246 array( 'rev_page' => $title->getArticleID(), 'rev_id' => $oldid )
248 // We need to go one second to the future because of various strict comparisons
249 // throughout the codebase
250 $ts = new MWTimestamp( $notificationTimestamp );
251 $ts->timestamp->add( new DateInterval( 'PT1S' ) );
252 $notificationTimestamp = $ts->getTimestamp( TS_MW );
254 if ( $notificationTimestamp < $this->timestamp ) {
255 if ( $force != 'force' ) {
256 return;
257 } else {
258 // This is a little silly…
259 $notificationTimestamp = $this->timestamp;
265 // If the page is watched by the user (or may be watched), update the timestamp on any
266 // any matching rows
267 $dbw = wfGetDB( DB_MASTER );
268 $dbw->update( 'watchlist', array( 'wl_notificationtimestamp' => $notificationTimestamp ),
269 $this->dbCond(), __METHOD__ );
270 $this->timestamp = null;
274 * @param WatchedItem[] $items
275 * @return bool
277 public static function batchAddWatch( array $items ) {
279 if ( wfReadOnly() ) {
280 return false;
283 $rows = array();
284 foreach ( $items as $item ) {
285 // Only loggedin user can have a watchlist
286 if ( $item->mUser->isAnon() || !$item->isAllowed( 'editmywatchlist' ) ) {
287 continue;
289 $rows[] = array(
290 'wl_user' => $item->getUserId(),
291 'wl_namespace' => MWNamespace::getSubject( $item->getTitleNs() ),
292 'wl_title' => $item->getTitleDBkey(),
293 'wl_notificationtimestamp' => null,
295 // Every single watched page needs now to be listed in watchlist;
296 // namespace:page and namespace_talk:page need separate entries:
297 $rows[] = array(
298 'wl_user' => $item->getUserId(),
299 'wl_namespace' => MWNamespace::getTalk( $item->getTitleNs() ),
300 'wl_title' => $item->getTitleDBkey(),
301 'wl_notificationtimestamp' => null
303 $item->watched = true;
306 if ( !$rows ) {
307 return false;
310 $dbw = wfGetDB( DB_MASTER );
311 foreach ( array_chunk( $rows, 100 ) as $toInsert ) {
312 // Use INSERT IGNORE to avoid overwriting the notification timestamp
313 // if there's already an entry for this page
314 $dbw->insert( 'watchlist', $toInsert, __METHOD__, 'IGNORE' );
317 return true;
321 * Given a title and user (assumes the object is setup), add the watch to the database.
322 * @return bool
324 public function addWatch() {
325 return self::batchAddWatch( array( $this ) );
329 * Same as addWatch, only the opposite.
330 * @return bool
332 public function removeWatch() {
334 // Only loggedin user can have a watchlist
335 if ( wfReadOnly() || $this->mUser->isAnon() || !$this->isAllowed( 'editmywatchlist' ) ) {
336 return false;
339 $success = false;
340 $dbw = wfGetDB( DB_MASTER );
341 $dbw->delete( 'watchlist',
342 array(
343 'wl_user' => $this->getUserId(),
344 'wl_namespace' => MWNamespace::getSubject( $this->getTitleNs() ),
345 'wl_title' => $this->getTitleDBkey(),
346 ), __METHOD__
348 if ( $dbw->affectedRows() ) {
349 $success = true;
352 # the following code compensates the new behavior, introduced by the
353 # enotif patch, that every single watched page needs now to be listed
354 # in watchlist namespace:page and namespace_talk:page had separate
355 # entries: clear them
356 $dbw->delete( 'watchlist',
357 array(
358 'wl_user' => $this->getUserId(),
359 'wl_namespace' => MWNamespace::getTalk( $this->getTitleNs() ),
360 'wl_title' => $this->getTitleDBkey(),
361 ), __METHOD__
364 if ( $dbw->affectedRows() ) {
365 $success = true;
368 $this->watched = false;
370 return $success;
374 * Check if the given title already is watched by the user, and if so
375 * add watches on a new title. To be used for page renames and such.
377 * @param Title $ot Page title to duplicate entries from, if present
378 * @param Title $nt Page title to add watches on
380 public static function duplicateEntries( $ot, $nt ) {
381 WatchedItem::doDuplicateEntries( $ot->getSubjectPage(), $nt->getSubjectPage() );
382 WatchedItem::doDuplicateEntries( $ot->getTalkPage(), $nt->getTalkPage() );
386 * Handle duplicate entries. Backend for duplicateEntries().
388 * @param Title $ot
389 * @param Title $nt
391 * @return bool
393 private static function doDuplicateEntries( $ot, $nt ) {
394 $oldnamespace = $ot->getNamespace();
395 $newnamespace = $nt->getNamespace();
396 $oldtitle = $ot->getDBkey();
397 $newtitle = $nt->getDBkey();
399 $dbw = wfGetDB( DB_MASTER );
400 $res = $dbw->select( 'watchlist',
401 array( 'wl_user', 'wl_notificationtimestamp' ),
402 array( 'wl_namespace' => $oldnamespace, 'wl_title' => $oldtitle ),
403 __METHOD__, 'FOR UPDATE'
405 # Construct array to replace into the watchlist
406 $values = array();
407 foreach ( $res as $s ) {
408 $values[] = array(
409 'wl_user' => $s->wl_user,
410 'wl_namespace' => $newnamespace,
411 'wl_title' => $newtitle,
412 'wl_notificationtimestamp' => $s->wl_notificationtimestamp,
416 if ( empty( $values ) ) {
417 // Nothing to do
418 return true;
421 # Perform replace
422 # Note that multi-row replace is very efficient for MySQL but may be inefficient for
423 # some other DBMSes, mostly due to poor simulation by us
424 $dbw->replace(
425 'watchlist',
426 array( array( 'wl_user', 'wl_namespace', 'wl_title' ) ),
427 $values,
428 __METHOD__
431 return true;