New infrastructure for actions, as discussed on wikitech-l. Fairly huge commit.
[lhc/web/wiklou.git] / includes / api / ApiWatch.php
1 <?php
2 /**
3 *
4 *
5 * Created on Jan 4, 2008
6 *
7 * Copyright © 2008 Yuri Astrakhan <Firstname><Lastname>@gmail.com,
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( 'ApiBase.php' );
30 }
31
32 /**
33 * API module to allow users to watch a page
34 *
35 * @ingroup API
36 */
37 class ApiWatch extends ApiBase {
38
39 public function __construct( $main, $action ) {
40 parent::__construct( $main, $action );
41 }
42
43 public function execute() {
44 global $wgUser;
45 if ( !$wgUser->isLoggedIn() ) {
46 $this->dieUsage( 'You must be logged-in to have a watchlist', 'notloggedin' );
47 }
48
49 $params = $this->extractRequestParams();
50 $title = Title::newFromText( $params['title'] );
51
52 if ( !$title ) {
53 $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) );
54 }
55
56 $article = new Article( $title );
57 $res = array( 'title' => $title->getPrefixedText() );
58
59 if ( $params['unwatch'] ) {
60 $res['unwatched'] = '';
61 $res['message'] = wfMsgExt( 'removedwatchtext', array( 'parse' ), $title->getPrefixedText() );
62 $success = Action::factory( 'unwatch', $article )->execute();
63 } else {
64 $res['watched'] = '';
65 $res['message'] = wfMsgExt( 'addedwatchtext', array( 'parse' ), $title->getPrefixedText() );
66 $success = Action::factory( 'watch', $article )->execute();
67 }
68 if ( !$success ) {
69 $this->dieUsageMsg( array( 'hookaborted' ) );
70 }
71 $this->getResult()->addValue( null, $this->getModuleName(), $res );
72 }
73
74 public function isWriteMode() {
75 return true;
76 }
77
78 public function getAllowedParams() {
79 return array(
80 'title' => array(
81 ApiBase::PARAM_TYPE => 'string',
82 ApiBase::PARAM_REQUIRED => true
83 ),
84
85 'unwatch' => false,
86 );
87 }
88
89 public function getParamDescription() {
90 return array(
91 'title' => 'The page to (un)watch',
92 'unwatch' => 'If set the page will be unwatched rather than watched',
93 );
94 }
95
96 public function getDescription() {
97 return 'Add or remove a page from/to the current user\'s watchlist';
98 }
99
100 public function getPossibleErrors() {
101 return array_merge( parent::getPossibleErrors(), array(
102 array( 'code' => 'notloggedin', 'info' => 'You must be logged-in to have a watchlist' ),
103 array( 'invalidtitle', 'title' ),
104 array( 'hookaborted' ),
105 ) );
106 }
107
108 protected function getExamples() {
109 return array(
110 'api.php?action=watch&title=Main_Page',
111 'api.php?action=watch&title=Main_Page&unwatch=',
112 );
113 }
114
115 public function getVersion() {
116 return __CLASS__ . ': $Id$';
117 }
118 }