Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / includes / api / ApiSetNotificationTimestamp.php
1 <?php
2
3 /**
4 * API for MediaWiki 1.14+
5 *
6 * Copyright © 2012 Wikimedia Foundation and contributors
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 */
25
26 use MediaWiki\MediaWikiServices;
27
28 /**
29 * API interface for setting the wl_notificationtimestamp field
30 * @ingroup API
31 */
32 class ApiSetNotificationTimestamp extends ApiBase {
33
34 private $mPageSet = null;
35
36 public function execute() {
37 $user = $this->getUser();
38
39 if ( $user->isAnon() ) {
40 $this->dieWithError( 'watchlistanontext', 'notloggedin' );
41 }
42 $this->checkUserRightsAny( 'editmywatchlist' );
43
44 $params = $this->extractRequestParams();
45 $this->requireMaxOneParameter( $params, 'timestamp', 'torevid', 'newerthanrevid' );
46
47 $continuationManager = new ApiContinuationManager( $this, [], [] );
48 $this->setContinuationManager( $continuationManager );
49
50 $pageSet = $this->getPageSet();
51 if ( $params['entirewatchlist'] && $pageSet->getDataSource() !== null ) {
52 $this->dieWithError(
53 [
54 'apierror-invalidparammix-cannotusewith',
55 $this->encodeParamName( 'entirewatchlist' ),
56 $pageSet->encodeParamName( $pageSet->getDataSource() )
57 ],
58 'multisource'
59 );
60 }
61
62 $dbw = wfGetDB( DB_MASTER, 'api' );
63
64 $timestamp = null;
65 if ( isset( $params['timestamp'] ) ) {
66 $timestamp = $dbw->timestamp( $params['timestamp'] );
67 }
68
69 if ( !$params['entirewatchlist'] ) {
70 $pageSet->execute();
71 }
72
73 if ( isset( $params['torevid'] ) ) {
74 if ( $params['entirewatchlist'] || $pageSet->getGoodTitleCount() > 1 ) {
75 $this->dieWithError( [ 'apierror-multpages', $this->encodeParamName( 'torevid' ) ] );
76 }
77 $titles = $pageSet->getGoodTitles();
78 $title = reset( $titles );
79 if ( $title ) {
80 $timestamp = MediaWikiServices::getInstance()->getRevisionStore()
81 ->getTimestampFromId( $title, $params['torevid'], IDBAccessObject::READ_LATEST );
82 if ( $timestamp ) {
83 $timestamp = $dbw->timestamp( $timestamp );
84 } else {
85 $timestamp = null;
86 }
87 }
88 } elseif ( isset( $params['newerthanrevid'] ) ) {
89 if ( $params['entirewatchlist'] || $pageSet->getGoodTitleCount() > 1 ) {
90 $this->dieWithError( [ 'apierror-multpages', $this->encodeParamName( 'newerthanrevid' ) ] );
91 }
92 $titles = $pageSet->getGoodTitles();
93 $title = reset( $titles );
94 if ( $title ) {
95 $revid = $title->getNextRevisionID( $params['newerthanrevid'], Title::GAID_FOR_UPDATE );
96 if ( $revid ) {
97 $timestamp = $dbw->timestamp(
98 MediaWikiServices::getInstance()->getRevisionStore()->getTimestampFromId( $title, $revid )
99 );
100 } else {
101 $timestamp = null;
102 }
103 }
104 }
105
106 $watchedItemStore = MediaWikiServices::getInstance()->getWatchedItemStore();
107 $apiResult = $this->getResult();
108 $result = [];
109 if ( $params['entirewatchlist'] ) {
110 // Entire watchlist mode: Just update the thing and return a success indicator
111 $watchedItemStore->resetAllNotificationTimestampsForUser( $user, $timestamp );
112
113 $result['notificationtimestamp'] = is_null( $timestamp )
114 ? ''
115 : wfTimestamp( TS_ISO_8601, $timestamp );
116 } else {
117 // First, log the invalid titles
118 foreach ( $pageSet->getInvalidTitlesAndReasons() as $r ) {
119 $r['invalid'] = true;
120 $result[] = $r;
121 }
122 foreach ( $pageSet->getMissingPageIDs() as $p ) {
123 $page = [];
124 $page['pageid'] = $p;
125 $page['missing'] = true;
126 $page['notwatched'] = true;
127 $result[] = $page;
128 }
129 foreach ( $pageSet->getMissingRevisionIDs() as $r ) {
130 $rev = [];
131 $rev['revid'] = $r;
132 $rev['missing'] = true;
133 $rev['notwatched'] = true;
134 $result[] = $rev;
135 }
136
137 if ( $pageSet->getTitles() ) {
138 // Now process the valid titles
139 $watchedItemStore->setNotificationTimestampsForUser(
140 $user,
141 $timestamp,
142 $pageSet->getTitles()
143 );
144
145 // Query the results of our update
146 $timestamps = $watchedItemStore->getNotificationTimestampsBatch(
147 $user,
148 $pageSet->getTitles()
149 );
150
151 // Now, put the valid titles into the result
152 /** @var Title $title */
153 foreach ( $pageSet->getTitles() as $title ) {
154 $ns = $title->getNamespace();
155 $dbkey = $title->getDBkey();
156 $r = [
157 'ns' => (int)$ns,
158 'title' => $title->getPrefixedText(),
159 ];
160 if ( !$title->exists() ) {
161 $r['missing'] = true;
162 if ( $title->isKnown() ) {
163 $r['known'] = true;
164 }
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 ( $this->mPageSet === null ) {
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/Special:MyLanguage/API:SetNotificationTimestamp';
251 }
252 }