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
34 protected $isself = false;
36 public function __construct() {
37 parent
::__construct( 'Userrights' );
40 public function isRestricted() {
44 public function userCanExecute( User
$user ) {
45 return $this->userCanChangeRights( $user, false );
50 * @param bool $checkIfSelf
53 public function userCanChangeRights( $user, $checkIfSelf = true ) {
54 $available = $this->changeableGroups();
55 if ( $user->getId() == 0 ) {
59 return !empty( $available['add'] )
60 ||
!empty( $available['remove'] )
61 ||
( ( $this->isself ||
!$checkIfSelf ) &&
62 ( !empty( $available['add-self'] )
63 ||
!empty( $available['remove-self'] ) ) );
67 * Manage forms to be shown according to posted data.
68 * Depending on the submit button used, call a form or a save function.
70 * @param string|null $par String if any subpage provided, else null
71 * @throws UserBlockedError|PermissionsError
73 public function execute( $par ) {
74 // If the visitor doesn't have permissions to assign or remove
75 // any groups, it's a bit silly to give them the user search prompt.
77 $user = $this->getUser();
80 * If the user is blocked and they only have "partial" access
81 * (e.g. they don't have the userrights permission), then don't
82 * allow them to use Special:UserRights.
84 if ( $user->isBlocked() && !$user->isAllowed( 'userrights' ) ) {
85 throw new UserBlockedError( $user->getBlock() );
88 $request = $this->getRequest();
90 if ( $par !== null ) {
91 $this->mTarget
= $par;
93 $this->mTarget
= $request->getVal( 'user' );
96 $available = $this->changeableGroups();
98 if ( $this->mTarget
=== null ) {
100 * If the user specified no target, and they can only
101 * edit their own groups, automatically set them as the
104 if ( !count( $available['add'] ) && !count( $available['remove'] ) ) {
105 $this->mTarget
= $user->getName();
109 if ( User
::getCanonicalName( $this->mTarget
) == $user->getName() ) {
110 $this->isself
= true;
113 if ( !$this->userCanChangeRights( $user, true ) ) {
114 if ( $this->isself
&& $request->getCheck( 'success' ) ) {
115 // bug 48609: if the user just removed its own rights, this would
116 // leads it in a "permissions error" page. In that case, show a
117 // message that it can't anymore use this page instead of an error
119 $out = $this->getOutput();
120 $out->wrapWikiMsg( "<div class=\"successbox\">\n$1\n</div>", 'userrights-removed-self' );
121 $out->returnToMain();
126 // @todo FIXME: There may be intermediate groups we can mention.
127 $msg = $user->isAnon() ?
'userrights-nologin' : 'userrights-notallowed';
128 throw new PermissionsError( null, array( array( $msg ) ) );
131 $this->checkReadOnly();
134 $this->outputHeader();
136 $out = $this->getOutput();
137 $out->addModuleStyles( 'mediawiki.special' );
139 // show the general form
140 if ( count( $available['add'] ) ||
count( $available['remove'] ) ) {
145 $request->wasPosted() &&
146 $request->getCheck( 'saveusergroups' ) &&
147 $user->matchEditToken( $request->getVal( 'wpEditToken' ), $this->mTarget
)
150 $status = $this->fetchUser( $this->mTarget
);
151 if ( !$status->isOK() ) {
152 $this->getOutput()->addWikiText( $status->getWikiText() );
157 $targetUser = $status->value
;
158 if ( $targetUser instanceof User
) { // UserRightsProxy doesn't have this method (bug 61252)
159 $targetUser->clearInstanceCache(); // bug 38989
162 if ( $request->getVal( 'conflictcheck-originalgroups' )
163 !== implode( ',', $targetUser->getGroups() )
165 $out->addWikiMsg( 'userrights-conflict' );
167 $this->saveUserGroups(
169 $request->getVal( 'user-reason' ),
173 $out->redirect( $this->getSuccessURL() );
179 // show some more forms
180 if ( $this->mTarget
!== null ) {
181 $this->editUserGroupsForm( $this->mTarget
);
185 function getSuccessURL() {
186 return $this->getPageTitle( $this->mTarget
)->getFullURL( array( 'success' => 1 ) );
190 * Save user groups changes in the database.
191 * Data comes from the editUserGroupsForm() form function
193 * @param string $username Username to apply changes to.
194 * @param string $reason Reason for group change
195 * @param User|UserRightsProxy $user Target user object.
198 function saveUserGroups( $username, $reason, $user ) {
199 $allgroups = $this->getAllGroups();
201 $removegroup = array();
203 // This could possibly create a highly unlikely race condition if permissions are changed between
204 // when the form is loaded and when the form is saved. Ignoring it for the moment.
205 foreach ( $allgroups as $group ) {
206 // We'll tell it to remove all unchecked groups, and add all checked groups.
207 // Later on, this gets filtered for what can actually be removed
208 if ( $this->getRequest()->getCheck( "wpGroup-$group" ) ) {
209 $addgroup[] = $group;
211 $removegroup[] = $group;
215 $this->doSaveUserGroups( $user, $addgroup, $removegroup, $reason );
219 * Save user groups changes in the database.
222 * @param array $add Array of groups to add
223 * @param array $remove Array of groups to remove
224 * @param string $reason Reason for group change
225 * @return array Tuple of added, then removed groups
227 function doSaveUserGroups( $user, $add, $remove, $reason = '' ) {
230 // Validate input set...
231 $isself = ( $user->getName() == $this->getUser()->getName() );
232 $groups = $user->getGroups();
233 $changeable = $this->changeableGroups();
234 $addable = array_merge( $changeable['add'], $isself ?
$changeable['add-self'] : array() );
235 $removable = array_merge( $changeable['remove'], $isself ?
$changeable['remove-self'] : array() );
237 $remove = array_unique(
238 array_intersect( (array)$remove, $removable, $groups ) );
239 $add = array_unique( array_diff(
240 array_intersect( (array)$add, $addable ),
244 $oldGroups = $user->getGroups();
245 $newGroups = $oldGroups;
247 // remove then add groups
249 $newGroups = array_diff( $newGroups, $remove );
250 foreach ( $remove as $group ) {
251 $user->removeGroup( $group );
255 $newGroups = array_merge( $newGroups, $add );
256 foreach ( $add as $group ) {
257 $user->addGroup( $group );
260 $newGroups = array_unique( $newGroups );
262 // Ensure that caches are cleared
263 $user->invalidateCache();
265 // update groups in external authentication database
266 $wgAuth->updateExternalDBGroups( $user, $add, $remove );
268 wfDebug( 'oldGroups: ' . print_r( $oldGroups, true ) . "\n" );
269 wfDebug( 'newGroups: ' . print_r( $newGroups, true ) . "\n" );
270 Hooks
::run( 'UserRights', array( &$user, $add, $remove ) );
272 if ( $newGroups != $oldGroups ) {
273 $this->addLogEntry( $user, $oldGroups, $newGroups, $reason );
276 return array( $add, $remove );
280 * Add a rights log entry for an action.
282 * @param array $oldGroups
283 * @param array $newGroups
284 * @param array $reason
286 function addLogEntry( $user, $oldGroups, $newGroups, $reason ) {
287 $logEntry = new ManualLogEntry( 'rights', 'rights' );
288 $logEntry->setPerformer( $this->getUser() );
289 $logEntry->setTarget( $user->getUserPage() );
290 $logEntry->setComment( $reason );
291 $logEntry->setParameters( array(
292 '4::oldgroups' => $oldGroups,
293 '5::newgroups' => $newGroups,
295 $logid = $logEntry->insert();
296 $logEntry->publish( $logid );
300 * Edit user groups membership
301 * @param string $username Name of the user.
303 function editUserGroupsForm( $username ) {
304 $status = $this->fetchUser( $username );
305 if ( !$status->isOK() ) {
306 $this->getOutput()->addWikiText( $status->getWikiText() );
310 $user = $status->value
;
313 $groups = $user->getGroups();
315 $this->showEditUserGroupsForm( $user, $groups );
317 // This isn't really ideal logging behavior, but let's not hide the
318 // interwiki logs if we're using them as is.
319 $this->showLogFragment( $user, $this->getOutput() );
323 * Normalize the input username, which may be local or remote, and
324 * return a user (or proxy) object for manipulating it.
326 * Side effects: error output for invalid access
327 * @param string $username
330 public function fetchUser( $username ) {
331 $parts = explode( $this->getConfig()->get( 'UserrightsInterwikiDelimiter' ), $username );
332 if ( count( $parts ) < 2 ) {
333 $name = trim( $username );
336 list( $name, $database ) = array_map( 'trim', $parts );
338 if ( $database == wfWikiID() ) {
341 if ( !$this->getUser()->isAllowed( 'userrights-interwiki' ) ) {
342 return Status
::newFatal( 'userrights-no-interwiki' );
344 if ( !UserRightsProxy
::validDatabase( $database ) ) {
345 return Status
::newFatal( 'userrights-nodatabase', $database );
350 if ( $name === '' ) {
351 return Status
::newFatal( 'nouserspecified' );
354 if ( $name[0] == '#' ) {
355 // Numeric ID can be specified...
356 // We'll do a lookup for the name internally.
357 $id = intval( substr( $name, 1 ) );
359 if ( $database == '' ) {
360 $name = User
::whoIs( $id );
362 $name = UserRightsProxy
::whoIs( $database, $id );
366 return Status
::newFatal( 'noname' );
369 $name = User
::getCanonicalName( $name );
370 if ( $name === false ) {
372 return Status
::newFatal( 'nosuchusershort', $username );
376 if ( $database == '' ) {
377 $user = User
::newFromName( $name );
379 $user = UserRightsProxy
::newFromName( $database, $name );
382 if ( !$user ||
$user->isAnon() ) {
383 return Status
::newFatal( 'nosuchusershort', $username );
386 return Status
::newGood( $user );
389 function makeGroupNameList( $ids ) {
390 if ( empty( $ids ) ) {
391 return $this->msg( 'rightsnone' )->inContentLanguage()->text();
393 return implode( ', ', $ids );
398 * Make a list of group names to be stored as parameter for log entries
400 * @deprecated since 1.21; use LogFormatter instead.
404 function makeGroupNameListForLog( $ids ) {
405 wfDeprecated( __METHOD__
, '1.21' );
407 if ( empty( $ids ) ) {
410 return $this->makeGroupNameList( $ids );
415 * Output a form to allow searching for a user
417 function switchForm() {
418 $this->getOutput()->addModules( 'mediawiki.userSuggest' );
420 $this->getOutput()->addHTML(
425 'action' => wfScript(),
427 'id' => 'mw-userrights-form1'
430 Html
::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) .
431 Xml
::fieldset( $this->msg( 'userrights-lookup-user' )->text() ) .
433 $this->msg( 'userrights-user-editname' )->text(),
437 str_replace( '_', ' ', $this->mTarget
),
440 'class' => 'mw-autocomplete-user', // used by mediawiki.userSuggest
443 Xml
::submitButton( $this->msg( 'editusergroup' )->text() ) .
444 Html
::closeElement( 'fieldset' ) .
445 Html
::closeElement( 'form' ) . "\n"
450 * Go through used and available groups and return the ones that this
451 * form will be able to manipulate based on the current user's system
454 * @param array $groups List of groups the given user is in
455 * @return array Tuple of addable, then removable groups
457 protected function splitGroups( $groups ) {
458 list( $addable, $removable, $addself, $removeself ) = array_values( $this->changeableGroups() );
460 $removable = array_intersect(
461 array_merge( $this->isself ?
$removeself : array(), $removable ),
463 ); // Can't remove groups the user doesn't have
464 $addable = array_diff(
465 array_merge( $this->isself ?
$addself : array(), $addable ),
467 ); // Can't add groups the user does have
469 return array( $addable, $removable );
473 * Show the form to edit group memberships.
475 * @param User|UserRightsProxy $user User or UserRightsProxy you're editing
476 * @param array $groups Array of groups the user is in
478 protected function showEditUserGroupsForm( $user, $groups ) {
480 $membersList = array();
481 foreach ( $groups as $group ) {
482 $list[] = self
::buildGroupLink( $group );
483 $membersList[] = self
::buildGroupMemberLink( $group );
487 $autoMembersList = array();
488 if ( $user instanceof User
) {
489 foreach ( Autopromote
::getAutopromoteGroups( $user ) as $group ) {
490 $autoList[] = self
::buildGroupLink( $group );
491 $autoMembersList[] = self
::buildGroupMemberLink( $group );
495 $language = $this->getLanguage();
496 $displayedList = $this->msg( 'userrights-groupsmember-type' )
498 $language->listToText( $list ),
499 $language->listToText( $membersList )
501 $displayedAutolist = $this->msg( 'userrights-groupsmember-type' )
503 $language->listToText( $autoList ),
504 $language->listToText( $autoMembersList )
508 $count = count( $list );
510 $grouplist = $this->msg( 'userrights-groupsmember' )
511 ->numParams( $count )
512 ->params( $user->getName() )
514 $grouplist = '<p>' . $grouplist . ' ' . $displayedList . "</p>\n";
517 $count = count( $autoList );
519 $autogrouplistintro = $this->msg( 'userrights-groupsmember-auto' )
520 ->numParams( $count )
521 ->params( $user->getName() )
523 $grouplist .= '<p>' . $autogrouplistintro . ' ' . $displayedAutolist . "</p>\n";
526 $userToolLinks = Linker
::userToolLinks(
529 false, /* default for redContribsWhenNoEdits */
530 Linker
::TOOL_LINKS_EMAIL
/* Add "send e-mail" link */
533 $this->getOutput()->addHTML(
538 'action' => $this->getPageTitle()->getLocalURL(),
539 'name' => 'editGroup',
540 'id' => 'mw-userrights-form2'
543 Html
::hidden( 'user', $this->mTarget
) .
544 Html
::hidden( 'wpEditToken', $this->getUser()->getEditToken( $this->mTarget
) ) .
546 'conflictcheck-originalgroups',
547 implode( ',', $user->getGroups() )
548 ) . // Conflict detection
549 Xml
::openElement( 'fieldset' ) .
553 $this->msg( 'userrights-editusergroup', $user->getName() )->text()
555 $this->msg( 'editinguser' )->params( wfEscapeWikiText( $user->getName() ) )
556 ->rawParams( $userToolLinks )->parse() .
557 $this->msg( 'userrights-groups-help', $user->getName() )->parse() .
559 $this->groupCheckboxes( $groups, $user ) .
560 Xml
::openElement( 'table', array( 'id' => 'mw-userrights-table-outer' ) ) .
562 <td class='mw-label'>" .
563 Xml
::label( $this->msg( 'userrights-reason' )->text(), 'wpReason' ) .
565 <td class='mw-input'>" .
566 Xml
::input( 'user-reason', 60, $this->getRequest()->getVal( 'user-reason', false ),
567 array( 'id' => 'wpReason', 'maxlength' => 255 ) ) .
572 <td class='mw-submit'>" .
573 Xml
::submitButton( $this->msg( 'saveusergroups' )->text(),
574 array( 'name' => 'saveusergroups' ) +
575 Linker
::tooltipAndAccesskeyAttribs( 'userrights-set' )
579 Xml
::closeElement( 'table' ) . "\n" .
580 Xml
::closeElement( 'fieldset' ) .
581 Xml
::closeElement( 'form' ) . "\n"
586 * Format a link to a group description page
588 * @param string $group
591 private static function buildGroupLink( $group ) {
592 return User
::makeGroupLinkHtml( $group, User
::getGroupName( $group ) );
596 * Format a link to a group member description page
598 * @param string $group
601 private static function buildGroupMemberLink( $group ) {
602 return User
::makeGroupLinkHtml( $group, User
::getGroupMember( $group ) );
606 * Returns an array of all groups that may be edited
607 * @return array Array of groups that may be edited.
609 protected static function getAllGroups() {
610 return User
::getAllGroups();
614 * Adds a table with checkboxes where you can select what groups to add/remove
616 * @todo Just pass the username string?
617 * @param array $usergroups Groups the user belongs to
619 * @return string XHTML table element with checkboxes
621 private function groupCheckboxes( $usergroups, $user ) {
622 $allgroups = $this->getAllGroups();
625 // Put all column info into an associative array so that extensions can
626 // more easily manage it.
627 $columns = array( 'unchangeable' => array(), 'changeable' => array() );
629 foreach ( $allgroups as $group ) {
630 $set = in_array( $group, $usergroups );
631 // Should the checkbox be disabled?
633 ( $set && $this->canRemove( $group ) ) ||
634 ( !$set && $this->canAdd( $group ) ) );
635 // Do we need to point out that this action is irreversible?
636 $irreversible = !$disabled && (
637 ( $set && !$this->canAdd( $group ) ) ||
638 ( !$set && !$this->canRemove( $group ) ) );
642 'disabled' => $disabled,
643 'irreversible' => $irreversible
647 $columns['unchangeable'][$group] = $checkbox;
649 $columns['changeable'][$group] = $checkbox;
653 // Build the HTML table
654 $ret .= Xml
::openElement( 'table', array( 'class' => 'mw-userrights-groups' ) ) .
656 foreach ( $columns as $name => $column ) {
657 if ( $column === array() ) {
660 // Messages: userrights-changeable-col, userrights-unchangeable-col
661 $ret .= Xml
::element(
664 $this->msg( 'userrights-' . $name . '-col', count( $column ) )->text()
668 $ret .= "</tr>\n<tr>\n";
669 foreach ( $columns as $column ) {
670 if ( $column === array() ) {
673 $ret .= "\t<td style='vertical-align:top;'>\n";
674 foreach ( $column as $group => $checkbox ) {
675 $attr = $checkbox['disabled'] ?
array( 'disabled' => 'disabled' ) : array();
677 $member = User
::getGroupMember( $group, $user->getName() );
678 if ( $checkbox['irreversible'] ) {
679 $text = $this->msg( 'userrights-irreversible-marker', $member )->text();
683 $checkboxHtml = Xml
::checkLabel( $text, "wpGroup-" . $group,
684 "wpGroup-" . $group, $checkbox['set'], $attr );
685 $ret .= "\t\t" . ( $checkbox['disabled']
686 ? Xml
::tags( 'span', array( 'class' => 'mw-userrights-disabled' ), $checkboxHtml )
692 $ret .= Xml
::closeElement( 'tr' ) . Xml
::closeElement( 'table' );
698 * @param string $group The name of the group to check
699 * @return bool Can we remove the group?
701 private function canRemove( $group ) {
702 // $this->changeableGroups()['remove'] doesn't work, of course. Thanks, PHP.
703 $groups = $this->changeableGroups();
707 $groups['remove'] ) ||
( $this->isself
&& in_array( $group, $groups['remove-self'] )
712 * @param string $group The name of the group to check
713 * @return bool Can we add the group?
715 private function canAdd( $group ) {
716 $groups = $this->changeableGroups();
720 $groups['add'] ) ||
( $this->isself
&& in_array( $group, $groups['add-self'] )
725 * Returns $this->getUser()->changeableGroups()
727 * @return array Array(
728 * 'add' => array( addablegroups ),
729 * 'remove' => array( removablegroups ),
730 * 'add-self' => array( addablegroups to self ),
731 * 'remove-self' => array( removable groups from self )
734 function changeableGroups() {
735 return $this->getUser()->changeableGroups();
739 * Show a rights log fragment for the specified user
741 * @param User $user User to show log for
742 * @param OutputPage $output OutputPage to use
744 protected function showLogFragment( $user, $output ) {
745 $rightsLogPage = new LogPage( 'rights' );
746 $output->addHTML( Xml
::element( 'h2', null, $rightsLogPage->getName()->text() ) );
747 LogEventsList
::showLogExtract( $output, 'rights', $user->getUserPage() );
750 protected function getGroupName() {