Standardised file description headers, added @file
[lhc/web/wiklou.git] / includes / api / ApiProtect.php
1 <?php
2 /**
3 * API for MediaWiki 1.8+
4 *
5 * Created on Sep 1, 2007
6 *
7 * Copyright © 2007 Roan Kattouw <Firstname>.<Lastname>@home.nl
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 * @ingroup API
34 */
35 class ApiProtect extends ApiBase {
36
37 public function __construct( $main, $action ) {
38 parent::__construct( $main, $action );
39 }
40
41 public function execute() {
42 global $wgUser, $wgRestrictionLevels;
43 $params = $this->extractRequestParams();
44
45 $titleObj = null;
46
47 $titleObj = Title::newFromText( $params['title'] );
48 if ( !$titleObj ) {
49 $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) );
50 }
51
52 $errors = $titleObj->getUserPermissionsErrors( 'protect', $wgUser );
53 if ( $errors ) {
54 // We don't care about multiple errors, just report one of them
55 $this->dieUsageMsg( reset( $errors ) );
56 }
57
58 $expiry = (array)$params['expiry'];
59 if ( count( $expiry ) != count( $params['protections'] ) ) {
60 if ( count( $expiry ) == 1 ) {
61 $expiry = array_fill( 0, count( $params['protections'] ), $expiry[0] );
62 } else {
63 $this->dieUsageMsg( array( 'toofewexpiries', count( $expiry ), count( $params['protections'] ) ) );
64 }
65 }
66
67 $restrictionTypes = $titleObj->getRestrictionTypes();
68
69 $protections = array();
70 $expiryarray = array();
71 $resultProtections = array();
72 foreach ( $params['protections'] as $i => $prot ) {
73 $p = explode( '=', $prot );
74 $protections[$p[0]] = ( $p[1] == 'all' ? '' : $p[1] );
75
76 if ( $titleObj->exists() && $p[0] == 'create' ) {
77 $this->dieUsageMsg( array( 'create-titleexists' ) );
78 }
79 if ( !$titleObj->exists() && $p[0] != 'create' ) {
80 $this->dieUsageMsg( array( 'missingtitle-createonly' ) );
81 }
82
83 if ( !in_array( $p[0], $restrictionTypes ) && $p[0] != 'create' ) {
84 $this->dieUsageMsg( array( 'protect-invalidaction', $p[0] ) );
85 }
86 if ( !in_array( $p[1], $wgRestrictionLevels ) && $p[1] != 'all' ) {
87 $this->dieUsageMsg( array( 'protect-invalidlevel', $p[1] ) );
88 }
89
90 if ( in_array( $expiry[$i], array( 'infinite', 'indefinite', 'never' ) ) ) {
91 $expiryarray[$p[0]] = Block::infinity();
92 } else {
93 $exp = strtotime( $expiry[$i] );
94 if ( $exp < 0 || !$exp ) {
95 $this->dieUsageMsg( array( 'invalidexpiry', $expiry[$i] ) );
96 }
97
98 $exp = wfTimestamp( TS_MW, $exp );
99 if ( $exp < wfTimestampNow() ) {
100 $this->dieUsageMsg( array( 'pastexpiry', $expiry[$i] ) );
101 }
102 $expiryarray[$p[0]] = $exp;
103 }
104 $resultProtections[] = array( $p[0] => $protections[$p[0]],
105 'expiry' => ( $expiryarray[$p[0]] == Block::infinity() ?
106 'infinite' :
107 wfTimestamp( TS_ISO_8601, $expiryarray[$p[0]] ) ) );
108 }
109
110 $cascade = $params['cascade'];
111 $articleObj = new Article( $titleObj );
112
113 $watch = $params['watch'] ? 'watch' : $params['watchlist'];
114 $this->setWatch( $watch, $titleObj );
115
116 if ( $titleObj->exists() ) {
117 $ok = $articleObj->updateRestrictions( $protections, $params['reason'], $cascade, $expiryarray );
118 } else {
119 $ok = $titleObj->updateTitleProtection( $protections['create'], $params['reason'], $expiryarray['create'] );
120 }
121 if ( !$ok ) {
122 // This is very weird. Maybe the article was deleted or the user was blocked/desysopped in the meantime?
123 // Just throw an unknown error in this case, as it's very likely to be a race condition
124 $this->dieUsageMsg( array() );
125 }
126 $res = array(
127 'title' => $titleObj->getPrefixedText(),
128 'reason' => $params['reason']
129 );
130 if ( $cascade ) {
131 $res['cascade'] = '';
132 }
133 $res['protections'] = $resultProtections;
134 $this->getResult()->setIndexedTagName( $res['protections'], 'protection' );
135 $this->getResult()->addValue( null, $this->getModuleName(), $res );
136 }
137
138 public function mustBePosted() {
139 return true;
140 }
141
142 public function isWriteMode() {
143 return true;
144 }
145
146 public function getAllowedParams() {
147 return array(
148 'title' => array(
149 ApiBase::PARAM_TYPE => 'string',
150 ApiBase::PARAM_REQUIRED => true
151 ),
152 'token' => null,
153 'protections' => array(
154 ApiBase::PARAM_ISMULTI => true,
155 ApiBase::PARAM_REQUIRED => true,
156 ),
157 'expiry' => array(
158 ApiBase::PARAM_ISMULTI => true,
159 ApiBase::PARAM_ALLOW_DUPLICATES => true,
160 ApiBase::PARAM_DFLT => 'infinite',
161 ),
162 'reason' => '',
163 'cascade' => false,
164 'watch' => array(
165 ApiBase::PARAM_DFLT => false,
166 ApiBase::PARAM_DEPRECATED => true,
167 ),
168 'watchlist' => array(
169 ApiBase::PARAM_DFLT => 'preferences',
170 ApiBase::PARAM_TYPE => array(
171 'watch',
172 'unwatch',
173 'preferences',
174 'nochange'
175 ),
176 ),
177 );
178 }
179
180 public function getParamDescription() {
181 return array(
182 'title' => 'Title of the page you want to (un)protect',
183 'token' => 'A protect token previously retrieved through prop=info',
184 'protections' => 'Pipe-separated list of protection levels, formatted action=group (e.g. edit=sysop)',
185 'expiry' => array( 'Expiry timestamps. If only one timestamp is set, it\'ll be used for all protections.',
186 'Use \'infinite\', \'indefinite\' or \'never\', for a neverexpiring protection.' ),
187 'reason' => 'Reason for (un)protecting (optional)',
188 'cascade' => array( 'Enable cascading protection (i.e. protect pages included in this page)',
189 'Ignored if not all protection levels are \'sysop\' or \'protect\'' ),
190 'watch' => 'If set, add the page being (un)protected to your watchlist',
191 'watchlist' => 'Unconditionally add or remove the page from your watchlist, use preferences or do not change watch',
192 );
193 }
194
195 public function getDescription() {
196 return 'Change the protection level of a page';
197 }
198
199 public function getPossibleErrors() {
200 return array_merge( parent::getPossibleErrors(), array(
201 array( 'invalidtitle', 'title' ),
202 array( 'toofewexpiries', 'noofexpiries', 'noofprotections' ),
203 array( 'create-titleexists' ),
204 array( 'missingtitle-createonly' ),
205 array( 'protect-invalidaction', 'action' ),
206 array( 'protect-invalidlevel', 'level' ),
207 array( 'invalidexpiry', 'expiry' ),
208 array( 'pastexpiry', 'expiry' ),
209 ) );
210 }
211
212 public function getTokenSalt() {
213 return null;
214 }
215
216 protected function getExamples() {
217 return array(
218 'api.php?action=protect&title=Main%20Page&token=123ABC&protections=edit=sysop|move=sysop&cascade&expiry=20070901163000|never',
219 'api.php?action=protect&title=Main%20Page&token=123ABC&protections=edit=all|move=all&reason=Lifting%20restrictions'
220 );
221 }
222
223 public function getVersion() {
224 return __CLASS__ . ': $Id$';
225 }
226 }