3 * Implements Special:Listgrouprights
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 * This special page lists all defined user groups and the associated rights.
26 * See also @ref $wgGroupPermissions.
28 * @ingroup SpecialPage
29 * @author Petr Kadlec <mormegil@centrum.cz>
31 class SpecialListGroupRights
extends SpecialPage
{
32 function __construct() {
33 parent
::__construct( 'Listgrouprights' );
37 * Show the special page
38 * @param string|null $par
40 public function execute( $par ) {
42 $this->outputHeader();
44 $out = $this->getOutput();
45 $out->addModuleStyles( 'mediawiki.special' );
47 $out->wrapWikiMsg( "<div class=\"mw-listgrouprights-key\">\n$1\n</div>", 'listgrouprights-key' );
50 Xml
::openElement( 'table', [ 'class' => 'wikitable mw-listgrouprights-table' ] ) .
52 Xml
::element( 'th', null, $this->msg( 'listgrouprights-group' )->text() ) .
53 Xml
::element( 'th', null, $this->msg( 'listgrouprights-rights' )->text() ) .
57 $config = $this->getConfig();
58 $groupPermissions = $config->get( 'GroupPermissions' );
59 $revokePermissions = $config->get( 'RevokePermissions' );
60 $addGroups = $config->get( 'AddGroups' );
61 $removeGroups = $config->get( 'RemoveGroups' );
62 $groupsAddToSelf = $config->get( 'GroupsAddToSelf' );
63 $groupsRemoveFromSelf = $config->get( 'GroupsRemoveFromSelf' );
64 $allGroups = array_unique( array_merge(
65 array_keys( $groupPermissions ),
66 array_keys( $revokePermissions ),
67 array_keys( $addGroups ),
68 array_keys( $removeGroups ),
69 array_keys( $groupsAddToSelf ),
70 array_keys( $groupsRemoveFromSelf )
74 $linkRenderer = $this->getLinkRenderer();
76 foreach ( $allGroups as $group ) {
77 $permissions = isset( $groupPermissions[$group] )
78 ?
$groupPermissions[$group]
80 $groupname = ( $group == '*' ) // Replace * with a more descriptive groupname
84 $msg = $this->msg( 'group-' . $groupname );
85 $groupnameLocalized = !$msg->isBlank() ?
$msg->text() : $groupname;
87 $msg = $this->msg( 'grouppage-' . $groupname )->inContentLanguage();
88 $grouppageLocalized = !$msg->isBlank() ?
90 MWNamespace
::getCanonicalName( NS_PROJECT
) . ':' . $groupname;
91 $grouppageLocalizedTitle = Title
::newFromText( $grouppageLocalized );
93 if ( $group == '*' ||
!$grouppageLocalizedTitle ) {
94 // Do not make a link for the generic * group or group with invalid group page
95 $grouppage = htmlspecialchars( $groupnameLocalized );
97 $grouppage = $linkRenderer->makeLink(
98 $grouppageLocalizedTitle,
103 if ( $group === 'user' ) {
104 // Link to Special:listusers for implicit group 'user'
105 $grouplink = '<br />' . $linkRenderer->makeKnownLink(
106 SpecialPage
::getTitleFor( 'Listusers' ),
107 $this->msg( 'listgrouprights-members' )->text()
109 } elseif ( !in_array( $group, $config->get( 'ImplicitGroups' ) ) ) {
110 $grouplink = '<br />' . $linkRenderer->makeKnownLink(
111 SpecialPage
::getTitleFor( 'Listusers' ),
112 $this->msg( 'listgrouprights-members' )->text(),
114 [ 'group' => $group ]
117 // No link to Special:listusers for other implicit groups as they are unlistable
121 $revoke = isset( $revokePermissions[$group] ) ?
$revokePermissions[$group] : [];
122 $addgroups = isset( $addGroups[$group] ) ?
$addGroups[$group] : [];
123 $removegroups = isset( $removeGroups[$group] ) ?
$removeGroups[$group] : [];
124 $addgroupsSelf = isset( $groupsAddToSelf[$group] ) ?
$groupsAddToSelf[$group] : [];
125 $removegroupsSelf = isset( $groupsRemoveFromSelf[$group] )
126 ?
$groupsRemoveFromSelf[$group]
129 $id = $group == '*' ?
false : Sanitizer
::escapeId( $group );
130 $out->addHTML( Html
::rawElement( 'tr', [ 'id' => $id ], "
131 <td>$grouppage$grouplink</td>
133 $this->formatPermissions( $permissions, $revoke, $addgroups, $removegroups,
134 $addgroupsSelf, $removegroupsSelf ) .
139 $out->addHTML( Xml
::closeElement( 'table' ) );
140 $this->outputNamespaceProtectionInfo();
143 private function outputNamespaceProtectionInfo() {
144 global $wgParser, $wgContLang;
145 $out = $this->getOutput();
146 $namespaceProtection = $this->getConfig()->get( 'NamespaceProtection' );
148 if ( count( $namespaceProtection ) == 0 ) {
152 $header = $this->msg( 'listgrouprights-namespaceprotection-header' )->parse();
154 Html
::rawElement( 'h2', [], Html
::element( 'span', [
155 'class' => 'mw-headline',
156 'id' => $wgParser->guessSectionNameFromWikiText( $header )
158 Xml
::openElement( 'table', [ 'class' => 'wikitable' ] ) .
162 $this->msg( 'listgrouprights-namespaceprotection-namespace' )->text()
167 $this->msg( 'listgrouprights-namespaceprotection-restrictedto' )->text()
170 $linkRenderer = $this->getLinkRenderer();
171 ksort( $namespaceProtection );
172 foreach ( $namespaceProtection as $namespace => $rights ) {
173 if ( !in_array( $namespace, MWNamespace
::getValidNamespaces() ) ) {
177 if ( $namespace == NS_MAIN
) {
178 $namespaceText = $this->msg( 'blanknamespace' )->text();
180 $namespaceText = $wgContLang->convertNamespace( $namespace );
184 Xml
::openElement( 'tr' ) .
188 $linkRenderer->makeLink(
189 SpecialPage
::getTitleFor( 'Allpages' ),
192 [ 'namespace' => $namespace ]
195 Xml
::openElement( 'td' ) . Xml
::openElement( 'ul' )
198 if ( !is_array( $rights ) ) {
199 $rights = [ $rights ];
202 foreach ( $rights as $right ) {
204 Html
::rawElement( 'li', [], $this->msg(
205 'listgrouprights-right-display',
206 User
::getRightDescription( $right ),
209 [ 'class' => 'mw-listgrouprights-right-name' ],
217 Xml
::closeElement( 'ul' ) .
218 Xml
::closeElement( 'td' ) .
219 Xml
::closeElement( 'tr' )
222 $out->addHTML( Xml
::closeElement( 'table' ) );
226 * Create a user-readable list of permissions from the given array.
228 * @param array $permissions Array of permission => bool (from $wgGroupPermissions items)
229 * @param array $revoke Array of permission => bool (from $wgRevokePermissions items)
230 * @param array $add Array of groups this group is allowed to add or true
231 * @param array $remove Array of groups this group is allowed to remove or true
232 * @param array $addSelf Array of groups this group is allowed to add to self or true
233 * @param array $removeSelf Array of group this group is allowed to remove from self or true
234 * @return string List of all granted permissions, separated by comma separator
236 private function formatPermissions( $permissions, $revoke, $add, $remove, $addSelf, $removeSelf ) {
238 foreach ( $permissions as $permission => $granted ) {
239 // show as granted only if it isn't revoked to prevent duplicate display of permissions
240 if ( $granted && ( !isset( $revoke[$permission] ) ||
!$revoke[$permission] ) ) {
241 $r[] = $this->msg( 'listgrouprights-right-display',
242 User
::getRightDescription( $permission ),
243 '<span class="mw-listgrouprights-right-name">' . $permission . '</span>'
247 foreach ( $revoke as $permission => $revoked ) {
249 $r[] = $this->msg( 'listgrouprights-right-revoked',
250 User
::getRightDescription( $permission ),
251 '<span class="mw-listgrouprights-right-name">' . $permission . '</span>'
258 $lang = $this->getLanguage();
259 $allGroups = User
::getAllGroups();
263 'removegroup' => $remove,
264 'addgroup-self' => $addSelf,
265 'removegroup-self' => $removeSelf
268 foreach ( $changeGroups as $messageKey => $changeGroup ) {
269 if ( $changeGroup === true ) {
270 // For grep: listgrouprights-addgroup-all, listgrouprights-removegroup-all,
271 // listgrouprights-addgroup-self-all, listgrouprights-removegroup-self-all
272 $r[] = $this->msg( 'listgrouprights-' . $messageKey . '-all' )->escaped();
273 } elseif ( is_array( $changeGroup ) ) {
274 $changeGroup = array_intersect( array_values( array_unique( $changeGroup ) ), $allGroups );
275 if ( count( $changeGroup ) ) {
276 // For grep: listgrouprights-addgroup, listgrouprights-removegroup,
277 // listgrouprights-addgroup-self, listgrouprights-removegroup-self
278 $r[] = $this->msg( 'listgrouprights-' . $messageKey,
279 $lang->listToText( array_map( [ 'User', 'makeGroupLinkWiki' ], $changeGroup ) ),
280 count( $changeGroup )
289 return '<ul><li>' . implode( "</li>\n<li>", $r ) . '</li></ul>';
293 protected function getGroupName() {