MediaWiki REL1_32
ApiSetNotificationTimestamp.php
Go to the documentation of this file.
1<?php
2
27
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
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->setNotificationTimestampsForUser(
112 $user,
113 $timestamp
114 );
115
116 $result['notificationtimestamp'] = is_null( $timestamp )
117 ? ''
118 : wfTimestamp( TS_ISO_8601, $timestamp );
119 } else {
120 // First, log the invalid titles
121 foreach ( $pageSet->getInvalidTitlesAndReasons() as $r ) {
122 $r['invalid'] = true;
123 $result[] = $r;
124 }
125 foreach ( $pageSet->getMissingPageIDs() as $p ) {
126 $page = [];
127 $page['pageid'] = $p;
128 $page['missing'] = true;
129 $page['notwatched'] = true;
130 $result[] = $page;
131 }
132 foreach ( $pageSet->getMissingRevisionIDs() as $r ) {
133 $rev = [];
134 $rev['revid'] = $r;
135 $rev['missing'] = true;
136 $rev['notwatched'] = true;
137 $result[] = $rev;
138 }
139
140 if ( $pageSet->getTitles() ) {
141 // Now process the valid titles
142 $watchedItemStore->setNotificationTimestampsForUser(
143 $user,
144 $timestamp,
145 $pageSet->getTitles()
146 );
147
148 // Query the results of our update
149 $timestamps = $watchedItemStore->getNotificationTimestampsBatch(
150 $user,
151 $pageSet->getTitles()
152 );
153
154 // Now, put the valid titles into the result
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 if ( $title->isKnown() ) {
166 $r['known'] = true;
167 }
168 }
169 if ( isset( $timestamps[$ns] ) && array_key_exists( $dbkey, $timestamps[$ns] ) ) {
170 $r['notificationtimestamp'] = '';
171 if ( $timestamps[$ns][$dbkey] !== null ) {
172 $r['notificationtimestamp'] = wfTimestamp( TS_ISO_8601, $timestamps[$ns][$dbkey] );
173 }
174 } else {
175 $r['notwatched'] = true;
176 }
177 $result[] = $r;
178 }
179 }
180
181 ApiResult::setIndexedTagName( $result, 'page' );
182 }
183 $apiResult->addValue( null, $this->getModuleName(), $result );
184
185 $this->setContinuationManager( null );
186 $continuationManager->setContinuationIntoResult( $apiResult );
187 }
188
193 private function getPageSet() {
194 if ( $this->mPageSet === null ) {
195 $this->mPageSet = new ApiPageSet( $this );
196 }
197
198 return $this->mPageSet;
199 }
200
201 public function mustBePosted() {
202 return true;
203 }
204
205 public function isWriteMode() {
206 return true;
207 }
208
209 public function needsToken() {
210 return 'csrf';
211 }
212
213 public function getAllowedParams( $flags = 0 ) {
214 $result = [
215 'entirewatchlist' => [
216 ApiBase::PARAM_TYPE => 'boolean'
217 ],
218 'timestamp' => [
219 ApiBase::PARAM_TYPE => 'timestamp'
220 ],
221 'torevid' => [
222 ApiBase::PARAM_TYPE => 'integer'
223 ],
224 'newerthanrevid' => [
225 ApiBase::PARAM_TYPE => 'integer'
226 ],
227 'continue' => [
228 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
229 ],
230 ];
231 if ( $flags ) {
232 $result += $this->getPageSet()->getFinalParams( $flags );
233 }
234
235 return $result;
236 }
237
238 protected function getExamplesMessages() {
239 return [
240 'action=setnotificationtimestamp&entirewatchlist=&token=123ABC'
241 => 'apihelp-setnotificationtimestamp-example-all',
242 'action=setnotificationtimestamp&titles=Main_page&token=123ABC'
243 => 'apihelp-setnotificationtimestamp-example-page',
244 'action=setnotificationtimestamp&titles=Main_page&' .
245 'timestamp=2012-01-01T00:00:00Z&token=123ABC'
246 => 'apihelp-setnotificationtimestamp-example-pagetimestamp',
247 'action=setnotificationtimestamp&generator=allpages&gapnamespace=2&token=123ABC'
248 => 'apihelp-setnotificationtimestamp-example-allpages',
249 ];
250 }
251
252 public function getHelpUrls() {
253 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:SetNotificationTimestamp';
254 }
255}
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
This abstract class implements many basic API functions, and is the base of all API classes.
Definition ApiBase.php:37
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
Definition ApiBase.php:2095
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition ApiBase.php:748
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition ApiBase.php:1987
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:87
setContinuationManager(ApiContinuationManager $manager=null)
Set the continuation manager.
Definition ApiBase.php:713
getResult()
Get the result object.
Definition ApiBase.php:659
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:770
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:939
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:124
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:539
This manages continuation state.
This class contains a list of pages that the client has requested.
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
API interface for setting the wl_notificationtimestamp field.
getExamplesMessages()
Returns usage examples for this module.
getPageSet()
Get a cached instance of an ApiPageSet object.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getHelpUrls()
Return links to more detailed help pages about the module.
mustBePosted()
Indicates whether this module must be called with a POST request.
needsToken()
Returns the token type this module requires in order to execute.
isWriteMode()
Indicates whether this module requires write mode.
MediaWikiServices is the service locator for the application scope of MediaWiki.
namespace being checked & $result
Definition hooks.txt:2385
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1818
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
Definition linkcache.txt:17
const DB_MASTER
Definition defines.php:26
$params