Merge "Http::getProxy() method to get proxy configuration"
[lhc/web/wiklou.git] / includes / api / ApiSetNotificationTimestamp.php
1 <?php
2
3 /**
4 * API for MediaWiki 1.14+
5 *
6 * Created on Jun 18, 2012
7 *
8 * Copyright © 2012 Brad Jorsch
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 *
25 * @file
26 */
27
28 /**
29 * API interface for setting the wl_notificationtimestamp field
30 * @ingroup API
31 */
32 class ApiSetNotificationTimestamp extends ApiBase {
33
34 private $mPageSet;
35
36 public function execute() {
37 $user = $this->getUser();
38
39 if ( $user->isAnon() ) {
40 $this->dieUsage( 'Anonymous users cannot use watchlist change notifications', 'notloggedin' );
41 }
42 if ( !$user->isAllowed( 'editmywatchlist' ) ) {
43 $this->dieUsage( 'You don\'t have permission to edit your watchlist', 'permissiondenied' );
44 }
45
46 $params = $this->extractRequestParams();
47 $this->requireMaxOneParameter( $params, 'timestamp', 'torevid', 'newerthanrevid' );
48
49 $continuationManager = new ApiContinuationManager( $this, [], [] );
50 $this->setContinuationManager( $continuationManager );
51
52 $pageSet = $this->getPageSet();
53 if ( $params['entirewatchlist'] && $pageSet->getDataSource() !== null ) {
54 $this->dieUsage(
55 "Cannot use 'entirewatchlist' at the same time as '{$pageSet->getDataSource()}'",
56 'multisource'
57 );
58 }
59
60 $dbw = wfGetDB( DB_MASTER, 'api' );
61
62 $timestamp = null;
63 if ( isset( $params['timestamp'] ) ) {
64 $timestamp = $dbw->timestamp( $params['timestamp'] );
65 }
66
67 if ( !$params['entirewatchlist'] ) {
68 $pageSet->execute();
69 }
70
71 if ( isset( $params['torevid'] ) ) {
72 if ( $params['entirewatchlist'] || $pageSet->getGoodTitleCount() > 1 ) {
73 $this->dieUsage( 'torevid may only be used with a single page', 'multpages' );
74 }
75 $title = reset( $pageSet->getGoodTitles() );
76 if ( $title ) {
77 $timestamp = Revision::getTimestampFromId(
78 $title, $params['torevid'], Revision::READ_LATEST );
79 if ( $timestamp ) {
80 $timestamp = $dbw->timestamp( $timestamp );
81 } else {
82 $timestamp = null;
83 }
84 }
85 } elseif ( isset( $params['newerthanrevid'] ) ) {
86 if ( $params['entirewatchlist'] || $pageSet->getGoodTitleCount() > 1 ) {
87 $this->dieUsage( 'newerthanrevid may only be used with a single page', 'multpages' );
88 }
89 $title = reset( $pageSet->getGoodTitles() );
90 if ( $title ) {
91 $revid = $title->getNextRevisionID(
92 $params['newerthanrevid'], Title::GAID_FOR_UPDATE );
93 if ( $revid ) {
94 $timestamp = $dbw->timestamp( Revision::getTimestampFromId( $title, $revid ) );
95 } else {
96 $timestamp = null;
97 }
98 }
99 }
100
101 $apiResult = $this->getResult();
102 $result = [];
103 if ( $params['entirewatchlist'] ) {
104 // Entire watchlist mode: Just update the thing and return a success indicator
105 $dbw->update( 'watchlist', [ 'wl_notificationtimestamp' => $timestamp ],
106 [ 'wl_user' => $user->getId() ],
107 __METHOD__
108 );
109
110 $result['notificationtimestamp'] = is_null( $timestamp )
111 ? ''
112 : wfTimestamp( TS_ISO_8601, $timestamp );
113 } else {
114 // First, log the invalid titles
115 foreach ( $pageSet->getInvalidTitlesAndReasons() as $r ) {
116 $r['invalid'] = true;
117 $result[] = $r;
118 }
119 foreach ( $pageSet->getMissingPageIDs() as $p ) {
120 $page = [];
121 $page['pageid'] = $p;
122 $page['missing'] = true;
123 $page['notwatched'] = true;
124 $result[] = $page;
125 }
126 foreach ( $pageSet->getMissingRevisionIDs() as $r ) {
127 $rev = [];
128 $rev['revid'] = $r;
129 $rev['missing'] = true;
130 $rev['notwatched'] = true;
131 $result[] = $rev;
132 }
133
134 if ( $pageSet->getTitles() ) {
135 // Now process the valid titles
136 $lb = new LinkBatch( $pageSet->getTitles() );
137 $dbw->update( 'watchlist', [ 'wl_notificationtimestamp' => $timestamp ],
138 [ 'wl_user' => $user->getId(), $lb->constructSet( 'wl', $dbw ) ],
139 __METHOD__
140 );
141
142 // Query the results of our update
143 $timestamps = [];
144 $res = $dbw->select(
145 'watchlist',
146 [ 'wl_namespace', 'wl_title', 'wl_notificationtimestamp' ],
147 [ 'wl_user' => $user->getId(), $lb->constructSet( 'wl', $dbw ) ],
148 __METHOD__
149 );
150 foreach ( $res as $row ) {
151 $timestamps[$row->wl_namespace][$row->wl_title] = $row->wl_notificationtimestamp;
152 }
153
154 // Now, put the valid titles into the result
155 /** @var $title Title */
156 foreach ( $pageSet->getTitles() as $title ) {
157 $ns = $title->getNamespace();
158 $dbkey = $title->getDBkey();
159 $r = [
160 'ns' => intval( $ns ),
161 'title' => $title->getPrefixedText(),
162 ];
163 if ( !$title->exists() ) {
164 $r['missing'] = true;
165 }
166 if ( isset( $timestamps[$ns] ) && array_key_exists( $dbkey, $timestamps[$ns] ) ) {
167 $r['notificationtimestamp'] = '';
168 if ( $timestamps[$ns][$dbkey] !== null ) {
169 $r['notificationtimestamp'] = wfTimestamp( TS_ISO_8601, $timestamps[$ns][$dbkey] );
170 }
171 } else {
172 $r['notwatched'] = true;
173 }
174 $result[] = $r;
175 }
176 }
177
178 ApiResult::setIndexedTagName( $result, 'page' );
179 }
180 $apiResult->addValue( null, $this->getModuleName(), $result );
181
182 $this->setContinuationManager( null );
183 $continuationManager->setContinuationIntoResult( $apiResult );
184 }
185
186 /**
187 * Get a cached instance of an ApiPageSet object
188 * @return ApiPageSet
189 */
190 private function getPageSet() {
191 if ( !isset( $this->mPageSet ) ) {
192 $this->mPageSet = new ApiPageSet( $this );
193 }
194
195 return $this->mPageSet;
196 }
197
198 public function mustBePosted() {
199 return true;
200 }
201
202 public function isWriteMode() {
203 return true;
204 }
205
206 public function needsToken() {
207 return 'csrf';
208 }
209
210 public function getAllowedParams( $flags = 0 ) {
211 $result = [
212 'entirewatchlist' => [
213 ApiBase::PARAM_TYPE => 'boolean'
214 ],
215 'timestamp' => [
216 ApiBase::PARAM_TYPE => 'timestamp'
217 ],
218 'torevid' => [
219 ApiBase::PARAM_TYPE => 'integer'
220 ],
221 'newerthanrevid' => [
222 ApiBase::PARAM_TYPE => 'integer'
223 ],
224 'continue' => [
225 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
226 ],
227 ];
228 if ( $flags ) {
229 $result += $this->getPageSet()->getFinalParams( $flags );
230 }
231
232 return $result;
233 }
234
235 protected function getExamplesMessages() {
236 return [
237 'action=setnotificationtimestamp&entirewatchlist=&token=123ABC'
238 => 'apihelp-setnotificationtimestamp-example-all',
239 'action=setnotificationtimestamp&titles=Main_page&token=123ABC'
240 => 'apihelp-setnotificationtimestamp-example-page',
241 'action=setnotificationtimestamp&titles=Main_page&' .
242 'timestamp=2012-01-01T00:00:00Z&token=123ABC'
243 => 'apihelp-setnotificationtimestamp-example-pagetimestamp',
244 'action=setnotificationtimestamp&generator=allpages&gapnamespace=2&token=123ABC'
245 => 'apihelp-setnotificationtimestamp-example-allpages',
246 ];
247 }
248
249 public function getHelpUrls() {
250 return 'https://www.mediawiki.org/wiki/API:SetNotificationTimestamp';
251 }
252 }