Re-instate most of the revisions for bug 33147 "API examples should explain what...
[lhc/web/wiklou.git] / includes / api / ApiWatch.php
index 87c9a56..4b448d6 100644 (file)
@@ -1,11 +1,10 @@
 <?php
-
-/*
- * Created on Jan 4, 2008
+/**
+ *
  *
- * API for MediaWiki 1.8+
+ * Created on Jan 4, 2008
  *
- * Copyright (C) 2008 Yuri Astrakhan <Firstname><Lastname>@gmail.com,
+ * Copyright © 2008 Yuri Astrakhan <Firstname><Lastname>@gmail.com,
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  *
  * You should have received a copy of the GNU General Public License along
  * with this program; if not, write to the Free Software Foundation, Inc.,
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
  */
 
-if ( !defined( 'MEDIAWIKI' ) ) {
-       // Eclipse helper - will be ignored in production
-       require_once ( 'ApiBase.php' );
-}
-
 /**
  * API module to allow users to watch a page
  *
@@ -36,65 +32,97 @@ if ( !defined( 'MEDIAWIKI' ) ) {
 class ApiWatch extends ApiBase {
 
        public function __construct( $main, $action ) {
-               parent :: __construct( $main, $action );
+               parent::__construct( $main, $action );
        }
 
        public function execute() {
-               global $wgUser;
-               if ( !$wgUser->isLoggedIn() )
+               $user = $this->getUser();
+               if ( !$user->isLoggedIn() ) {
                        $this->dieUsage( 'You must be logged-in to have a watchlist', 'notloggedin' );
+               }
+
                $params = $this->extractRequestParams();
                $title = Title::newFromText( $params['title'] );
-               if ( !$title )
+
+               if ( !$title || $title->getNamespace() < 0 ) {
                        $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) );
-               $article = new Article( $title );
+               }
+
                $res = array( 'title' => $title->getPrefixedText() );
-               if ( $params['unwatch'] )
-               {
+
+               if ( $params['unwatch'] ) {
                        $res['unwatched'] = '';
-                       $success = $article->doUnwatch();
-               }
-               else
-               {
+                       $res['message'] = wfMsgExt( 'removedwatchtext', array( 'parse' ), $title->getPrefixedText() );
+                       $success = UnwatchAction::doUnwatch( $title, $user );
+               } else {
                        $res['watched'] = '';
-                       $success = $article->doWatch();
+                       $res['message'] = wfMsgExt( 'addedwatchtext', array( 'parse' ), $title->getPrefixedText() );
+                       $success = WatchAction::doWatch( $title, $user );
+               }
+               if ( !$success ) {
+                       $this->dieUsageMsg( 'hookaborted' );
                }
-               if ( !$success )
-                       $this->dieUsageMsg( array( 'hookaborted' ) );
                $this->getResult()->addValue( null, $this->getModuleName(), $res );
        }
 
+       public function mustBePosted() {
+               return true;
+       }
+
        public function isWriteMode() {
                return true;
        }
 
+       public function needsToken() {
+               return true;
+       }
+
+       public function getTokenSalt() {
+               return 'watch';
+       }
+
        public function getAllowedParams() {
-               return array (
-                       'title' => null,
+               return array(
+                       'title' => array(
+                               ApiBase::PARAM_TYPE => 'string',
+                               ApiBase::PARAM_REQUIRED => true
+                       ),
                        'unwatch' => false,
+                       'token' => null,
                );
        }
 
        public function getParamDescription() {
-               return array (
+               return array(
                        'title' => 'The page to (un)watch',
                        'unwatch' => 'If set the page will be unwatched rather than watched',
+                       'token' => 'A token previously acquired via prop=info',
                );
        }
 
        public function getDescription() {
-               return array (
-                       'Add or remove a page from/to the current user\'s watchlist'
-               );
+               return 'Add or remove a page from/to the current user\'s watchlist';
        }
 
-       protected function getExamples() {
+       public function getPossibleErrors() {
+               return array_merge( parent::getPossibleErrors(), array(
+                       array( 'code' => 'notloggedin', 'info' => 'You must be logged-in to have a watchlist' ),
+                       array( 'invalidtitle', 'title' ),
+                       array( 'hookaborted' ),
+               ) );
+       }
+
+       public function getExamples() {
                return array(
-                       'api.php?action=watch&title=Main_Page',
-                       'api.php?action=watch&title=Main_Page&unwatch',
+                       'api.php?action=watch&title=Main_Page' => 'Watch the page "Main Page"',
+                       'api.php?action=watch&title=Main_Page&unwatch=' => 'Unwatch the page "Main Page"',
                );
        }
 
+       public function getHelpUrls() {
+               return 'https://www.mediawiki.org/wiki/API:Watch';
+       }
+
        public function getVersion() {
                return __CLASS__ . ': $Id$';
        }