4 * API userrights module
6 * Copyright © 2009 Roan Kattouw <roan.kattouw@gmail.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
26 namespace MediaWiki\Api
;
29 use MediaWiki\MainConfigNames
;
30 use MediaWiki\ParamValidator\TypeDef\UserDef
;
31 use MediaWiki\Specials\SpecialUserRights
;
32 use MediaWiki\Title\Title
;
33 use MediaWiki\User\Options\UserOptionsLookup
;
34 use MediaWiki\User\UserGroupManager
;
35 use MediaWiki\User\UserIdentity
;
36 use MediaWiki\Watchlist\WatchedItemStoreInterface
;
37 use MediaWiki\Watchlist\WatchlistManager
;
38 use Wikimedia\ParamValidator\ParamValidator
;
39 use Wikimedia\ParamValidator\TypeDef\ExpiryDef
;
40 use Wikimedia\Rdbms\IDBAccessObject
;
45 class ApiUserrights
extends ApiBase
{
47 use ApiWatchlistTrait
;
49 /** @var UserIdentity|null */
50 private $mUser = null;
52 private UserGroupManager
$userGroupManager;
53 private WatchedItemStoreInterface
$watchedItemStore;
55 public function __construct(
58 UserGroupManager
$userGroupManager,
59 WatchedItemStoreInterface
$watchedItemStore,
60 WatchlistManager
$watchlistManager,
61 UserOptionsLookup
$userOptionsLookup
63 parent
::__construct( $mainModule, $moduleName );
64 $this->userGroupManager
= $userGroupManager;
65 $this->watchedItemStore
= $watchedItemStore;
67 // Variables needed in ApiWatchlistTrait trait
68 $this->watchlistExpiryEnabled
= $this->getConfig()->get( MainConfigNames
::WatchlistExpiry
);
69 $this->watchlistMaxDuration
=
70 $this->getConfig()->get( MainConfigNames
::WatchlistExpiryMaxDuration
);
71 $this->watchlistManager
= $watchlistManager;
72 $this->userOptionsLookup
= $userOptionsLookup;
75 public function execute() {
76 $pUser = $this->getUser();
78 // Deny if the user is blocked and doesn't have the full 'userrights' permission.
79 // This matches what Special:UserRights does for the web UI.
80 if ( !$this->getAuthority()->isAllowed( 'userrights' ) ) {
81 $block = $pUser->getBlock( IDBAccessObject
::READ_LATEST
);
82 if ( $block && $block->isSitewide() ) {
83 $this->dieBlocked( $block );
87 $params = $this->extractRequestParams();
89 // Figure out expiry times from the input
90 $expiry = (array)$params['expiry'];
91 $add = (array)$params['add'];
94 } elseif ( count( $expiry ) !== count( $add ) ) {
95 if ( count( $expiry ) === 1 ) {
96 $expiry = array_fill( 0, count( $add ), $expiry[0] );
98 $this->dieWithError( [
99 'apierror-toofewexpiries',
106 // Validate the expiries
108 foreach ( $expiry as $index => $expiryValue ) {
109 $group = $add[$index];
110 $groupExpiries[$group] = SpecialUserRights
::expiryToTimestamp( $expiryValue );
112 if ( $groupExpiries[$group] === false ) {
113 $this->dieWithError( [ 'apierror-invalidexpiry', wfEscapeWikiText( $expiryValue ) ] );
116 // not allowed to have things expiring in the past
117 if ( $groupExpiries[$group] && $groupExpiries[$group] < wfTimestampNow() ) {
118 $this->dieWithError( [ 'apierror-pastexpiry', wfEscapeWikiText( $expiryValue ) ] );
122 $user = $this->getUrUser( $params );
124 $tags = $params['tags'];
126 // Check if user can add tags
127 if ( $tags !== null ) {
128 $ableToTag = ChangeTags
::canAddTagsAccompanyingChange( $tags, $this->getAuthority() );
129 if ( !$ableToTag->isOK() ) {
130 $this->dieStatus( $ableToTag );
134 $form = new SpecialUserRights();
135 $form->setContext( $this->getContext() );
137 $r['user'] = $user->getName();
138 $r['userid'] = $user->getId( $user->getWikiId() );
139 [ $r['added'], $r['removed'] ] = $form->doSaveUserGroups(
142 // Don't pass null to doSaveUserGroups() for array params, cast to empty array
143 (array)$params['remove'],
149 $watchlistExpiry = $this->getExpiryFromParams( $params );
150 $watchuser = $params['watchuser'];
151 $userPage = Title
::makeTitle( NS_USER
, $user->getName() );
152 if ( $watchuser && $user->getWikiId() === UserIdentity
::LOCAL
) {
153 $this->setWatch( 'watch', $userPage, $this->getUser(), null, $watchlistExpiry );
156 $watchlistExpiry = null;
158 $r['watchuser'] = $watchuser;
159 if ( $watchlistExpiry !== null ) {
160 $r['watchlistexpiry'] = $this->getWatchlistExpiry(
161 $this->watchedItemStore
,
167 $result = $this->getResult();
168 ApiResult
::setIndexedTagName( $r['added'], 'group' );
169 ApiResult
::setIndexedTagName( $r['removed'], 'group' );
170 $result->addValue( null, $this->getModuleName(), $r );
174 * @param array $params
175 * @return UserIdentity
177 private function getUrUser( array $params ) {
178 if ( $this->mUser
!== null ) {
182 $this->requireOnlyOneParameter( $params, 'user', 'userid' );
184 $user = $params['user'] ??
'#' . $params['userid'];
186 $form = new SpecialUserRights();
187 $form->setContext( $this->getContext() );
188 $status = $form->fetchUser( $user );
189 if ( !$status->isOK() ) {
190 $this->dieStatus( $status );
193 $this->mUser
= $status->value
;
195 return $status->value
;
198 public function mustBePosted() {
202 public function isWriteMode() {
206 public function getAllowedParams( $flags = 0 ) {
207 $allGroups = $this->userGroupManager
->listAllGroups();
209 if ( $flags & ApiBase
::GET_VALUES_FOR_HELP
) {
215 ParamValidator
::PARAM_TYPE
=> 'user',
216 UserDef
::PARAM_ALLOWED_USER_TYPES
=> [ 'name', 'id' ],
219 ParamValidator
::PARAM_TYPE
=> 'integer',
220 ParamValidator
::PARAM_DEPRECATED
=> true,
223 ParamValidator
::PARAM_TYPE
=> $allGroups,
224 ParamValidator
::PARAM_ISMULTI
=> true
227 ParamValidator
::PARAM_ISMULTI
=> true,
228 ParamValidator
::PARAM_ALLOW_DUPLICATES
=> true,
229 ParamValidator
::PARAM_DEFAULT
=> 'infinite',
232 ParamValidator
::PARAM_TYPE
=> $allGroups,
233 ParamValidator
::PARAM_ISMULTI
=> true
236 ParamValidator
::PARAM_DEFAULT
=> ''
239 // Standard definition automatically inserted
240 ApiBase
::PARAM_HELP_MSG_APPEND
=> [ 'api-help-param-token-webui' ],
243 ParamValidator
::PARAM_TYPE
=> 'tags',
244 ParamValidator
::PARAM_ISMULTI
=> true
246 'watchuser' => false,
249 // Params appear in the docs in the order they are defined,
250 // which is why this is here and not at the bottom.
251 // @todo Find better way to support insertion at arbitrary position
252 if ( $this->watchlistExpiryEnabled
) {
254 'watchlistexpiry' => [
255 ParamValidator
::PARAM_TYPE
=> 'expiry',
256 ExpiryDef
::PARAM_MAX
=> $this->watchlistMaxDuration
,
257 ExpiryDef
::PARAM_USE_MAX
=> true,
265 public function needsToken() {
269 protected function getWebUITokenSalt( array $params ) {
270 return $this->getUrUser( $params )->getName();
273 protected function getExamplesMessages() {
275 'action=userrights&user=FooBot&add=bot&remove=sysop|bureaucrat&token=123ABC'
276 => 'apihelp-userrights-example-user',
277 'action=userrights&userid=123&add=bot&remove=sysop|bureaucrat&token=123ABC'
278 => 'apihelp-userrights-example-userid',
279 'action=userrights&user=SometimeSysop&add=sysop&expiry=1%20month&token=123ABC'
280 => 'apihelp-userrights-example-expiry',
284 public function getHelpUrls() {
285 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:User_group_membership';
289 /** @deprecated class alias since 1.43 */
290 class_alias( ApiUserrights
::class, 'ApiUserrights' );