MediaWiki  1.31.0
SpecialListgrouprights.php
Go to the documentation of this file.
1 <?php
32  public function __construct() {
33  parent::__construct( 'Listgrouprights' );
34  }
35 
40  public function execute( $par ) {
41  $this->setHeaders();
42  $this->outputHeader();
43 
44  $out = $this->getOutput();
45  $out->addModuleStyles( 'mediawiki.special' );
46 
47  $out->wrapWikiMsg( "<div class=\"mw-listgrouprights-key\">\n$1\n</div>", 'listgrouprights-key' );
48 
49  $out->addHTML(
50  Xml::openElement( 'table', [ 'class' => 'wikitable mw-listgrouprights-table' ] ) .
51  '<tr>' .
52  Xml::element( 'th', null, $this->msg( 'listgrouprights-group' )->text() ) .
53  Xml::element( 'th', null, $this->msg( 'listgrouprights-rights' )->text() ) .
54  '</tr>'
55  );
56 
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 )
71  ) );
72  asort( $allGroups );
73 
74  $linkRenderer = $this->getLinkRenderer();
75 
76  foreach ( $allGroups as $group ) {
77  $permissions = isset( $groupPermissions[$group] )
78  ? $groupPermissions[$group]
79  : [];
80  $groupname = ( $group == '*' ) // Replace * with a more descriptive groupname
81  ? 'all'
82  : $group;
83 
84  $groupnameLocalized = UserGroupMembership::getGroupName( $groupname );
85 
86  $grouppageLocalizedTitle = UserGroupMembership::getGroupPage( $groupname )
88 
89  if ( $group == '*' || !$grouppageLocalizedTitle ) {
90  // Do not make a link for the generic * group or group with invalid group page
91  $grouppage = htmlspecialchars( $groupnameLocalized );
92  } else {
93  $grouppage = $linkRenderer->makeLink(
94  $grouppageLocalizedTitle,
95  $groupnameLocalized
96  );
97  }
98 
99  if ( $group === 'user' ) {
100  // Link to Special:listusers for implicit group 'user'
101  $grouplink = '<br />' . $linkRenderer->makeKnownLink(
102  SpecialPage::getTitleFor( 'Listusers' ),
103  $this->msg( 'listgrouprights-members' )->text()
104  );
105  } elseif ( !in_array( $group, $config->get( 'ImplicitGroups' ) ) ) {
106  $grouplink = '<br />' . $linkRenderer->makeKnownLink(
107  SpecialPage::getTitleFor( 'Listusers' ),
108  $this->msg( 'listgrouprights-members' )->text(),
109  [],
110  [ 'group' => $group ]
111  );
112  } else {
113  // No link to Special:listusers for other implicit groups as they are unlistable
114  $grouplink = '';
115  }
116 
117  $revoke = isset( $revokePermissions[$group] ) ? $revokePermissions[$group] : [];
118  $addgroups = isset( $addGroups[$group] ) ? $addGroups[$group] : [];
119  $removegroups = isset( $removeGroups[$group] ) ? $removeGroups[$group] : [];
120  $addgroupsSelf = isset( $groupsAddToSelf[$group] ) ? $groupsAddToSelf[$group] : [];
121  $removegroupsSelf = isset( $groupsRemoveFromSelf[$group] )
122  ? $groupsRemoveFromSelf[$group]
123  : [];
124 
125  $id = $group == '*' ? false : Sanitizer::escapeIdForAttribute( $group );
126  $out->addHTML( Html::rawElement( 'tr', [ 'id' => $id ], "
127  <td>$grouppage$grouplink</td>
128  <td>" .
129  $this->formatPermissions( $permissions, $revoke, $addgroups, $removegroups,
130  $addgroupsSelf, $removegroupsSelf ) .
131  '</td>
132  '
133  ) );
134  }
135  $out->addHTML( Xml::closeElement( 'table' ) );
137  }
138 
139  private function outputNamespaceProtectionInfo() {
141  $out = $this->getOutput();
142  $namespaceProtection = $this->getConfig()->get( 'NamespaceProtection' );
143 
144  if ( count( $namespaceProtection ) == 0 ) {
145  return;
146  }
147 
148  $header = $this->msg( 'listgrouprights-namespaceprotection-header' )->text();
149  $out->addHTML(
150  Html::rawElement( 'h2', [], Html::element( 'span', [
151  'class' => 'mw-headline',
152  'id' => substr( Parser::guessSectionNameFromStrippedText( $header ), 1 )
153  ], $header ) ) .
154  Xml::openElement( 'table', [ 'class' => 'wikitable' ] ) .
156  'th',
157  [],
158  $this->msg( 'listgrouprights-namespaceprotection-namespace' )->text()
159  ) .
161  'th',
162  [],
163  $this->msg( 'listgrouprights-namespaceprotection-restrictedto' )->text()
164  )
165  );
166  $linkRenderer = $this->getLinkRenderer();
167  ksort( $namespaceProtection );
168  foreach ( $namespaceProtection as $namespace => $rights ) {
169  if ( !in_array( $namespace, MWNamespace::getValidNamespaces() ) ) {
170  continue;
171  }
172 
173  if ( $namespace == NS_MAIN ) {
174  $namespaceText = $this->msg( 'blanknamespace' )->text();
175  } else {
176  $namespaceText = $wgContLang->convertNamespace( $namespace );
177  }
178 
179  $out->addHTML(
180  Xml::openElement( 'tr' ) .
182  'td',
183  [],
184  $linkRenderer->makeLink(
185  SpecialPage::getTitleFor( 'Allpages' ),
186  $namespaceText,
187  [],
188  [ 'namespace' => $namespace ]
189  )
190  ) .
191  Xml::openElement( 'td' ) . Xml::openElement( 'ul' )
192  );
193 
194  if ( !is_array( $rights ) ) {
195  $rights = [ $rights ];
196  }
197 
198  foreach ( $rights as $right ) {
199  $out->addHTML(
200  Html::rawElement( 'li', [], $this->msg(
201  'listgrouprights-right-display',
202  User::getRightDescription( $right ),
204  'span',
205  [ 'class' => 'mw-listgrouprights-right-name' ],
206  $right
207  )
208  )->parse() )
209  );
210  }
211 
212  $out->addHTML(
213  Xml::closeElement( 'ul' ) .
214  Xml::closeElement( 'td' ) .
215  Xml::closeElement( 'tr' )
216  );
217  }
218  $out->addHTML( Xml::closeElement( 'table' ) );
219  }
220 
232  private function formatPermissions( $permissions, $revoke, $add, $remove, $addSelf, $removeSelf ) {
233  $r = [];
234  foreach ( $permissions as $permission => $granted ) {
235  // show as granted only if it isn't revoked to prevent duplicate display of permissions
236  if ( $granted && ( !isset( $revoke[$permission] ) || !$revoke[$permission] ) ) {
237  $r[] = $this->msg( 'listgrouprights-right-display',
238  User::getRightDescription( $permission ),
239  '<span class="mw-listgrouprights-right-name">' . $permission . '</span>'
240  )->parse();
241  }
242  }
243  foreach ( $revoke as $permission => $revoked ) {
244  if ( $revoked ) {
245  $r[] = $this->msg( 'listgrouprights-right-revoked',
246  User::getRightDescription( $permission ),
247  '<span class="mw-listgrouprights-right-name">' . $permission . '</span>'
248  )->parse();
249  }
250  }
251 
252  sort( $r );
253 
254  $lang = $this->getLanguage();
255  $allGroups = User::getAllGroups();
256 
257  $changeGroups = [
258  'addgroup' => $add,
259  'removegroup' => $remove,
260  'addgroup-self' => $addSelf,
261  'removegroup-self' => $removeSelf
262  ];
263 
264  foreach ( $changeGroups as $messageKey => $changeGroup ) {
265  if ( $changeGroup === true ) {
266  // For grep: listgrouprights-addgroup-all, listgrouprights-removegroup-all,
267  // listgrouprights-addgroup-self-all, listgrouprights-removegroup-self-all
268  $r[] = $this->msg( 'listgrouprights-' . $messageKey . '-all' )->escaped();
269  } elseif ( is_array( $changeGroup ) ) {
270  $changeGroup = array_intersect( array_values( array_unique( $changeGroup ) ), $allGroups );
271  if ( count( $changeGroup ) ) {
272  $groupLinks = [];
273  foreach ( $changeGroup as $group ) {
274  $groupLinks[] = UserGroupMembership::getLink( $group, $this->getContext(), 'wiki' );
275  }
276  // For grep: listgrouprights-addgroup, listgrouprights-removegroup,
277  // listgrouprights-addgroup-self, listgrouprights-removegroup-self
278  $r[] = $this->msg( 'listgrouprights-' . $messageKey,
279  $lang->listToText( $groupLinks ), count( $changeGroup ) )->parse();
280  }
281  }
282  }
283 
284  if ( empty( $r ) ) {
285  return '';
286  } else {
287  return '<ul><li>' . implode( "</li>\n<li>", $r ) . '</li></ul>';
288  }
289  }
290 
291  protected function getGroupName() {
292  return 'users';
293  }
294 }
SpecialListGroupRights\execute
execute( $par)
Show the special page.
Definition: SpecialListgrouprights.php:40
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:273
SpecialPage\msg
msg( $key)
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:747
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
MWNamespace\getValidNamespaces
static getValidNamespaces()
Returns an array of the namespaces (by integer id) that exist on the wiki.
Definition: MWNamespace.php:290
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:676
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
captcha-old.count
count
Definition: captcha-old.py:249
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
UserGroupMembership\getGroupName
static getGroupName( $group)
Gets the localized friendly name for a group, if it exists.
Definition: UserGroupMembership.php:434
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
SpecialListGroupRights\outputNamespaceProtectionInfo
outputNamespaceProtectionInfo()
Definition: SpecialListgrouprights.php:139
SpecialPage\getLanguage
getLanguage()
Shortcut to get user's language.
Definition: SpecialPage.php:706
UserGroupMembership\getGroupPage
static getGroupPage( $group)
Gets the title of a page describing a particular user group.
Definition: UserGroupMembership.php:459
SpecialListGroupRights\__construct
__construct()
Definition: SpecialListgrouprights.php:32
Xml\openElement
static openElement( $element, $attribs=null)
This opens an XML element.
Definition: Xml.php:109
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
NS_MAIN
const NS_MAIN
Definition: Defines.php:65
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition: SpecialPage.php:715
NS_PROJECT
const NS_PROJECT
Definition: Defines.php:69
SpecialListGroupRights\formatPermissions
formatPermissions( $permissions, $revoke, $add, $remove, $addSelf, $removeSelf)
Create a user-readable list of permissions from the given array.
Definition: SpecialListgrouprights.php:232
UserGroupMembership\getLink
static getLink( $ugm, IContextSource $context, $format, $userName=null)
Gets a link for a user group, possibly including the expiry date if relevant.
Definition: UserGroupMembership.php:375
Xml\element
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
Definition: Xml.php:39
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:484
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
SpecialPage\getContext
getContext()
Gets the context this SpecialPage is executed in.
Definition: SpecialPage.php:649
$header
$header
Definition: updateCredits.php:35
SpecialPage
Parent class for all special pages.
Definition: SpecialPage.php:36
User\getAllGroups
static getAllGroups()
Return the set of defined explicit groups.
Definition: User.php:5021
SpecialPage\getLinkRenderer
getLinkRenderer()
Definition: SpecialPage.php:861
Xml\closeElement
static closeElement( $element)
Shortcut to close an XML element.
Definition: Xml.php:118
User\getRightDescription
static getRightDescription( $right)
Get the description of a given right.
Definition: User.php:5340
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Html\rawElement
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition: Html.php:209
SpecialListGroupRights\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Definition: SpecialListgrouprights.php:291
SpecialListGroupRights
This special page lists all defined user groups and the associated rights.
Definition: SpecialListgrouprights.php:31
SpecialPage\$linkRenderer
MediaWiki Linker LinkRenderer null $linkRenderer
Definition: SpecialPage.php:66
Html\element
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:231
SpecialPage\outputHeader
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
Definition: SpecialPage.php:583
MWNamespace\getCanonicalName
static getCanonicalName( $index)
Returns the canonical (English) name for a given index.
Definition: MWNamespace.php:255
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:783