More specifically, it should reauthenticate when creating a bot password or resetting the password. But we may as well do it for all accesses. Bug: T193237 Change-Id: I9a38a3109492753fff1f33c0f280e5b0f1fc1a76
395 lines
11 KiB
PHP
395 lines
11 KiB
PHP
<?php
|
|
/**
|
|
* Implements Special:BotPasswords
|
|
*
|
|
* 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
|
|
* @ingroup SpecialPage
|
|
*/
|
|
|
|
use MediaWiki\Logger\LoggerFactory;
|
|
|
|
/**
|
|
* Let users manage bot passwords
|
|
*
|
|
* @ingroup SpecialPage
|
|
*/
|
|
class SpecialBotPasswords extends FormSpecialPage {
|
|
|
|
/** @var int Central user ID */
|
|
private $userId = 0;
|
|
|
|
/** @var BotPassword|null Bot password being edited, if any */
|
|
private $botPassword = null;
|
|
|
|
/** @var string Operation being performed: create, update, delete */
|
|
private $operation = null;
|
|
|
|
/** @var string New password set, for communication between onSubmit() and onSuccess() */
|
|
private $password = null;
|
|
|
|
/** @var Psr\Log\LoggerInterface */
|
|
private $logger = null;
|
|
|
|
public function __construct() {
|
|
parent::__construct( 'BotPasswords', 'editmyprivateinfo' );
|
|
$this->logger = LoggerFactory::getInstance( 'authentication' );
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isListed() {
|
|
return $this->getConfig()->get( 'EnableBotPasswords' );
|
|
}
|
|
|
|
protected function getLoginSecurityLevel() {
|
|
return $this->getName();
|
|
}
|
|
|
|
/**
|
|
* Main execution point
|
|
* @param string|null $par
|
|
*/
|
|
function execute( $par ) {
|
|
$this->getOutput()->disallowUserJs();
|
|
$this->requireLogin();
|
|
|
|
$par = trim( $par );
|
|
if ( strlen( $par ) === 0 ) {
|
|
$par = null;
|
|
} elseif ( strlen( $par ) > BotPassword::APPID_MAXLENGTH ) {
|
|
throw new ErrorPageError( 'botpasswords', 'botpasswords-bad-appid',
|
|
[ htmlspecialchars( $par ) ] );
|
|
}
|
|
|
|
parent::execute( $par );
|
|
}
|
|
|
|
protected function checkExecutePermissions( User $user ) {
|
|
parent::checkExecutePermissions( $user );
|
|
|
|
if ( !$this->getConfig()->get( 'EnableBotPasswords' ) ) {
|
|
throw new ErrorPageError( 'botpasswords', 'botpasswords-disabled' );
|
|
}
|
|
|
|
$this->userId = CentralIdLookup::factory()->centralIdFromLocalUser( $this->getUser() );
|
|
if ( !$this->userId ) {
|
|
throw new ErrorPageError( 'botpasswords', 'botpasswords-no-central-id' );
|
|
}
|
|
}
|
|
|
|
protected function getFormFields() {
|
|
$fields = [];
|
|
|
|
if ( $this->par !== null ) {
|
|
$this->botPassword = BotPassword::newFromCentralId( $this->userId, $this->par );
|
|
if ( !$this->botPassword ) {
|
|
$this->botPassword = BotPassword::newUnsaved( [
|
|
'centralId' => $this->userId,
|
|
'appId' => $this->par,
|
|
] );
|
|
}
|
|
|
|
$sep = BotPassword::getSeparator();
|
|
$fields[] = [
|
|
'type' => 'info',
|
|
'label-message' => 'username',
|
|
'default' => $this->getUser()->getName() . $sep . $this->par
|
|
];
|
|
|
|
if ( $this->botPassword->isSaved() ) {
|
|
$fields['resetPassword'] = [
|
|
'type' => 'check',
|
|
'label-message' => 'botpasswords-label-resetpassword',
|
|
];
|
|
if ( $this->botPassword->isInvalid() ) {
|
|
$fields['resetPassword']['default'] = true;
|
|
}
|
|
}
|
|
|
|
$lang = $this->getLanguage();
|
|
$showGrants = MWGrants::getValidGrants();
|
|
$fields['grants'] = [
|
|
'type' => 'checkmatrix',
|
|
'label-message' => 'botpasswords-label-grants',
|
|
'help-message' => 'botpasswords-help-grants',
|
|
'columns' => [
|
|
$this->msg( 'botpasswords-label-grants-column' )->escaped() => 'grant'
|
|
],
|
|
'rows' => array_combine(
|
|
array_map( 'MWGrants::getGrantsLink', $showGrants ),
|
|
$showGrants
|
|
),
|
|
'default' => array_map(
|
|
function ( $g ) {
|
|
return "grant-$g";
|
|
},
|
|
$this->botPassword->getGrants()
|
|
),
|
|
'tooltips' => array_combine(
|
|
array_map( 'MWGrants::getGrantsLink', $showGrants ),
|
|
array_map(
|
|
function ( $rights ) use ( $lang ) {
|
|
return $lang->semicolonList( array_map( 'User::getRightDescription', $rights ) );
|
|
},
|
|
array_intersect_key( MWGrants::getRightsByGrant(), array_flip( $showGrants ) )
|
|
)
|
|
),
|
|
'force-options-on' => array_map(
|
|
function ( $g ) {
|
|
return "grant-$g";
|
|
},
|
|
MWGrants::getHiddenGrants()
|
|
),
|
|
];
|
|
|
|
$fields['restrictions'] = [
|
|
'class' => HTMLRestrictionsField::class,
|
|
'required' => true,
|
|
'default' => $this->botPassword->getRestrictions(),
|
|
];
|
|
|
|
} else {
|
|
$linkRenderer = $this->getLinkRenderer();
|
|
$passwordFactory = new PasswordFactory();
|
|
$passwordFactory->init( $this->getConfig() );
|
|
|
|
$dbr = BotPassword::getDB( DB_REPLICA );
|
|
$res = $dbr->select(
|
|
'bot_passwords',
|
|
[ 'bp_app_id', 'bp_password' ],
|
|
[ 'bp_user' => $this->userId ],
|
|
__METHOD__
|
|
);
|
|
foreach ( $res as $row ) {
|
|
try {
|
|
$password = $passwordFactory->newFromCiphertext( $row->bp_password );
|
|
$passwordInvalid = $password instanceof InvalidPassword;
|
|
unset( $password );
|
|
} catch ( PasswordError $ex ) {
|
|
$passwordInvalid = true;
|
|
}
|
|
|
|
$text = $linkRenderer->makeKnownLink(
|
|
$this->getPageTitle( $row->bp_app_id ),
|
|
$row->bp_app_id
|
|
);
|
|
if ( $passwordInvalid ) {
|
|
$text .= $this->msg( 'word-separator' )->escaped()
|
|
. $this->msg( 'botpasswords-label-needsreset' )->parse();
|
|
}
|
|
|
|
$fields[] = [
|
|
'section' => 'existing',
|
|
'type' => 'info',
|
|
'raw' => true,
|
|
'default' => $text,
|
|
];
|
|
}
|
|
|
|
$fields['appId'] = [
|
|
'section' => 'createnew',
|
|
'type' => 'textwithbutton',
|
|
'label-message' => 'botpasswords-label-appid',
|
|
'buttondefault' => $this->msg( 'botpasswords-label-create' )->text(),
|
|
'buttonflags' => [ 'progressive', 'primary' ],
|
|
'required' => true,
|
|
'size' => BotPassword::APPID_MAXLENGTH,
|
|
'maxlength' => BotPassword::APPID_MAXLENGTH,
|
|
'validation-callback' => function ( $v ) {
|
|
$v = trim( $v );
|
|
return $v !== '' && strlen( $v ) <= BotPassword::APPID_MAXLENGTH;
|
|
},
|
|
];
|
|
|
|
$fields[] = [
|
|
'type' => 'hidden',
|
|
'default' => 'new',
|
|
'name' => 'op',
|
|
];
|
|
}
|
|
|
|
return $fields;
|
|
}
|
|
|
|
protected function alterForm( HTMLForm $form ) {
|
|
$form->setId( 'mw-botpasswords-form' );
|
|
$form->setTableId( 'mw-botpasswords-table' );
|
|
$form->addPreText( $this->msg( 'botpasswords-summary' )->parseAsBlock() );
|
|
$form->suppressDefaultSubmit();
|
|
|
|
if ( $this->par !== null ) {
|
|
if ( $this->botPassword->isSaved() ) {
|
|
$form->setWrapperLegendMsg( 'botpasswords-editexisting' );
|
|
$form->addButton( [
|
|
'name' => 'op',
|
|
'value' => 'update',
|
|
'label-message' => 'botpasswords-label-update',
|
|
'flags' => [ 'primary', 'progressive' ],
|
|
] );
|
|
$form->addButton( [
|
|
'name' => 'op',
|
|
'value' => 'delete',
|
|
'label-message' => 'botpasswords-label-delete',
|
|
'flags' => [ 'destructive' ],
|
|
] );
|
|
} else {
|
|
$form->setWrapperLegendMsg( 'botpasswords-createnew' );
|
|
$form->addButton( [
|
|
'name' => 'op',
|
|
'value' => 'create',
|
|
'label-message' => 'botpasswords-label-create',
|
|
'flags' => [ 'primary', 'progressive' ],
|
|
] );
|
|
}
|
|
|
|
$form->addButton( [
|
|
'name' => 'op',
|
|
'value' => 'cancel',
|
|
'label-message' => 'botpasswords-label-cancel'
|
|
] );
|
|
}
|
|
}
|
|
|
|
public function onSubmit( array $data ) {
|
|
$op = $this->getRequest()->getVal( 'op', '' );
|
|
|
|
switch ( $op ) {
|
|
case 'new':
|
|
$this->getOutput()->redirect( $this->getPageTitle( $data['appId'] )->getFullURL() );
|
|
return false;
|
|
|
|
case 'create':
|
|
$this->operation = 'insert';
|
|
return $this->save( $data );
|
|
|
|
case 'update':
|
|
$this->operation = 'update';
|
|
return $this->save( $data );
|
|
|
|
case 'delete':
|
|
$this->operation = 'delete';
|
|
$bp = BotPassword::newFromCentralId( $this->userId, $this->par );
|
|
if ( $bp ) {
|
|
$bp->delete();
|
|
$this->logger->info(
|
|
"Bot password {op} for {user}@{app_id}",
|
|
[
|
|
'app_id' => $this->par,
|
|
'user' => $this->getUser()->getName(),
|
|
'centralId' => $this->userId,
|
|
'op' => 'delete',
|
|
'client_ip' => $this->getRequest()->getIP()
|
|
]
|
|
);
|
|
}
|
|
return Status::newGood();
|
|
|
|
case 'cancel':
|
|
$this->getOutput()->redirect( $this->getPageTitle()->getFullURL() );
|
|
return false;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private function save( array $data ) {
|
|
$bp = BotPassword::newUnsaved( [
|
|
'centralId' => $this->userId,
|
|
'appId' => $this->par,
|
|
'restrictions' => $data['restrictions'],
|
|
'grants' => array_merge(
|
|
MWGrants::getHiddenGrants(),
|
|
preg_replace( '/^grant-/', '', $data['grants'] )
|
|
)
|
|
] );
|
|
|
|
if ( $this->operation === 'insert' || !empty( $data['resetPassword'] ) ) {
|
|
$this->password = BotPassword::generatePassword( $this->getConfig() );
|
|
$passwordFactory = new PasswordFactory();
|
|
$passwordFactory->init( RequestContext::getMain()->getConfig() );
|
|
$password = $passwordFactory->newFromPlaintext( $this->password );
|
|
} else {
|
|
$password = null;
|
|
}
|
|
|
|
if ( $bp->save( $this->operation, $password ) ) {
|
|
$this->logger->info(
|
|
"Bot password {op} for {user}@{app_id}",
|
|
[
|
|
'op' => $this->operation,
|
|
'user' => $this->getUser()->getName(),
|
|
'app_id' => $this->par,
|
|
'centralId' => $this->userId,
|
|
'restrictions' => $data['restrictions'],
|
|
'grants' => $bp->getGrants(),
|
|
'client_ip' => $this->getRequest()->getIP()
|
|
]
|
|
);
|
|
return Status::newGood();
|
|
} else {
|
|
// Messages: botpasswords-insert-failed, botpasswords-update-failed
|
|
return Status::newFatal( "botpasswords-{$this->operation}-failed", $this->par );
|
|
}
|
|
}
|
|
|
|
public function onSuccess() {
|
|
$out = $this->getOutput();
|
|
|
|
$username = $this->getUser()->getName();
|
|
switch ( $this->operation ) {
|
|
case 'insert':
|
|
$out->setPageTitle( $this->msg( 'botpasswords-created-title' )->text() );
|
|
$out->addWikiMsg( 'botpasswords-created-body', $this->par, $username );
|
|
break;
|
|
|
|
case 'update':
|
|
$out->setPageTitle( $this->msg( 'botpasswords-updated-title' )->text() );
|
|
$out->addWikiMsg( 'botpasswords-updated-body', $this->par, $username );
|
|
break;
|
|
|
|
case 'delete':
|
|
$out->setPageTitle( $this->msg( 'botpasswords-deleted-title' )->text() );
|
|
$out->addWikiMsg( 'botpasswords-deleted-body', $this->par, $username );
|
|
$this->password = null;
|
|
break;
|
|
}
|
|
|
|
if ( $this->password !== null ) {
|
|
$sep = BotPassword::getSeparator();
|
|
$out->addWikiMsg(
|
|
'botpasswords-newpassword',
|
|
htmlspecialchars( $username . $sep . $this->par ),
|
|
htmlspecialchars( $this->password ),
|
|
htmlspecialchars( $username ),
|
|
htmlspecialchars( $this->par . $sep . $this->password )
|
|
);
|
|
$this->password = null;
|
|
}
|
|
|
|
$out->addReturnTo( $this->getPageTitle() );
|
|
}
|
|
|
|
protected function getGroupName() {
|
|
return 'users';
|
|
}
|
|
|
|
protected function getDisplayFormat() {
|
|
return 'ooui';
|
|
}
|
|
}
|