4 * API for MediaWiki 1.14+
6 * Created on Jun 18, 2012
8 * Copyright © 2012 Brad Jorsch
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.
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.
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
29 * API interface for setting the wl_notificationtimestamp field
32 class ApiSetNotificationTimestamp
extends ApiBase
{
36 public function execute() {
37 $user = $this->getUser();
39 if ( $user->isAnon() ) {
40 $this->dieUsage( 'Anonymous users cannot use watchlist change notifications', 'notloggedin' );
42 if ( !$user->isAllowed( 'editmywatchlist' ) ) {
43 $this->dieUsage( 'You don\'t have permission to edit your watchlist', 'permissiondenied' );
46 $params = $this->extractRequestParams();
47 $this->requireMaxOneParameter( $params, 'timestamp', 'torevid', 'newerthanrevid' );
49 $continuationManager = new ApiContinuationManager( $this, array(), array() );
50 $this->setContinuationManager( $continuationManager );
52 $pageSet = $this->getPageSet();
53 if ( $params['entirewatchlist'] && $pageSet->getDataSource() !== null ) {
55 "Cannot use 'entirewatchlist' at the same time as '{$pageSet->getDataSource()}'",
60 $dbw = wfGetDB( DB_MASTER
, 'api' );
63 if ( isset( $params['timestamp'] ) ) {
64 $timestamp = $dbw->timestamp( $params['timestamp'] );
67 if ( !$params['entirewatchlist'] ) {
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' );
75 $title = reset( $pageSet->getGoodTitles() );
77 $timestamp = Revision
::getTimestampFromId(
78 $title, $params['torevid'], Revision
::READ_LATEST
);
80 $timestamp = $dbw->timestamp( $timestamp );
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' );
89 $title = reset( $pageSet->getGoodTitles() );
91 $revid = $title->getNextRevisionID(
92 $params['newerthanrevid'], Title
::GAID_FOR_UPDATE
);
94 $timestamp = $dbw->timestamp( Revision
::getTimestampFromId( $title, $revid ) );
101 $apiResult = $this->getResult();
103 if ( $params['entirewatchlist'] ) {
104 // Entire watchlist mode: Just update the thing and return a success indicator
105 $dbw->update( 'watchlist', array( 'wl_notificationtimestamp' => $timestamp ),
106 array( 'wl_user' => $user->getId() ),
110 $result['notificationtimestamp'] = is_null( $timestamp )
112 : wfTimestamp( TS_ISO_8601
, $timestamp );
114 // First, log the invalid titles
115 foreach ( $pageSet->getInvalidTitlesAndReasons() as $r ) {
116 $r['invalid'] = true;
119 foreach ( $pageSet->getMissingPageIDs() as $p ) {
121 $page['pageid'] = $p;
122 $page['missing'] = true;
123 $page['notwatched'] = true;
126 foreach ( $pageSet->getMissingRevisionIDs() as $r ) {
129 $rev['missing'] = true;
130 $rev['notwatched'] = true;
134 if ( $pageSet->getTitles() ) {
135 // Now process the valid titles
136 $lb = new LinkBatch( $pageSet->getTitles() );
137 $dbw->update( 'watchlist', array( 'wl_notificationtimestamp' => $timestamp ),
138 array( 'wl_user' => $user->getId(), $lb->constructSet( 'wl', $dbw ) ),
142 // Query the results of our update
143 $timestamps = array();
146 array( 'wl_namespace', 'wl_title', 'wl_notificationtimestamp' ),
147 array( 'wl_user' => $user->getId(), $lb->constructSet( 'wl', $dbw ) ),
150 foreach ( $res as $row ) {
151 $timestamps[$row->wl_namespace
][$row->wl_title
] = $row->wl_notificationtimestamp
;
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();
160 'ns' => intval( $ns ),
161 'title' => $title->getPrefixedText(),
163 if ( !$title->exists() ) {
164 $r['missing'] = true;
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] );
172 $r['notwatched'] = true;
178 ApiResult
::setIndexedTagName( $result, 'page' );
180 $apiResult->addValue( null, $this->getModuleName(), $result );
182 $this->setContinuationManager( null );
183 $continuationManager->setContinuationIntoResult( $apiResult );
187 * Get a cached instance of an ApiPageSet object
190 private function getPageSet() {
191 if ( !isset( $this->mPageSet
) ) {
192 $this->mPageSet
= new ApiPageSet( $this );
195 return $this->mPageSet
;
198 public function mustBePosted() {
202 public function isWriteMode() {
206 public function needsToken() {
210 public function getAllowedParams( $flags = 0 ) {
212 'entirewatchlist' => array(
213 ApiBase
::PARAM_TYPE
=> 'boolean'
215 'timestamp' => array(
216 ApiBase
::PARAM_TYPE
=> 'timestamp'
219 ApiBase
::PARAM_TYPE
=> 'integer'
221 'newerthanrevid' => array(
222 ApiBase
::PARAM_TYPE
=> 'integer'
225 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
229 $result +
= $this->getPageSet()->getFinalParams( $flags );
235 protected function getExamplesMessages() {
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',
249 public function getHelpUrls() {
250 return 'https://www.mediawiki.org/wiki/API:SetNotificationTimestamp';