Merge "Avoid master queries in Title::getLinksFrom()"
[lhc/web/wiklou.git] / includes / api / ApiProtect.php
1 <?php
2 /**
3 *
4 *
5 * Created on Sep 1, 2007
6 *
7 * Copyright © 2007 Roan Kattouw "<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 /**
28 * @ingroup API
29 */
30 class ApiProtect extends ApiBase {
31 public function execute() {
32 global $wgContLang;
33
34 $params = $this->extractRequestParams();
35
36 $pageObj = $this->getTitleOrPageId( $params, 'fromdbmaster' );
37 $titleObj = $pageObj->getTitle();
38
39 $errors = $titleObj->getUserPermissionsErrors( 'protect', $this->getUser() );
40 if ( $errors ) {
41 // We don't care about multiple errors, just report one of them
42 $this->dieUsageMsg( reset( $errors ) );
43 }
44
45 $expiry = (array)$params['expiry'];
46 if ( count( $expiry ) != count( $params['protections'] ) ) {
47 if ( count( $expiry ) == 1 ) {
48 $expiry = array_fill( 0, count( $params['protections'] ), $expiry[0] );
49 } else {
50 $this->dieUsageMsg( [
51 'toofewexpiries',
52 count( $expiry ),
53 count( $params['protections'] )
54 ] );
55 }
56 }
57
58 $restrictionTypes = $titleObj->getRestrictionTypes();
59
60 $protections = [];
61 $expiryarray = [];
62 $resultProtections = [];
63 foreach ( $params['protections'] as $i => $prot ) {
64 $p = explode( '=', $prot );
65 $protections[$p[0]] = ( $p[1] == 'all' ? '' : $p[1] );
66
67 if ( $titleObj->exists() && $p[0] == 'create' ) {
68 $this->dieUsageMsg( 'create-titleexists' );
69 }
70 if ( !$titleObj->exists() && $p[0] != 'create' ) {
71 $this->dieUsageMsg( 'missingtitle-createonly' );
72 }
73
74 if ( !in_array( $p[0], $restrictionTypes ) && $p[0] != 'create' ) {
75 $this->dieUsageMsg( [ 'protect-invalidaction', $p[0] ] );
76 }
77 if ( !in_array( $p[1], $this->getConfig()->get( 'RestrictionLevels' ) ) && $p[1] != 'all' ) {
78 $this->dieUsageMsg( [ 'protect-invalidlevel', $p[1] ] );
79 }
80
81 if ( wfIsInfinity( $expiry[$i] ) ) {
82 $expiryarray[$p[0]] = 'infinity';
83 } else {
84 $exp = strtotime( $expiry[$i] );
85 if ( $exp < 0 || !$exp ) {
86 $this->dieUsageMsg( [ 'invalidexpiry', $expiry[$i] ] );
87 }
88
89 $exp = wfTimestamp( TS_MW, $exp );
90 if ( $exp < wfTimestampNow() ) {
91 $this->dieUsageMsg( [ 'pastexpiry', $expiry[$i] ] );
92 }
93 $expiryarray[$p[0]] = $exp;
94 }
95 $resultProtections[] = [
96 $p[0] => $protections[$p[0]],
97 'expiry' => $wgContLang->formatExpiry( $expiryarray[$p[0]], TS_ISO_8601, 'infinite' ),
98 ];
99 }
100
101 $cascade = $params['cascade'];
102
103 $watch = $params['watch'] ? 'watch' : $params['watchlist'];
104 $this->setWatch( $watch, $titleObj, 'watchdefault' );
105
106 $status = $pageObj->doUpdateRestrictions(
107 $protections,
108 $expiryarray,
109 $cascade,
110 $params['reason'],
111 $this->getUser()
112 );
113
114 if ( !$status->isOK() ) {
115 $this->dieStatus( $status );
116 }
117 $res = [
118 'title' => $titleObj->getPrefixedText(),
119 'reason' => $params['reason']
120 ];
121 if ( $cascade ) {
122 $res['cascade'] = true;
123 }
124 $res['protections'] = $resultProtections;
125 $result = $this->getResult();
126 ApiResult::setIndexedTagName( $res['protections'], 'protection' );
127 $result->addValue( null, $this->getModuleName(), $res );
128 }
129
130 public function mustBePosted() {
131 return true;
132 }
133
134 public function isWriteMode() {
135 return true;
136 }
137
138 public function getAllowedParams() {
139 return [
140 'title' => [
141 ApiBase::PARAM_TYPE => 'string',
142 ],
143 'pageid' => [
144 ApiBase::PARAM_TYPE => 'integer',
145 ],
146 'protections' => [
147 ApiBase::PARAM_ISMULTI => true,
148 ApiBase::PARAM_REQUIRED => true,
149 ],
150 'expiry' => [
151 ApiBase::PARAM_ISMULTI => true,
152 ApiBase::PARAM_ALLOW_DUPLICATES => true,
153 ApiBase::PARAM_DFLT => 'infinite',
154 ],
155 'reason' => '',
156 'cascade' => false,
157 'watch' => [
158 ApiBase::PARAM_DFLT => false,
159 ApiBase::PARAM_DEPRECATED => true,
160 ],
161 'watchlist' => [
162 ApiBase::PARAM_DFLT => 'preferences',
163 ApiBase::PARAM_TYPE => [
164 'watch',
165 'unwatch',
166 'preferences',
167 'nochange'
168 ],
169 ],
170 ];
171 }
172
173 public function needsToken() {
174 return 'csrf';
175 }
176
177 protected function getExamplesMessages() {
178 return [
179 'action=protect&title=Main%20Page&token=123ABC&' .
180 'protections=edit=sysop|move=sysop&cascade=&expiry=20070901163000|never'
181 => 'apihelp-protect-example-protect',
182 'action=protect&title=Main%20Page&token=123ABC&' .
183 'protections=edit=all|move=all&reason=Lifting%20restrictions'
184 => 'apihelp-protect-example-unprotect',
185 'action=protect&title=Main%20Page&token=123ABC&' .
186 'protections=&reason=Lifting%20restrictions'
187 => 'apihelp-protect-example-unprotect2',
188 ];
189 }
190
191 public function getHelpUrls() {
192 return 'https://www.mediawiki.org/wiki/API:Protect';
193 }
194 }