MediaWiki REL1_33
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->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
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
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}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
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:2105
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition ApiBase.php:721
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition ApiBase.php:1990
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:686
getResult()
Get the result object.
Definition ApiBase.php:632
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:743
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:913
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:512
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:2340
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:1779
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