123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398 |
- <?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;
- use MediaWiki\MediaWikiServices;
- /**
- * 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();
- $this->addHelpLink( 'Manual:Bot_passwords' );
- $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 = MediaWikiServices::getInstance()->getPasswordFactory();
- $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(),
- // @phan-suppress-next-next-line PhanTypeMismatchArgumentInternal See phan issue #3163,
- // it's probably failing to infer the type of $data['grants']
- preg_replace( '/^grant-/', '', $data['grants'] )
- )
- ] );
- if ( $this->operation === 'insert' || !empty( $data['resetPassword'] ) ) {
- $this->password = BotPassword::generatePassword( $this->getConfig() );
- $passwordFactory = MediaWikiServices::getInstance()->getPasswordFactory();
- $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';
- }
- }
|