3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
23 * Representation of a pair of user and title for watchlist entries.
25 * @author Tim Starling
33 * @deprecated since 1.27, see User::IGNORE_USER_RIGHTS
35 const IGNORE_USER_RIGHTS
= User
::IGNORE_USER_RIGHTS
;
38 * @deprecated since 1.27, see User::CHECK_USER_RIGHTS
40 const CHECK_USER_RIGHTS
= User
::CHECK_USER_RIGHTS
;
43 * @deprecated Internal class use only
45 const DEPRECATED_USAGE_TIMESTAMP
= -100;
49 * @deprecated Internal class use only
51 public $checkRights = User
::CHECK_USER_RIGHTS
;
55 * @deprecated Internal class use only
70 * @var null|string the value of the wl_notificationtimestamp field
72 private $notificationTimestamp;
76 * @param LinkTarget $linkTarget
77 * @param null|string $notificationTimestamp the value of the wl_notificationtimestamp field
78 * @param bool|null $checkRights DO NOT USE - used internally for backward compatibility
80 public function __construct(
82 LinkTarget
$linkTarget,
83 $notificationTimestamp,
87 $this->linkTarget
= $linkTarget;
88 $this->notificationTimestamp
= $notificationTimestamp;
89 if ( $checkRights !== null ) {
90 $this->checkRights
= $checkRights;
97 public function getUser() {
104 public function getLinkTarget() {
105 return $this->linkTarget
;
109 * Get the notification timestamp of this entry.
111 * @return bool|null|string
113 public function getNotificationTimestamp() {
114 // Back compat for objects constructed using self::fromUserTitle
115 if ( $this->notificationTimestamp
=== self
::DEPRECATED_USAGE_TIMESTAMP
) {
116 // wfDeprecated( __METHOD__, '1.27' );
117 if ( $this->checkRights
&& !$this->user
->isAllowed( 'viewmywatchlist' ) ) {
120 $item = WatchedItemStore
::getDefaultInstance()
121 ->loadWatchedItem( $this->user
, $this->linkTarget
);
123 $this->notificationTimestamp
= $item->getNotificationTimestamp();
125 $this->notificationTimestamp
= false;
128 return $this->notificationTimestamp
;
132 * Back compat pre 1.27 with the WatchedItemStore introduction
133 * @todo remove in 1.28/9
134 * -------------------------------------------------
139 * @deprecated Internal class use only
141 public function getTitle() {
142 if ( !$this->title
) {
143 $this->title
= Title
::newFromLinkTarget( $this->linkTarget
);
149 * @deprecated since 1.27 Use the constructor, WatchedItemStore::getWatchedItem()
150 * or WatchedItemStore::loadWatchedItem()
152 public static function fromUserTitle( $user, $title, $checkRights = User
::CHECK_USER_RIGHTS
) {
153 // wfDeprecated( __METHOD__, '1.27' );
154 return new self( $user, $title, self
::DEPRECATED_USAGE_TIMESTAMP
, (bool)$checkRights );
158 * @deprecated since 1.27 Use WatchedItemStore::resetNotificationTimestamp()
160 public function resetNotificationTimestamp( $force = '', $oldid = 0 ) {
161 // wfDeprecated( __METHOD__, '1.27' );
162 if ( $this->checkRights
&& !$this->user
->isAllowed( 'editmywatchlist' ) ) {
165 WatchedItemStore
::getDefaultInstance()->resetNotificationTimestamp(
174 * @deprecated since 1.27 Use WatchedItemStore::addWatchBatch()
176 public static function batchAddWatch( array $items ) {
177 // wfDeprecated( __METHOD__, '1.27' );
184 /** @var WatchedItem $watchedItem */
185 foreach ( $items as $watchedItem ) {
186 $user = $watchedItem->getUser();
187 if ( $watchedItem->checkRights
&& !$user->isAllowed( 'editmywatchlist' ) ) {
190 $userId = $user->getId();
191 $users[$userId] = $user;
192 $targets[$userId][] = $watchedItem->getTitle()->getSubjectPage();
193 $targets[$userId][] = $watchedItem->getTitle()->getTalkPage();
196 $store = WatchedItemStore
::getDefaultInstance();
198 foreach ( $users as $userId => $user ) {
199 $success &= $store->addWatchBatchForUser( $user, $targets[$userId] );
206 * @deprecated since 1.27 Use User::addWatch()
209 public function addWatch() {
210 // wfDeprecated( __METHOD__, '1.27' );
211 $this->user
->addWatch( $this->getTitle(), $this->checkRights
);
216 * @deprecated since 1.27 Use User::removeWatch()
219 public function removeWatch() {
220 // wfDeprecated( __METHOD__, '1.27' );
221 if ( $this->checkRights
&& !$this->user
->isAllowed( 'editmywatchlist' ) ) {
224 $this->user
->removeWatch( $this->getTitle(), $this->checkRights
);
229 * @deprecated since 1.27 Use User::isWatched()
232 public function isWatched() {
233 // wfDeprecated( __METHOD__, '1.27' );
234 return $this->user
->isWatched( $this->getTitle(), $this->checkRights
);
238 * @deprecated since 1.27 Use WatchedItemStore::duplicateAllAssociatedEntries()
240 public static function duplicateEntries( Title
$oldTitle, Title
$newTitle ) {
241 // wfDeprecated( __METHOD__, '1.27' );
242 $store = WatchedItemStore
::getDefaultInstance();
243 $store->duplicateAllAssociatedEntries( $oldTitle, $newTitle );