3 * Implements Special:Userrights
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * Special page to allow managing user group membership
27 * @ingroup SpecialPage
29 class UserrightsPage
extends SpecialPage
{
31 * The target of the local right-adjuster's interest. Can be gotten from
32 * either a GET parameter or a subpage-style parameter, so have a member
34 * @var null|string $mTarget
38 * @var null|User $mFetchedUser The user object of the target username or null.
40 protected $mFetchedUser = null;
41 protected $isself = false;
43 public function __construct() {
44 parent
::__construct( 'Userrights' );
47 public function doesWrites() {
53 * @param bool $checkIfSelf
56 public function userCanChangeRights( $user, $checkIfSelf = true ) {
57 $available = $this->changeableGroups();
58 if ( $user->getId() == 0 ) {
62 return !empty( $available['add'] )
63 ||
!empty( $available['remove'] )
64 ||
( ( $this->isself ||
!$checkIfSelf ) &&
65 ( !empty( $available['add-self'] )
66 ||
!empty( $available['remove-self'] ) ) );
70 * Manage forms to be shown according to posted data.
71 * Depending on the submit button used, call a form or a save function.
73 * @param string|null $par String if any subpage provided, else null
74 * @throws UserBlockedError|PermissionsError
76 public function execute( $par ) {
77 $user = $this->getUser();
78 $request = $this->getRequest();
79 $session = $request->getSession();
80 $out = $this->getOutput();
82 if ( $par !== null ) {
83 $this->mTarget
= $par;
85 $this->mTarget
= $request->getVal( 'user' );
88 if ( is_string( $this->mTarget
) ) {
89 $this->mTarget
= trim( $this->mTarget
);
92 if ( $this->mTarget
!== null && User
::getCanonicalName( $this->mTarget
) === $user->getName() ) {
96 $fetchedStatus = $this->fetchUser( $this->mTarget
, true );
97 if ( $fetchedStatus->isOK() ) {
98 $this->mFetchedUser
= $fetchedStatus->value
;
99 if ( $this->mFetchedUser
instanceof User
) {
100 // Set the 'relevant user' in the skin, so it displays links like Contributions,
101 // User logs, UserRights, etc.
102 $this->getSkin()->setRelevantUser( $this->mFetchedUser
);
106 // show a successbox, if the user rights was saved successfully
108 $session->get( 'specialUserrightsSaveSuccess' ) &&
109 $this->mFetchedUser
!== null
111 // Remove session data for the success message
112 $session->remove( 'specialUserrightsSaveSuccess' );
114 $out->addModules( [ 'mediawiki.special.userrights' ] );
115 $out->addModuleStyles( 'mediawiki.notification.convertmessagebox.styles' );
120 'class' => 'mw-notify-success successbox',
121 'id' => 'mw-preferences-success',
122 'data-mw-autohide' => 'false',
127 $this->msg( 'savedrights', $this->mFetchedUser
->getName() )->text()
134 $this->outputHeader();
136 $out->addModuleStyles( 'mediawiki.special' );
137 $this->addHelpLink( 'Help:Assigning permissions' );
142 $request->wasPosted() &&
143 $request->getCheck( 'saveusergroups' ) &&
144 $this->mTarget
!== null &&
145 $user->matchEditToken( $request->getVal( 'wpEditToken' ), $this->mTarget
)
148 * If the user is blocked and they only have "partial" access
149 * (e.g. they don't have the userrights permission), then don't
150 * allow them to change any user rights.
152 if ( $user->isBlocked() && !$user->isAllowed( 'userrights' ) ) {
153 throw new UserBlockedError( $user->getBlock() );
156 $this->checkReadOnly();
159 if ( !$fetchedStatus->isOK() ) {
160 $this->getOutput()->addWikiText( $fetchedStatus->getWikiText() );
165 $targetUser = $this->mFetchedUser
;
166 if ( $targetUser instanceof User
) { // UserRightsProxy doesn't have this method (bug 61252)
167 $targetUser->clearInstanceCache(); // bug 38989
170 if ( $request->getVal( 'conflictcheck-originalgroups' )
171 !== implode( ',', $targetUser->getGroups() )
173 $out->addWikiMsg( 'userrights-conflict' );
175 $this->saveUserGroups(
177 $request->getVal( 'user-reason' ),
181 // Set session data for the success message
182 $session->set( 'specialUserrightsSaveSuccess', 1 );
184 $out->redirect( $this->getSuccessURL() );
190 // show some more forms
191 if ( $this->mTarget
!== null ) {
192 $this->editUserGroupsForm( $this->mTarget
);
196 function getSuccessURL() {
197 return $this->getPageTitle( $this->mTarget
)->getFullURL();
201 * Save user groups changes in the database.
202 * Data comes from the editUserGroupsForm() form function
204 * @param string $username Username to apply changes to.
205 * @param string $reason Reason for group change
206 * @param User|UserRightsProxy $user Target user object.
209 function saveUserGroups( $username, $reason, $user ) {
210 $allgroups = $this->getAllGroups();
214 // This could possibly create a highly unlikely race condition if permissions are changed between
215 // when the form is loaded and when the form is saved. Ignoring it for the moment.
216 foreach ( $allgroups as $group ) {
217 // We'll tell it to remove all unchecked groups, and add all checked groups.
218 // Later on, this gets filtered for what can actually be removed
219 if ( $this->getRequest()->getCheck( "wpGroup-$group" ) ) {
220 $addgroup[] = $group;
222 $removegroup[] = $group;
226 $this->doSaveUserGroups( $user, $addgroup, $removegroup, $reason );
230 * Save user groups changes in the database.
232 * @param User|UserRightsProxy $user
233 * @param array $add Array of groups to add
234 * @param array $remove Array of groups to remove
235 * @param string $reason Reason for group change
236 * @param array $tags Array of change tags to add to the log entry
237 * @return array Tuple of added, then removed groups
239 function doSaveUserGroups( $user, $add, $remove, $reason = '', $tags = [] ) {
240 // Validate input set...
241 $isself = $user->getName() == $this->getUser()->getName();
242 $groups = $user->getGroups();
243 $changeable = $this->changeableGroups();
244 $addable = array_merge( $changeable['add'], $isself ?
$changeable['add-self'] : [] );
245 $removable = array_merge( $changeable['remove'], $isself ?
$changeable['remove-self'] : [] );
247 $remove = array_unique(
248 array_intersect( (array)$remove, $removable, $groups ) );
249 $add = array_unique( array_diff(
250 array_intersect( (array)$add, $addable ),
254 Hooks
::run( 'ChangeUserGroups', [ $this->getUser(), $user, &$add, &$remove ] );
256 $oldGroups = $user->getGroups();
257 $newGroups = $oldGroups;
259 // Remove then add groups
261 foreach ( $remove as $index => $group ) {
262 if ( !$user->removeGroup( $group ) ) {
263 unset( $remove[$index] );
266 $newGroups = array_diff( $newGroups, $remove );
269 foreach ( $add as $index => $group ) {
270 if ( !$user->addGroup( $group ) ) {
271 unset( $add[$index] );
274 $newGroups = array_merge( $newGroups, $add );
276 $newGroups = array_unique( $newGroups );
278 // Ensure that caches are cleared
279 $user->invalidateCache();
281 // update groups in external authentication database
282 Hooks
::run( 'UserGroupsChanged', [ $user, $add, $remove, $this->getUser(), $reason ] );
283 MediaWiki\Auth\AuthManager
::callLegacyAuthPlugin(
284 'updateExternalDBGroups', [ $user, $add, $remove ]
287 wfDebug( 'oldGroups: ' . print_r( $oldGroups, true ) . "\n" );
288 wfDebug( 'newGroups: ' . print_r( $newGroups, true ) . "\n" );
289 // Deprecated in favor of UserGroupsChanged hook
290 Hooks
::run( 'UserRights', [ &$user, $add, $remove ], '1.26' );
292 if ( $newGroups != $oldGroups ) {
293 $this->addLogEntry( $user, $oldGroups, $newGroups, $reason, $tags );
296 return [ $add, $remove ];
300 * Add a rights log entry for an action.
302 * @param array $oldGroups
303 * @param array $newGroups
304 * @param array $reason
307 function addLogEntry( $user, $oldGroups, $newGroups, $reason, $tags ) {
308 $logEntry = new ManualLogEntry( 'rights', 'rights' );
309 $logEntry->setPerformer( $this->getUser() );
310 $logEntry->setTarget( $user->getUserPage() );
311 $logEntry->setComment( $reason );
312 $logEntry->setParameters( [
313 '4::oldgroups' => $oldGroups,
314 '5::newgroups' => $newGroups,
316 $logid = $logEntry->insert();
317 if ( count( $tags ) ) {
318 $logEntry->setTags( $tags );
320 $logEntry->publish( $logid );
324 * Edit user groups membership
325 * @param string $username Name of the user.
327 function editUserGroupsForm( $username ) {
328 $status = $this->fetchUser( $username, true );
329 if ( !$status->isOK() ) {
330 $this->getOutput()->addWikiText( $status->getWikiText() );
334 $user = $status->value
;
337 $groups = $user->getGroups();
339 $this->showEditUserGroupsForm( $user, $groups );
341 // This isn't really ideal logging behavior, but let's not hide the
342 // interwiki logs if we're using them as is.
343 $this->showLogFragment( $user, $this->getOutput() );
347 * Normalize the input username, which may be local or remote, and
348 * return a user (or proxy) object for manipulating it.
350 * Side effects: error output for invalid access
351 * @param string $username
352 * @param bool $writing
355 public function fetchUser( $username, $writing = true ) {
356 $parts = explode( $this->getConfig()->get( 'UserrightsInterwikiDelimiter' ), $username );
357 if ( count( $parts ) < 2 ) {
358 $name = trim( $username );
361 list( $name, $database ) = array_map( 'trim', $parts );
363 if ( $database == wfWikiID() ) {
366 if ( $writing && !$this->getUser()->isAllowed( 'userrights-interwiki' ) ) {
367 return Status
::newFatal( 'userrights-no-interwiki' );
369 if ( !UserRightsProxy
::validDatabase( $database ) ) {
370 return Status
::newFatal( 'userrights-nodatabase', $database );
375 if ( $name === '' ) {
376 return Status
::newFatal( 'nouserspecified' );
379 if ( $name[0] == '#' ) {
380 // Numeric ID can be specified...
381 // We'll do a lookup for the name internally.
382 $id = intval( substr( $name, 1 ) );
384 if ( $database == '' ) {
385 $name = User
::whoIs( $id );
387 $name = UserRightsProxy
::whoIs( $database, $id );
391 return Status
::newFatal( 'noname' );
394 $name = User
::getCanonicalName( $name );
395 if ( $name === false ) {
397 return Status
::newFatal( 'nosuchusershort', $username );
401 if ( $database == '' ) {
402 $user = User
::newFromName( $name );
404 $user = UserRightsProxy
::newFromName( $database, $name );
407 if ( !$user ||
$user->isAnon() ) {
408 return Status
::newFatal( 'nosuchusershort', $username );
411 return Status
::newGood( $user );
421 public function makeGroupNameList( $ids ) {
422 if ( empty( $ids ) ) {
423 return $this->msg( 'rightsnone' )->inContentLanguage()->text();
425 return implode( ', ', $ids );
430 * Output a form to allow searching for a user
432 function switchForm() {
433 $this->getOutput()->addModules( 'mediawiki.userSuggest' );
435 $this->getOutput()->addHTML(
440 'action' => wfScript(),
442 'id' => 'mw-userrights-form1'
445 Html
::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) .
446 Xml
::fieldset( $this->msg( 'userrights-lookup-user' )->text() ) .
448 $this->msg( 'userrights-user-editname' )->text(),
452 str_replace( '_', ' ', $this->mTarget
),
454 'class' => 'mw-autocomplete-user', // used by mediawiki.userSuggest
456 // Set autofocus on blank input and error input
457 $this->mFetchedUser
=== null ?
[ 'autofocus' => '' ] : []
461 $this->msg( 'editusergroup' )->text()
463 Html
::closeElement( 'fieldset' ) .
464 Html
::closeElement( 'form' ) . "\n"
469 * Go through used and available groups and return the ones that this
470 * form will be able to manipulate based on the current user's system
473 * @param array $groups List of groups the given user is in
474 * @return array Tuple of addable, then removable groups
476 protected function splitGroups( $groups ) {
477 list( $addable, $removable, $addself, $removeself ) = array_values( $this->changeableGroups() );
479 $removable = array_intersect(
480 array_merge( $this->isself ?
$removeself : [], $removable ),
482 ); // Can't remove groups the user doesn't have
483 $addable = array_diff(
484 array_merge( $this->isself ?
$addself : [], $addable ),
486 ); // Can't add groups the user does have
488 return [ $addable, $removable ];
492 * Show the form to edit group memberships.
494 * @param User|UserRightsProxy $user User or UserRightsProxy you're editing
495 * @param array $groups Array of groups the user is in
497 protected function showEditUserGroupsForm( $user, $groups ) {
500 foreach ( $groups as $group ) {
501 $list[] = self
::buildGroupLink( $group );
502 $membersList[] = self
::buildGroupMemberLink( $group );
506 $autoMembersList = [];
507 if ( $user instanceof User
) {
508 foreach ( Autopromote
::getAutopromoteGroups( $user ) as $group ) {
509 $autoList[] = self
::buildGroupLink( $group );
510 $autoMembersList[] = self
::buildGroupMemberLink( $group );
514 $language = $this->getLanguage();
515 $displayedList = $this->msg( 'userrights-groupsmember-type' )
517 $language->listToText( $list ),
518 $language->listToText( $membersList )
520 $displayedAutolist = $this->msg( 'userrights-groupsmember-type' )
522 $language->listToText( $autoList ),
523 $language->listToText( $autoMembersList )
527 $count = count( $list );
529 $grouplist = $this->msg( 'userrights-groupsmember' )
530 ->numParams( $count )
531 ->params( $user->getName() )
533 $grouplist = '<p>' . $grouplist . ' ' . $displayedList . "</p>\n";
536 $count = count( $autoList );
538 $autogrouplistintro = $this->msg( 'userrights-groupsmember-auto' )
539 ->numParams( $count )
540 ->params( $user->getName() )
542 $grouplist .= '<p>' . $autogrouplistintro . ' ' . $displayedAutolist . "</p>\n";
545 $userToolLinks = Linker
::userToolLinks(
548 false, /* default for redContribsWhenNoEdits */
549 Linker
::TOOL_LINKS_EMAIL
/* Add "send e-mail" link */
552 list( $groupCheckboxes, $canChangeAny ) = $this->groupCheckboxes( $groups, $user );
553 $this->getOutput()->addHTML(
558 'action' => $this->getPageTitle()->getLocalURL(),
559 'name' => 'editGroup',
560 'id' => 'mw-userrights-form2'
563 Html
::hidden( 'user', $this->mTarget
) .
564 Html
::hidden( 'wpEditToken', $this->getUser()->getEditToken( $this->mTarget
) ) .
566 'conflictcheck-originalgroups',
567 implode( ',', $user->getGroups() )
568 ) . // Conflict detection
569 Xml
::openElement( 'fieldset' ) .
574 $canChangeAny ?
'userrights-editusergroup' : 'userrights-viewusergroup',
579 $canChangeAny ?
'editinguser' : 'viewinguserrights'
580 )->params( wfEscapeWikiText( $user->getName() ) )
581 ->rawParams( $userToolLinks )->parse()
583 if ( $canChangeAny ) {
584 $this->getOutput()->addHTML(
585 $this->msg( 'userrights-groups-help', $user->getName() )->parse() .
588 Xml
::openElement( 'table', [ 'id' => 'mw-userrights-table-outer' ] ) .
590 <td class='mw-label'>" .
591 Xml
::label( $this->msg( 'userrights-reason' )->text(), 'wpReason' ) .
593 <td class='mw-input'>" .
594 Xml
::input( 'user-reason', 60, $this->getRequest()->getVal( 'user-reason', false ),
595 [ 'id' => 'wpReason', 'maxlength' => 255 ] ) .
600 <td class='mw-submit'>" .
601 Xml
::submitButton( $this->msg( 'saveusergroups', $user->getName() )->text(),
602 [ 'name' => 'saveusergroups' ] +
603 Linker
::tooltipAndAccesskeyAttribs( 'userrights-set' )
607 Xml
::closeElement( 'table' ) . "\n"
610 $this->getOutput()->addHTML( $grouplist );
612 $this->getOutput()->addHTML(
613 Xml
::closeElement( 'fieldset' ) .
614 Xml
::closeElement( 'form' ) . "\n"
619 * Format a link to a group description page
621 * @param string $group
624 private static function buildGroupLink( $group ) {
625 return User
::makeGroupLinkHTML( $group, User
::getGroupName( $group ) );
629 * Format a link to a group member description page
631 * @param string $group
634 private static function buildGroupMemberLink( $group ) {
635 return User
::makeGroupLinkHTML( $group, User
::getGroupMember( $group ) );
639 * Returns an array of all groups that may be edited
640 * @return array Array of groups that may be edited.
642 protected static function getAllGroups() {
643 return User
::getAllGroups();
647 * Adds a table with checkboxes where you can select what groups to add/remove
649 * @todo Just pass the username string?
650 * @param array $usergroups Groups the user belongs to
652 * @return Array with 2 elements: the XHTML table element with checkxboes, and
653 * whether any groups are changeable
655 private function groupCheckboxes( $usergroups, $user ) {
656 $allgroups = $this->getAllGroups();
659 // Put all column info into an associative array so that extensions can
660 // more easily manage it.
661 $columns = [ 'unchangeable' => [], 'changeable' => [] ];
663 foreach ( $allgroups as $group ) {
664 $set = in_array( $group, $usergroups );
665 // Should the checkbox be disabled?
667 ( $set && $this->canRemove( $group ) ) ||
668 ( !$set && $this->canAdd( $group ) ) );
669 // Do we need to point out that this action is irreversible?
670 $irreversible = !$disabled && (
671 ( $set && !$this->canAdd( $group ) ) ||
672 ( !$set && !$this->canRemove( $group ) ) );
676 'disabled' => $disabled,
677 'irreversible' => $irreversible
681 $columns['unchangeable'][$group] = $checkbox;
683 $columns['changeable'][$group] = $checkbox;
687 // Build the HTML table
688 $ret .= Xml
::openElement( 'table', [ 'class' => 'mw-userrights-groups' ] ) .
690 foreach ( $columns as $name => $column ) {
691 if ( $column === [] ) {
694 // Messages: userrights-changeable-col, userrights-unchangeable-col
695 $ret .= Xml
::element(
698 $this->msg( 'userrights-' . $name . '-col', count( $column ) )->text()
702 $ret .= "</tr>\n<tr>\n";
703 foreach ( $columns as $column ) {
704 if ( $column === [] ) {
707 $ret .= "\t<td style='vertical-align:top;'>\n";
708 foreach ( $column as $group => $checkbox ) {
709 $attr = $checkbox['disabled'] ?
[ 'disabled' => 'disabled' ] : [];
711 $member = User
::getGroupMember( $group, $user->getName() );
712 if ( $checkbox['irreversible'] ) {
713 $text = $this->msg( 'userrights-irreversible-marker', $member )->text();
717 $checkboxHtml = Xml
::checkLabel( $text, "wpGroup-" . $group,
718 "wpGroup-" . $group, $checkbox['set'], $attr );
719 $ret .= "\t\t" . ( $checkbox['disabled']
720 ? Xml
::tags( 'span', [ 'class' => 'mw-userrights-disabled' ], $checkboxHtml )
726 $ret .= Xml
::closeElement( 'tr' ) . Xml
::closeElement( 'table' );
728 return [ $ret, (bool)$columns['changeable'] ];
732 * @param string $group The name of the group to check
733 * @return bool Can we remove the group?
735 private function canRemove( $group ) {
736 $groups = $this->changeableGroups();
740 $groups['remove'] ) ||
( $this->isself
&& in_array( $group, $groups['remove-self'] )
745 * @param string $group The name of the group to check
746 * @return bool Can we add the group?
748 private function canAdd( $group ) {
749 $groups = $this->changeableGroups();
753 $groups['add'] ) ||
( $this->isself
&& in_array( $group, $groups['add-self'] )
758 * Returns $this->getUser()->changeableGroups()
760 * @return array Array(
761 * 'add' => array( addablegroups ),
762 * 'remove' => array( removablegroups ),
763 * 'add-self' => array( addablegroups to self ),
764 * 'remove-self' => array( removable groups from self )
767 function changeableGroups() {
768 return $this->getUser()->changeableGroups();
772 * Show a rights log fragment for the specified user
774 * @param User $user User to show log for
775 * @param OutputPage $output OutputPage to use
777 protected function showLogFragment( $user, $output ) {
778 $rightsLogPage = new LogPage( 'rights' );
779 $output->addHTML( Xml
::element( 'h2', null, $rightsLogPage->getName()->text() ) );
780 LogEventsList
::showLogExtract( $output, 'rights', $user->getUserPage() );
784 * Return an array of subpages beginning with $search that this special page will accept.
786 * @param string $search Prefix to search for
787 * @param int $limit Maximum number of results to return (usually 10)
788 * @param int $offset Number of results to skip (usually 0)
789 * @return string[] Matching subpages
791 public function prefixSearchSubpages( $search, $limit, $offset ) {
792 $user = User
::newFromName( $search );
794 // No prefix suggestion for invalid user
797 // Autocomplete subpage as user list - public to allow caching
798 return UserNamePrefixSearch
::search( 'public', $search, $limit, $offset );
801 protected function getGroupName() {