Merge "Move up devunt's name to Developers"
[lhc/web/wiklou.git] / includes / actions / WatchAction.php
1 <?php
2 /**
3 * Performs the watch actions on a page
4 *
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.
9 *
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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18 *
19 * @file
20 * @ingroup Actions
21 */
22
23 /**
24 * Page addition to a user's watchlist
25 *
26 * @ingroup Actions
27 */
28 class WatchAction extends FormAction {
29
30 public function getName() {
31 return 'watch';
32 }
33
34 public function requiresUnblock() {
35 return false;
36 }
37
38 /**
39 * @return string HTML
40 */
41 protected function getDescription() {
42 return $this->msg( 'addwatch' )->escaped();
43 }
44
45 public function onSubmit( $data ) {
46 self::doWatch( $this->getTitle(), $this->getUser() );
47
48 return true;
49 }
50
51 protected function checkCanExecute( User $user ) {
52 // Must be logged in
53 if ( $user->isAnon() ) {
54 throw new UserNotLoggedIn( 'watchlistanontext', 'watchnologin' );
55 }
56
57 parent::checkCanExecute( $user );
58 }
59
60 protected function alterForm( HTMLForm $form ) {
61 $form->setSubmitTextMsg( 'confirm-watch-button' );
62 $form->setTokenSalt( 'watch' );
63 }
64
65 protected function preText() {
66 return $this->msg( 'confirm-watch-top' )->parse();
67 }
68
69 public function onSuccess() {
70 $msgKey = $this->getTitle()->isTalkPage() ? 'addedwatchtext-talk' : 'addedwatchtext';
71 $this->getOutput()->addWikiMsg( $msgKey, $this->getTitle()->getPrefixedText() );
72 }
73
74 /* Static utility methods */
75
76 /**
77 * Watch or unwatch a page
78 * @since 1.22
79 * @param bool $watch Whether to watch or unwatch the page
80 * @param Title $title Page to watch/unwatch
81 * @param User $user User who is watching/unwatching
82 * @return Status
83 */
84 public static function doWatchOrUnwatch( $watch, Title $title, User $user ) {
85 if ( $user->isLoggedIn() &&
86 $user->isWatched( $title, User::IGNORE_USER_RIGHTS ) != $watch
87 ) {
88 // If the user doesn't have 'editmywatchlist', we still want to
89 // allow them to add but not remove items via edits and such.
90 if ( $watch ) {
91 return self::doWatch( $title, $user, User::IGNORE_USER_RIGHTS );
92 } else {
93 return self::doUnwatch( $title, $user );
94 }
95 }
96
97 return Status::newGood();
98 }
99
100 /**
101 * Watch a page
102 * @since 1.22 Returns Status, $checkRights parameter added
103 * @param Title $title Page to watch/unwatch
104 * @param User $user User who is watching/unwatching
105 * @param bool $checkRights Passed through to $user->addWatch()
106 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
107 * @return Status
108 */
109 public static function doWatch(
110 Title $title,
111 User $user,
112 $checkRights = User::CHECK_USER_RIGHTS
113 ) {
114 if ( $checkRights && !$user->isAllowed( 'editmywatchlist' ) ) {
115 return User::newFatalPermissionDeniedStatus( 'editmywatchlist' );
116 }
117
118 $page = WikiPage::factory( $title );
119
120 $status = Status::newFatal( 'hookaborted' );
121 if ( Hooks::run( 'WatchArticle', [ &$user, &$page, &$status ] ) ) {
122 $status = Status::newGood();
123 $user->addWatch( $title, $checkRights );
124 Hooks::run( 'WatchArticleComplete', [ &$user, &$page ] );
125 }
126
127 return $status;
128 }
129
130 /**
131 * Unwatch a page
132 * @since 1.22 Returns Status
133 * @param Title $title Page to watch/unwatch
134 * @param User $user User who is watching/unwatching
135 * @return Status
136 */
137 public static function doUnwatch( Title $title, User $user ) {
138 if ( !$user->isAllowed( 'editmywatchlist' ) ) {
139 return User::newFatalPermissionDeniedStatus( 'editmywatchlist' );
140 }
141
142 $page = WikiPage::factory( $title );
143
144 $status = Status::newFatal( 'hookaborted' );
145 if ( Hooks::run( 'UnwatchArticle', [ &$user, &$page, &$status ] ) ) {
146 $status = Status::newGood();
147 $user->removeWatch( $title );
148 Hooks::run( 'UnwatchArticleComplete', [ &$user, &$page ] );
149 }
150
151 return $status;
152 }
153
154 /**
155 * Get token to watch (or unwatch) a page for a user
156 *
157 * @param Title $title Title object of page to watch
158 * @param User $user User for whom the action is going to be performed
159 * @param string $action Optionally override the action to 'unwatch'
160 * @return string Token
161 * @since 1.18
162 */
163 public static function getWatchToken( Title $title, User $user, $action = 'watch' ) {
164 if ( $action != 'unwatch' ) {
165 $action = 'watch';
166 }
167 // Match ApiWatch and ResourceLoaderUserTokensModule
168 return $user->getEditToken( $action );
169 }
170
171 /**
172 * Get token to unwatch (or watch) a page for a user
173 *
174 * @param Title $title Title object of page to unwatch
175 * @param User $user User for whom the action is going to be performed
176 * @param string $action Optionally override the action to 'watch'
177 * @return string Token
178 * @since 1.18
179 */
180 public static function getUnwatchToken( Title $title, User $user, $action = 'unwatch' ) {
181 return self::getWatchToken( $title, $user, $action );
182 }
183
184 public function doesWrites() {
185 return true;
186 }
187 }