Links generated by the API are now aware of the user's preferred language and will show documents in that language if available. To test, log in to mediawiki.org and set your language preference to 'es', then on an MediaWiki installation with this patch view the generated expanded API help at `api.php?action=help&recursivesubmodules=1&modules=main`. Each link to documentation on mediawiki.org should take you to its translated /es subpage, if one exists. Bug: T104518 Change-Id: I339a1f3ae1bce9d759cf251899d57c32b1def91e
198 lines
5.7 KiB
PHP
198 lines
5.7 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
*
|
|
* Created on Sep 4, 2007
|
|
*
|
|
* Copyright © 2007 Roan Kattouw "<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
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* 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.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
/**
|
|
* API module that facilitates the blocking of users. Requires API write mode
|
|
* to be enabled.
|
|
*
|
|
* @ingroup API
|
|
*/
|
|
class ApiBlock extends ApiBase {
|
|
|
|
/**
|
|
* Blocks the user specified in the parameters for the given expiry, with the
|
|
* given reason, and with all other settings provided in the params. If the block
|
|
* succeeds, produces a result containing the details of the block and notice
|
|
* of success. If it fails, the result will specify the nature of the error.
|
|
*/
|
|
public function execute() {
|
|
$this->checkUserRightsAny( 'block' );
|
|
|
|
$user = $this->getUser();
|
|
$params = $this->extractRequestParams();
|
|
|
|
$this->requireOnlyOneParameter( $params, 'user', 'userid' );
|
|
|
|
# T17810: blocked admins should have limited access here
|
|
if ( $user->isBlocked() ) {
|
|
$status = SpecialBlock::checkUnblockSelf( $params['user'], $user );
|
|
if ( $status !== true ) {
|
|
$this->dieWithError(
|
|
$status,
|
|
null,
|
|
[ 'blockinfo' => ApiQueryUserInfo::getBlockInfo( $user->getBlock() ) ]
|
|
);
|
|
}
|
|
}
|
|
|
|
if ( $params['userid'] !== null ) {
|
|
$username = User::whoIs( $params['userid'] );
|
|
|
|
if ( $username === false ) {
|
|
$this->dieWithError( [ 'apierror-nosuchuserid', $params['userid'] ], 'nosuchuserid' );
|
|
} else {
|
|
$params['user'] = $username;
|
|
}
|
|
} else {
|
|
$target = User::newFromName( $params['user'] );
|
|
|
|
// T40633 - if the target is a user (not an IP address), but it
|
|
// doesn't exist or is unusable, error.
|
|
if ( $target instanceof User &&
|
|
( $target->isAnon() /* doesn't exist */ || !User::isUsableName( $target->getName() ) )
|
|
) {
|
|
$this->dieWithError( [ 'nosuchusershort', $params['user'] ], 'nosuchuser' );
|
|
}
|
|
}
|
|
|
|
if ( $params['tags'] ) {
|
|
$ableToTag = ChangeTags::canAddTagsAccompanyingChange( $params['tags'], $user );
|
|
if ( !$ableToTag->isOK() ) {
|
|
$this->dieStatus( $ableToTag );
|
|
}
|
|
}
|
|
|
|
if ( $params['hidename'] && !$user->isAllowed( 'hideuser' ) ) {
|
|
$this->dieWithError( 'apierror-canthide' );
|
|
}
|
|
if ( $params['noemail'] && !SpecialBlock::canBlockEmail( $user ) ) {
|
|
$this->dieWithError( 'apierror-cantblock-email' );
|
|
}
|
|
|
|
$data = [
|
|
'PreviousTarget' => $params['user'],
|
|
'Target' => $params['user'],
|
|
'Reason' => [
|
|
$params['reason'],
|
|
'other',
|
|
$params['reason']
|
|
],
|
|
'Expiry' => $params['expiry'],
|
|
'HardBlock' => !$params['anononly'],
|
|
'CreateAccount' => $params['nocreate'],
|
|
'AutoBlock' => $params['autoblock'],
|
|
'DisableEmail' => $params['noemail'],
|
|
'HideUser' => $params['hidename'],
|
|
'DisableUTEdit' => !$params['allowusertalk'],
|
|
'Reblock' => $params['reblock'],
|
|
'Watch' => $params['watchuser'],
|
|
'Confirm' => true,
|
|
'Tags' => $params['tags'],
|
|
];
|
|
|
|
$retval = SpecialBlock::processForm( $data, $this->getContext() );
|
|
if ( $retval !== true ) {
|
|
$this->dieStatus( $this->errorArrayToStatus( $retval ) );
|
|
}
|
|
|
|
list( $target, /*...*/ ) = SpecialBlock::getTargetAndType( $params['user'] );
|
|
$res['user'] = $params['user'];
|
|
$res['userID'] = $target instanceof User ? $target->getId() : 0;
|
|
|
|
$block = Block::newFromTarget( $target, null, true );
|
|
if ( $block instanceof Block ) {
|
|
$res['expiry'] = ApiResult::formatExpiry( $block->mExpiry, 'infinite' );
|
|
$res['id'] = $block->getId();
|
|
} else {
|
|
# should be unreachable
|
|
$res['expiry'] = '';
|
|
$res['id'] = '';
|
|
}
|
|
|
|
$res['reason'] = $params['reason'];
|
|
$res['anononly'] = $params['anononly'];
|
|
$res['nocreate'] = $params['nocreate'];
|
|
$res['autoblock'] = $params['autoblock'];
|
|
$res['noemail'] = $params['noemail'];
|
|
$res['hidename'] = $params['hidename'];
|
|
$res['allowusertalk'] = $params['allowusertalk'];
|
|
$res['watchuser'] = $params['watchuser'];
|
|
|
|
$this->getResult()->addValue( null, $this->getModuleName(), $res );
|
|
}
|
|
|
|
public function mustBePosted() {
|
|
return true;
|
|
}
|
|
|
|
public function isWriteMode() {
|
|
return true;
|
|
}
|
|
|
|
public function getAllowedParams() {
|
|
return [
|
|
'user' => [
|
|
ApiBase::PARAM_TYPE => 'user',
|
|
],
|
|
'userid' => [
|
|
ApiBase::PARAM_TYPE => 'integer',
|
|
],
|
|
'expiry' => 'never',
|
|
'reason' => '',
|
|
'anononly' => false,
|
|
'nocreate' => false,
|
|
'autoblock' => false,
|
|
'noemail' => false,
|
|
'hidename' => false,
|
|
'allowusertalk' => false,
|
|
'reblock' => false,
|
|
'watchuser' => false,
|
|
'tags' => [
|
|
ApiBase::PARAM_TYPE => 'tags',
|
|
ApiBase::PARAM_ISMULTI => true,
|
|
],
|
|
];
|
|
}
|
|
|
|
public function needsToken() {
|
|
return 'csrf';
|
|
}
|
|
|
|
protected function getExamplesMessages() {
|
|
// @codingStandardsIgnoreStart Generic.Files.LineLength
|
|
return [
|
|
'action=block&user=192.0.2.5&expiry=3%20days&reason=First%20strike&token=123ABC'
|
|
=> 'apihelp-block-example-ip-simple',
|
|
'action=block&user=Vandal&expiry=never&reason=Vandalism&nocreate=&autoblock=&noemail=&token=123ABC'
|
|
=> 'apihelp-block-example-user-complex',
|
|
];
|
|
// @codingStandardsIgnoreEnd
|
|
}
|
|
|
|
public function getHelpUrls() {
|
|
return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Block';
|
|
}
|
|
}
|