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
{
30 # The target of the local right-adjuster's interest. Can be gotten from
31 # either a GET parameter or a subpage-style parameter, so have a member
35 * @var null|User $mFetchedUser The user object of the target username or null.
37 protected $mFetchedUser = null;
38 protected $isself = false;
40 public function __construct() {
41 parent
::__construct( 'Userrights' );
44 public function doesWrites() {
48 public function isRestricted() {
52 public function userCanExecute( User
$user ) {
53 return $this->userCanChangeRights( $user, false );
58 * @param bool $checkIfSelf
61 public function userCanChangeRights( $user, $checkIfSelf = true ) {
62 $available = $this->changeableGroups();
63 if ( $user->getId() == 0 ) {
67 return !empty( $available['add'] )
68 ||
!empty( $available['remove'] )
69 ||
( ( $this->isself ||
!$checkIfSelf ) &&
70 ( !empty( $available['add-self'] )
71 ||
!empty( $available['remove-self'] ) ) );
75 * Manage forms to be shown according to posted data.
76 * Depending on the submit button used, call a form or a save function.
78 * @param string|null $par String if any subpage provided, else null
79 * @throws UserBlockedError|PermissionsError
81 public function execute( $par ) {
82 // If the visitor doesn't have permissions to assign or remove
83 // any groups, it's a bit silly to give them the user search prompt.
85 $user = $this->getUser();
86 $request = $this->getRequest();
87 $out = $this->getOutput();
90 * If the user is blocked and they only have "partial" access
91 * (e.g. they don't have the userrights permission), then don't
92 * allow them to use Special:UserRights.
94 if ( $user->isBlocked() && !$user->isAllowed( 'userrights' ) ) {
95 throw new UserBlockedError( $user->getBlock() );
98 if ( $par !== null ) {
99 $this->mTarget
= $par;
101 $this->mTarget
= $request->getVal( 'user' );
104 $available = $this->changeableGroups();
106 if ( $this->mTarget
=== null ) {
108 * If the user specified no target, and they can only
109 * edit their own groups, automatically set them as the
112 if ( !count( $available['add'] ) && !count( $available['remove'] ) ) {
113 $this->mTarget
= $user->getName();
117 if ( $this->mTarget
!== null && User
::getCanonicalName( $this->mTarget
) === $user->getName() ) {
118 $this->isself
= true;
121 $fetchedStatus = $this->fetchUser( $this->mTarget
);
122 if ( $fetchedStatus->isOK() ) {
123 $this->mFetchedUser
= $fetchedStatus->value
;
124 if ( $this->mFetchedUser
instanceof User
) {
125 // Set the 'relevant user' in the skin, so it displays links like Contributions,
126 // User logs, UserRights, etc.
127 $this->getSkin()->setRelevantUser( $this->mFetchedUser
);
131 if ( !$this->userCanChangeRights( $user, true ) ) {
132 if ( $this->isself
&& $request->getCheck( 'success' ) ) {
133 // bug 48609: if the user just removed its own rights, this would
134 // leads it in a "permissions error" page. In that case, show a
135 // message that it can't anymore use this page instead of an error
137 $out->wrapWikiMsg( "<div class=\"successbox\">\n$1\n</div>", 'userrights-removed-self' );
138 $out->returnToMain();
143 // @todo FIXME: There may be intermediate groups we can mention.
144 $msg = $user->isAnon() ?
'userrights-nologin' : 'userrights-notallowed';
145 throw new PermissionsError( null, [ [ $msg ] ] );
148 // show a successbox, if the user rights was saved successfully
149 if ( $request->getCheck( 'success' ) && $this->mFetchedUser
!== null ) {
151 "<div class=\"successbox\">\n$1\n</div>",
152 [ 'savedrights', $this->mFetchedUser
->getName() ]
156 $this->checkReadOnly();
159 $this->outputHeader();
161 $out->addModuleStyles( 'mediawiki.special' );
162 $this->addHelpLink( 'Help:Assigning permissions' );
164 // show the general form
165 if ( count( $available['add'] ) ||
count( $available['remove'] ) ) {
170 $request->wasPosted() &&
171 $request->getCheck( 'saveusergroups' ) &&
172 $this->mTarget
!== null &&
173 $user->matchEditToken( $request->getVal( 'wpEditToken' ), $this->mTarget
)
176 if ( !$fetchedStatus->isOK() ) {
177 $this->getOutput()->addWikiText( $fetchedStatus->getWikiText() );
182 $targetUser = $this->mFetchedUser
;
183 if ( $targetUser instanceof User
) { // UserRightsProxy doesn't have this method (bug 61252)
184 $targetUser->clearInstanceCache(); // bug 38989
187 if ( $request->getVal( 'conflictcheck-originalgroups' )
188 !== implode( ',', $targetUser->getGroups() )
190 $out->addWikiMsg( 'userrights-conflict' );
192 $this->saveUserGroups(
194 $request->getVal( 'user-reason' ),
198 $out->redirect( $this->getSuccessURL() );
204 // show some more forms
205 if ( $this->mTarget
!== null ) {
206 $this->editUserGroupsForm( $this->mTarget
);
210 function getSuccessURL() {
211 return $this->getPageTitle( $this->mTarget
)->getFullURL( [ 'success' => 1 ] );
215 * Save user groups changes in the database.
216 * Data comes from the editUserGroupsForm() form function
218 * @param string $username Username to apply changes to.
219 * @param string $reason Reason for group change
220 * @param User|UserRightsProxy $user Target user object.
223 function saveUserGroups( $username, $reason, $user ) {
224 $allgroups = $this->getAllGroups();
228 // This could possibly create a highly unlikely race condition if permissions are changed between
229 // when the form is loaded and when the form is saved. Ignoring it for the moment.
230 foreach ( $allgroups as $group ) {
231 // We'll tell it to remove all unchecked groups, and add all checked groups.
232 // Later on, this gets filtered for what can actually be removed
233 if ( $this->getRequest()->getCheck( "wpGroup-$group" ) ) {
234 $addgroup[] = $group;
236 $removegroup[] = $group;
240 $this->doSaveUserGroups( $user, $addgroup, $removegroup, $reason );
244 * Save user groups changes in the database.
246 * @param User|UserRightsProxy $user
247 * @param array $add Array of groups to add
248 * @param array $remove Array of groups to remove
249 * @param string $reason Reason for group change
250 * @return array Tuple of added, then removed groups
252 function doSaveUserGroups( $user, $add, $remove, $reason = '' ) {
253 // Validate input set...
254 $isself = $user->getName() == $this->getUser()->getName();
255 $groups = $user->getGroups();
256 $changeable = $this->changeableGroups();
257 $addable = array_merge( $changeable['add'], $isself ?
$changeable['add-self'] : [] );
258 $removable = array_merge( $changeable['remove'], $isself ?
$changeable['remove-self'] : [] );
260 $remove = array_unique(
261 array_intersect( (array)$remove, $removable, $groups ) );
262 $add = array_unique( array_diff(
263 array_intersect( (array)$add, $addable ),
267 $oldGroups = $user->getGroups();
268 $newGroups = $oldGroups;
270 // Remove then add groups
272 foreach ( $remove as $index => $group ) {
273 if ( !$user->removeGroup( $group ) ) {
274 unset( $remove[$index] );
277 $newGroups = array_diff( $newGroups, $remove );
280 foreach ( $add as $index => $group ) {
281 if ( !$user->addGroup( $group ) ) {
282 unset( $add[$index] );
285 $newGroups = array_merge( $newGroups, $add );
287 $newGroups = array_unique( $newGroups );
289 // Ensure that caches are cleared
290 $user->invalidateCache();
292 // update groups in external authentication database
293 Hooks
::run( 'UserGroupsChanged', [ $user, $add, $remove, $this->getUser(), $reason ] );
294 MediaWiki\Auth\AuthManager
::callLegacyAuthPlugin(
295 'updateExternalDBGroups', [ $user, $add, $remove ]
298 wfDebug( 'oldGroups: ' . print_r( $oldGroups, true ) . "\n" );
299 wfDebug( 'newGroups: ' . print_r( $newGroups, true ) . "\n" );
300 // Deprecated in favor of UserGroupsChanged hook
301 Hooks
::run( 'UserRights', [ &$user, $add, $remove ], '1.26' );
303 if ( $newGroups != $oldGroups ) {
304 $this->addLogEntry( $user, $oldGroups, $newGroups, $reason );
307 return [ $add, $remove ];
311 * Add a rights log entry for an action.
313 * @param array $oldGroups
314 * @param array $newGroups
315 * @param array $reason
317 function addLogEntry( $user, $oldGroups, $newGroups, $reason ) {
318 $logEntry = new ManualLogEntry( 'rights', 'rights' );
319 $logEntry->setPerformer( $this->getUser() );
320 $logEntry->setTarget( $user->getUserPage() );
321 $logEntry->setComment( $reason );
322 $logEntry->setParameters( [
323 '4::oldgroups' => $oldGroups,
324 '5::newgroups' => $newGroups,
326 $logid = $logEntry->insert();
327 $logEntry->publish( $logid );
331 * Edit user groups membership
332 * @param string $username Name of the user.
334 function editUserGroupsForm( $username ) {
335 $status = $this->fetchUser( $username );
336 if ( !$status->isOK() ) {
337 $this->getOutput()->addWikiText( $status->getWikiText() );
341 $user = $status->value
;
344 $groups = $user->getGroups();
346 $this->showEditUserGroupsForm( $user, $groups );
348 // This isn't really ideal logging behavior, but let's not hide the
349 // interwiki logs if we're using them as is.
350 $this->showLogFragment( $user, $this->getOutput() );
354 * Normalize the input username, which may be local or remote, and
355 * return a user (or proxy) object for manipulating it.
357 * Side effects: error output for invalid access
358 * @param string $username
361 public function fetchUser( $username ) {
362 $parts = explode( $this->getConfig()->get( 'UserrightsInterwikiDelimiter' ), $username );
363 if ( count( $parts ) < 2 ) {
364 $name = trim( $username );
367 list( $name, $database ) = array_map( 'trim', $parts );
369 if ( $database == wfWikiID() ) {
372 if ( !$this->getUser()->isAllowed( 'userrights-interwiki' ) ) {
373 return Status
::newFatal( 'userrights-no-interwiki' );
375 if ( !UserRightsProxy
::validDatabase( $database ) ) {
376 return Status
::newFatal( 'userrights-nodatabase', $database );
381 if ( $name === '' ) {
382 return Status
::newFatal( 'nouserspecified' );
385 if ( $name[0] == '#' ) {
386 // Numeric ID can be specified...
387 // We'll do a lookup for the name internally.
388 $id = intval( substr( $name, 1 ) );
390 if ( $database == '' ) {
391 $name = User
::whoIs( $id );
393 $name = UserRightsProxy
::whoIs( $database, $id );
397 return Status
::newFatal( 'noname' );
400 $name = User
::getCanonicalName( $name );
401 if ( $name === false ) {
403 return Status
::newFatal( 'nosuchusershort', $username );
407 if ( $database == '' ) {
408 $user = User
::newFromName( $name );
410 $user = UserRightsProxy
::newFromName( $database, $name );
413 if ( !$user ||
$user->isAnon() ) {
414 return Status
::newFatal( 'nosuchusershort', $username );
417 return Status
::newGood( $user );
427 public function makeGroupNameList( $ids ) {
428 if ( empty( $ids ) ) {
429 return $this->msg( 'rightsnone' )->inContentLanguage()->text();
431 return implode( ', ', $ids );
436 * Output a form to allow searching for a user
438 function switchForm() {
439 $this->getOutput()->addModules( 'mediawiki.userSuggest' );
441 $this->getOutput()->addHTML(
446 'action' => wfScript(),
448 'id' => 'mw-userrights-form1'
451 Html
::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) .
452 Xml
::fieldset( $this->msg( 'userrights-lookup-user' )->text() ) .
454 $this->msg( 'userrights-user-editname' )->text(),
458 str_replace( '_', ' ', $this->mTarget
),
460 'class' => 'mw-autocomplete-user', // used by mediawiki.userSuggest
462 // Set autofocus on blank input and error input
463 $this->mFetchedUser
=== null ?
[ 'autofocus' => '' ] : []
469 $this->mFetchedUser
=== null ?
'[]' : $this->mFetchedUser
->getName()
472 Html
::closeElement( 'fieldset' ) .
473 Html
::closeElement( 'form' ) . "\n"
478 * Go through used and available groups and return the ones that this
479 * form will be able to manipulate based on the current user's system
482 * @param array $groups List of groups the given user is in
483 * @return array Tuple of addable, then removable groups
485 protected function splitGroups( $groups ) {
486 list( $addable, $removable, $addself, $removeself ) = array_values( $this->changeableGroups() );
488 $removable = array_intersect(
489 array_merge( $this->isself ?
$removeself : [], $removable ),
491 ); // Can't remove groups the user doesn't have
492 $addable = array_diff(
493 array_merge( $this->isself ?
$addself : [], $addable ),
495 ); // Can't add groups the user does have
497 return [ $addable, $removable ];
501 * Show the form to edit group memberships.
503 * @param User|UserRightsProxy $user User or UserRightsProxy you're editing
504 * @param array $groups Array of groups the user is in
506 protected function showEditUserGroupsForm( $user, $groups ) {
509 foreach ( $groups as $group ) {
510 $list[] = self
::buildGroupLink( $group );
511 $membersList[] = self
::buildGroupMemberLink( $group );
515 $autoMembersList = [];
516 if ( $user instanceof User
) {
517 foreach ( Autopromote
::getAutopromoteGroups( $user ) as $group ) {
518 $autoList[] = self
::buildGroupLink( $group );
519 $autoMembersList[] = self
::buildGroupMemberLink( $group );
523 $language = $this->getLanguage();
524 $displayedList = $this->msg( 'userrights-groupsmember-type' )
526 $language->listToText( $list ),
527 $language->listToText( $membersList )
529 $displayedAutolist = $this->msg( 'userrights-groupsmember-type' )
531 $language->listToText( $autoList ),
532 $language->listToText( $autoMembersList )
536 $count = count( $list );
538 $grouplist = $this->msg( 'userrights-groupsmember' )
539 ->numParams( $count )
540 ->params( $user->getName() )
542 $grouplist = '<p>' . $grouplist . ' ' . $displayedList . "</p>\n";
545 $count = count( $autoList );
547 $autogrouplistintro = $this->msg( 'userrights-groupsmember-auto' )
548 ->numParams( $count )
549 ->params( $user->getName() )
551 $grouplist .= '<p>' . $autogrouplistintro . ' ' . $displayedAutolist . "</p>\n";
554 $userToolLinks = Linker
::userToolLinks(
557 false, /* default for redContribsWhenNoEdits */
558 Linker
::TOOL_LINKS_EMAIL
/* Add "send e-mail" link */
561 $this->getOutput()->addHTML(
566 'action' => $this->getPageTitle()->getLocalURL(),
567 'name' => 'editGroup',
568 'id' => 'mw-userrights-form2'
571 Html
::hidden( 'user', $this->mTarget
) .
572 Html
::hidden( 'wpEditToken', $this->getUser()->getEditToken( $this->mTarget
) ) .
574 'conflictcheck-originalgroups',
575 implode( ',', $user->getGroups() )
576 ) . // Conflict detection
577 Xml
::openElement( 'fieldset' ) .
581 $this->msg( 'userrights-editusergroup', $user->getName() )->text()
583 $this->msg( 'editinguser' )->params( wfEscapeWikiText( $user->getName() ) )
584 ->rawParams( $userToolLinks )->parse() .
585 $this->msg( 'userrights-groups-help', $user->getName() )->parse() .
587 $this->groupCheckboxes( $groups, $user ) .
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" .
608 Xml
::closeElement( 'fieldset' ) .
609 Xml
::closeElement( 'form' ) . "\n"
614 * Format a link to a group description page
616 * @param string $group
619 private static function buildGroupLink( $group ) {
620 return User
::makeGroupLinkHTML( $group, User
::getGroupName( $group ) );
624 * Format a link to a group member description page
626 * @param string $group
629 private static function buildGroupMemberLink( $group ) {
630 return User
::makeGroupLinkHTML( $group, User
::getGroupMember( $group ) );
634 * Returns an array of all groups that may be edited
635 * @return array Array of groups that may be edited.
637 protected static function getAllGroups() {
638 return User
::getAllGroups();
642 * Adds a table with checkboxes where you can select what groups to add/remove
644 * @todo Just pass the username string?
645 * @param array $usergroups Groups the user belongs to
647 * @return string XHTML table element with checkboxes
649 private function groupCheckboxes( $usergroups, $user ) {
650 $allgroups = $this->getAllGroups();
653 // Put all column info into an associative array so that extensions can
654 // more easily manage it.
655 $columns = [ 'unchangeable' => [], 'changeable' => [] ];
657 foreach ( $allgroups as $group ) {
658 $set = in_array( $group, $usergroups );
659 // Should the checkbox be disabled?
661 ( $set && $this->canRemove( $group ) ) ||
662 ( !$set && $this->canAdd( $group ) ) );
663 // Do we need to point out that this action is irreversible?
664 $irreversible = !$disabled && (
665 ( $set && !$this->canAdd( $group ) ) ||
666 ( !$set && !$this->canRemove( $group ) ) );
670 'disabled' => $disabled,
671 'irreversible' => $irreversible
675 $columns['unchangeable'][$group] = $checkbox;
677 $columns['changeable'][$group] = $checkbox;
681 // Build the HTML table
682 $ret .= Xml
::openElement( 'table', [ 'class' => 'mw-userrights-groups' ] ) .
684 foreach ( $columns as $name => $column ) {
685 if ( $column === [] ) {
688 // Messages: userrights-changeable-col, userrights-unchangeable-col
689 $ret .= Xml
::element(
692 $this->msg( 'userrights-' . $name . '-col', count( $column ) )->text()
696 $ret .= "</tr>\n<tr>\n";
697 foreach ( $columns as $column ) {
698 if ( $column === [] ) {
701 $ret .= "\t<td style='vertical-align:top;'>\n";
702 foreach ( $column as $group => $checkbox ) {
703 $attr = $checkbox['disabled'] ?
[ 'disabled' => 'disabled' ] : [];
705 $member = User
::getGroupMember( $group, $user->getName() );
706 if ( $checkbox['irreversible'] ) {
707 $text = $this->msg( 'userrights-irreversible-marker', $member )->text();
711 $checkboxHtml = Xml
::checkLabel( $text, "wpGroup-" . $group,
712 "wpGroup-" . $group, $checkbox['set'], $attr );
713 $ret .= "\t\t" . ( $checkbox['disabled']
714 ? Xml
::tags( 'span', [ 'class' => 'mw-userrights-disabled' ], $checkboxHtml )
720 $ret .= Xml
::closeElement( 'tr' ) . Xml
::closeElement( 'table' );
726 * @param string $group The name of the group to check
727 * @return bool Can we remove the group?
729 private function canRemove( $group ) {
730 // $this->changeableGroups()['remove'] doesn't work, of course. Thanks, PHP.
731 $groups = $this->changeableGroups();
735 $groups['remove'] ) ||
( $this->isself
&& in_array( $group, $groups['remove-self'] )
740 * @param string $group The name of the group to check
741 * @return bool Can we add the group?
743 private function canAdd( $group ) {
744 $groups = $this->changeableGroups();
748 $groups['add'] ) ||
( $this->isself
&& in_array( $group, $groups['add-self'] )
753 * Returns $this->getUser()->changeableGroups()
755 * @return array Array(
756 * 'add' => array( addablegroups ),
757 * 'remove' => array( removablegroups ),
758 * 'add-self' => array( addablegroups to self ),
759 * 'remove-self' => array( removable groups from self )
762 function changeableGroups() {
763 return $this->getUser()->changeableGroups();
767 * Show a rights log fragment for the specified user
769 * @param User $user User to show log for
770 * @param OutputPage $output OutputPage to use
772 protected function showLogFragment( $user, $output ) {
773 $rightsLogPage = new LogPage( 'rights' );
774 $output->addHTML( Xml
::element( 'h2', null, $rightsLogPage->getName()->text() ) );
775 LogEventsList
::showLogExtract( $output, 'rights', $user->getUserPage() );
779 * Return an array of subpages beginning with $search that this special page will accept.
781 * @param string $search Prefix to search for
782 * @param int $limit Maximum number of results to return (usually 10)
783 * @param int $offset Number of results to skip (usually 0)
784 * @return string[] Matching subpages
786 public function prefixSearchSubpages( $search, $limit, $offset ) {
787 $user = User
::newFromName( $search );
789 // No prefix suggestion for invalid user
792 // Autocomplete subpage as user list - public to allow caching
793 return UserNamePrefixSearch
::search( 'public', $search, $limit, $offset );
796 protected function getGroupName() {