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
25 * Representation of a pair of user and title for watchlist entries.
31 * Constant to specify that user rights 'editmywatchlist' and
32 * 'viewmywatchlist' should not be checked.
35 const IGNORE_USER_RIGHTS
= 0;
38 * Constant to specify that user rights 'editmywatchlist' and
39 * 'viewmywatchlist' should be checked.
42 const CHECK_USER_RIGHTS
= 1;
44 var $mTitle, $mUser, $mCheckRights;
45 private $loaded = false, $watched, $timestamp;
48 * Create a WatchedItem object with the given user and title
49 * @since 1.22 $checkRights parameter added
50 * @param $user User: the user to use for (un)watching
51 * @param $title Title: the title we're going to (un)watch
52 * @param $checkRights int: Whether to check the 'viewmywatchlist' and 'editmywatchlist' rights.
53 * Pass either WatchedItem::IGNORE_USER_RIGHTS or WatchedItem::CHECK_USER_RIGHTS.
54 * @return WatchedItem object
56 public static function fromUserTitle( $user, $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
57 $wl = new WatchedItem
;
60 $wl->mCheckRights
= $checkRights;
69 protected function getTitle() {
73 /** Helper to retrieve the title namespace */
74 protected function getTitleNs() {
75 return $this->getTitle()->getNamespace();
78 /** Helper to retrieve the title DBkey */
79 protected function getTitleDBkey() {
80 return $this->getTitle()->getDBkey();
82 /** Helper to retrieve the user id */
83 protected function getUserId() {
84 return $this->mUser
->getId();
88 * Return an array of conditions to select or update the appropriate database
93 private function dbCond() {
95 'wl_user' => $this->getUserId(),
96 'wl_namespace' => $this->getTitleNs(),
97 'wl_title' => $this->getTitleDBkey(),
102 * Load the object from the database
104 private function load() {
105 if ( $this->loaded
) {
108 $this->loaded
= true;
110 // Only loggedin user can have a watchlist
111 if ( $this->mUser
->isAnon() ) {
112 $this->watched
= false;
116 # Pages and their talk pages are considered equivalent for watching;
117 # remember that talk namespaces are numbered as page namespace+1.
119 $dbr = wfGetDB( DB_SLAVE
);
120 $row = $dbr->selectRow( 'watchlist', 'wl_notificationtimestamp',
121 $this->dbCond(), __METHOD__
);
123 if ( $row === false ) {
124 $this->watched
= false;
126 $this->watched
= true;
127 $this->timestamp
= $row->wl_notificationtimestamp
;
133 * @param $what string: 'viewmywatchlist' or 'editmywatchlist'
135 private function isAllowed( $what ) {
136 return !$this->mCheckRights ||
$this->mUser
->isAllowed( $what );
140 * Is mTitle being watched by mUser?
143 public function isWatched() {
144 if ( !$this->isAllowed( 'viewmywatchlist' ) ) {
149 return $this->watched
;
153 * Get the notification timestamp of this entry.
155 * @return false|null|string: false if the page is not watched, the value of
156 * the wl_notificationtimestamp field otherwise
158 public function getNotificationTimestamp() {
159 if ( !$this->isAllowed( 'viewmywatchlist' ) ) {
164 if ( $this->watched
) {
165 return $this->timestamp
;
172 * Reset the notification timestamp of this entry
174 * @param $force Whether to force the write query to be executed even if the
175 * page is not watched or the notification timestamp is already NULL.
177 public function resetNotificationTimestamp( $force = '' ) {
178 // Only loggedin user can have a watchlist
179 if ( wfReadOnly() ||
$this->mUser
->isAnon() ||
!$this->isAllowed( 'editmywatchlist' ) ) {
183 if ( $force != 'force' ) {
185 if ( !$this->watched ||
$this->timestamp
=== null ) {
190 // If the page is watched by the user (or may be watched), update the timestamp on any
192 $dbw = wfGetDB( DB_MASTER
);
193 $dbw->update( 'watchlist', array( 'wl_notificationtimestamp' => null ),
194 $this->dbCond(), __METHOD__
);
195 $this->timestamp
= null;
199 * Given a title and user (assumes the object is setup), add the watch to the
203 public function addWatch() {
204 wfProfileIn( __METHOD__
);
206 // Only loggedin user can have a watchlist
207 if ( wfReadOnly() ||
$this->mUser
->isAnon() ||
!$this->isAllowed( 'editmywatchlist' ) ) {
208 wfProfileOut( __METHOD__
);
212 // Use INSERT IGNORE to avoid overwriting the notification timestamp
213 // if there's already an entry for this page
214 $dbw = wfGetDB( DB_MASTER
);
215 $dbw->insert( 'watchlist',
217 'wl_user' => $this->getUserId(),
218 'wl_namespace' => MWNamespace
::getSubject( $this->getTitleNs() ),
219 'wl_title' => $this->getTitleDBkey(),
220 'wl_notificationtimestamp' => null
221 ), __METHOD__
, 'IGNORE' );
223 // Every single watched page needs now to be listed in watchlist;
224 // namespace:page and namespace_talk:page need separate entries:
225 $dbw->insert( 'watchlist',
227 'wl_user' => $this->getUserId(),
228 'wl_namespace' => MWNamespace
::getTalk( $this->getTitleNs() ),
229 'wl_title' => $this->getTitleDBkey(),
230 'wl_notificationtimestamp' => null
231 ), __METHOD__
, 'IGNORE' );
233 $this->watched
= true;
235 wfProfileOut( __METHOD__
);
240 * Same as addWatch, only the opposite.
243 public function removeWatch() {
244 wfProfileIn( __METHOD__
);
246 // Only loggedin user can have a watchlist
247 if ( wfReadOnly() ||
$this->mUser
->isAnon() ||
!$this->isAllowed( 'editmywatchlist' ) ) {
248 wfProfileOut( __METHOD__
);
253 $dbw = wfGetDB( DB_MASTER
);
254 $dbw->delete( 'watchlist',
256 'wl_user' => $this->getUserId(),
257 'wl_namespace' => MWNamespace
::getSubject( $this->getTitleNs() ),
258 'wl_title' => $this->getTitleDBkey(),
261 if ( $dbw->affectedRows() ) {
265 # the following code compensates the new behavior, introduced by the
266 # enotif patch, that every single watched page needs now to be listed
267 # in watchlist namespace:page and namespace_talk:page had separate
268 # entries: clear them
269 $dbw->delete( 'watchlist',
271 'wl_user' => $this->getUserId(),
272 'wl_namespace' => MWNamespace
::getTalk( $this->getTitleNs() ),
273 'wl_title' => $this->getTitleDBkey(),
277 if ( $dbw->affectedRows() ) {
281 $this->watched
= false;
283 wfProfileOut( __METHOD__
);
288 * Check if the given title already is watched by the user, and if so
289 * add watches on a new title. To be used for page renames and such.
291 * @param $ot Title: page title to duplicate entries from, if present
292 * @param $nt Title: page title to add watches on
294 public static function duplicateEntries( $ot, $nt ) {
295 WatchedItem
::doDuplicateEntries( $ot->getSubjectPage(), $nt->getSubjectPage() );
296 WatchedItem
::doDuplicateEntries( $ot->getTalkPage(), $nt->getTalkPage() );
300 * Handle duplicate entries. Backend for duplicateEntries().
307 private static function doDuplicateEntries( $ot, $nt ) {
308 $oldnamespace = $ot->getNamespace();
309 $newnamespace = $nt->getNamespace();
310 $oldtitle = $ot->getDBkey();
311 $newtitle = $nt->getDBkey();
313 $dbw = wfGetDB( DB_MASTER
);
314 $res = $dbw->select( 'watchlist', 'wl_user',
315 array( 'wl_namespace' => $oldnamespace, 'wl_title' => $oldtitle ),
316 __METHOD__
, 'FOR UPDATE'
318 # Construct array to replace into the watchlist
320 foreach ( $res as $s ) {
322 'wl_user' => $s->wl_user
,
323 'wl_namespace' => $newnamespace,
324 'wl_title' => $newtitle
328 if ( empty( $values ) ) {
334 # Note that multi-row replace is very efficient for MySQL but may be inefficient for
335 # some other DBMSes, mostly due to poor simulation by us
336 $dbw->replace( 'watchlist', array( array( 'wl_user', 'wl_namespace', 'wl_title' ) ), $values, __METHOD__
);