2017-01-08 02:37:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use MediaWiki\Widget\UsersMultiselectWidget;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Implements a capsule multiselect input field for user names.
|
|
|
|
|
*
|
|
|
|
|
* Besides the parameters recognized by HTMLUserTextField, additional recognized
|
|
|
|
|
* parameters are:
|
|
|
|
|
* default - (optional) Array of usernames to use as preset data
|
|
|
|
|
* placeholder - (optional) Custom placeholder message for input
|
|
|
|
|
*
|
|
|
|
|
* The result is the array of usernames
|
|
|
|
|
*
|
|
|
|
|
* @note This widget is not likely to remain functional in non-OOUI forms.
|
|
|
|
|
*/
|
|
|
|
|
class HTMLUsersMultiselectField extends HTMLUserTextField {
|
|
|
|
|
public function loadDataFromRequest( $request ) {
|
2017-05-21 13:28:59 +00:00
|
|
|
$value = $request->getText( $this->mName, $this->getDefault() );
|
2017-01-08 02:37:29 +00:00
|
|
|
|
2017-05-21 13:28:59 +00:00
|
|
|
$usersArray = explode( "\n", $value );
|
2017-01-08 02:37:29 +00:00
|
|
|
// Remove empty lines
|
2017-06-26 16:35:31 +00:00
|
|
|
$usersArray = array_values( array_filter( $usersArray, function ( $username ) {
|
2017-01-08 02:37:29 +00:00
|
|
|
return trim( $username ) !== '';
|
|
|
|
|
} ) );
|
2017-05-21 13:28:59 +00:00
|
|
|
// This function is expected to return a string
|
|
|
|
|
return implode( "\n", $usersArray );
|
2017-01-08 02:37:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function validate( $value, $alldata ) {
|
|
|
|
|
if ( !$this->mParams['exists'] ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( is_null( $value ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-21 13:28:59 +00:00
|
|
|
// $value is a string, because HTMLForm fields store their values as strings
|
|
|
|
|
$usersArray = explode( "\n", $value );
|
|
|
|
|
foreach ( $usersArray as $username ) {
|
2017-01-08 02:37:29 +00:00
|
|
|
$result = parent::validate( $username, $alldata );
|
|
|
|
|
if ( $result !== true ) {
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-21 13:28:59 +00:00
|
|
|
public function getInputHTML( $value ) {
|
2017-01-08 02:37:29 +00:00
|
|
|
$this->mParent->getOutput()->enableOOUI();
|
2017-05-21 13:28:59 +00:00
|
|
|
return $this->getInputOOUI( $value );
|
2017-01-08 02:37:29 +00:00
|
|
|
}
|
|
|
|
|
|
2017-05-21 13:28:59 +00:00
|
|
|
public function getInputOOUI( $value ) {
|
2017-01-08 02:37:29 +00:00
|
|
|
$params = [ 'name' => $this->mName ];
|
|
|
|
|
|
|
|
|
|
if ( isset( $this->mParams['default'] ) ) {
|
|
|
|
|
$params['default'] = $this->mParams['default'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( isset( $this->mParams['placeholder'] ) ) {
|
|
|
|
|
$params['placeholder'] = $this->mParams['placeholder'];
|
|
|
|
|
} else {
|
|
|
|
|
$params['placeholder'] = $this->msg( 'mw-widgets-usersmultiselect-placeholder' )
|
|
|
|
|
->inContentLanguage()
|
|
|
|
|
->plain();
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-21 13:28:59 +00:00
|
|
|
if ( !is_null( $value ) ) {
|
|
|
|
|
// $value is a string, but the widget expects an array
|
|
|
|
|
$params['default'] = explode( "\n", $value );
|
2017-01-08 02:37:29 +00:00
|
|
|
}
|
|
|
|
|
|
2017-05-20 14:07:35 +00:00
|
|
|
// Make the field auto-infusable when it's used inside a legacy HTMLForm rather than OOUIHTMLForm
|
|
|
|
|
$params['infusable'] = true;
|
|
|
|
|
$params['classes'] = [ 'mw-htmlform-field-autoinfuse' ];
|
|
|
|
|
$widget = new UsersMultiselectWidget( $params );
|
|
|
|
|
$widget->setAttributes( [ 'data-mw-modules' => implode( ',', $this->getOOUIModules() ) ] );
|
|
|
|
|
|
|
|
|
|
return $widget;
|
2017-01-08 02:37:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function shouldInfuseOOUI() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getOOUIModules() {
|
|
|
|
|
return [ 'mediawiki.widgets.UsersMultiselectWidget' ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|