MediaWiki REL1_33
SpecialPasswordPolicies.php
Go to the documentation of this file.
1<?php
32 public function __construct() {
33 parent::__construct( 'PasswordPolicies' );
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 // TODO: Have specific user documentation page for this feature
48 $this->addHelpLink( 'Manual:$wgPasswordPolicy' );
49
50 $out->addHTML(
51 Xml::openElement( 'table', [ 'class' => 'wikitable mw-passwordpolicies-table' ] ) .
52 '<tr>' .
53 Xml::element( 'th', null, $this->msg( 'passwordpolicies-group' )->text() ) .
54 Xml::element( 'th', null, $this->msg( 'passwordpolicies-policies' )->text() ) .
55 '</tr>'
56 );
57
58 $config = $this->getConfig();
59 $policies = $config->get( 'PasswordPolicy' );
60
61 $groupPermissions = $config->get( 'GroupPermissions' );
62 $revokePermissions = $config->get( 'RevokePermissions' );
63 $addGroups = $config->get( 'AddGroups' );
64 $removeGroups = $config->get( 'RemoveGroups' );
65 $groupsAddToSelf = $config->get( 'GroupsAddToSelf' );
66 $groupsRemoveFromSelf = $config->get( 'GroupsRemoveFromSelf' );
67 $allGroups = array_unique( array_merge(
68 array_keys( $groupPermissions ),
69 array_keys( $revokePermissions ),
70 array_keys( $addGroups ),
71 array_keys( $removeGroups ),
72 array_keys( $groupsAddToSelf ),
73 array_keys( $groupsRemoveFromSelf )
74 ) );
75 asort( $allGroups );
76
78
79 foreach ( $allGroups as $group ) {
80 if ( $group == '*' ) {
81 continue;
82 }
83
84 $groupnameLocalized = UserGroupMembership::getGroupName( $group );
85
86 $grouppageLocalizedTitle = UserGroupMembership::getGroupPage( $group )
87 ?: Title::newFromText( MWNamespace::getCanonicalName( NS_PROJECT ) . ':' . $group );
88
89 $grouppage = $linkRenderer->makeLink(
90 $grouppageLocalizedTitle,
91 $groupnameLocalized
92 );
93
94 if ( $group === 'user' ) {
95 // Link to Special:listusers for implicit group 'user'
96 $grouplink = '<br />' . $linkRenderer->makeKnownLink(
97 SpecialPage::getTitleFor( 'Listusers' ),
98 $this->msg( 'listgrouprights-members' )->text()
99 );
100 } elseif ( !in_array( $group, $config->get( 'ImplicitGroups' ) ) ) {
101 $grouplink = '<br />' . $linkRenderer->makeKnownLink(
102 SpecialPage::getTitleFor( 'Listusers' ),
103 $this->msg( 'listgrouprights-members' )->text(),
104 [],
105 [ 'group' => $group ]
106 );
107 } else {
108 // No link to Special:listusers for other implicit groups as they are unlistable
109 $grouplink = '';
110 }
111
112 $out->addHTML( Html::rawElement( 'tr', [ 'id' => Sanitizer::escapeIdForAttribute( $group ) ], "
113 <td>$grouppage$grouplink</td>
114 <td>" . $this->formatPolicies( $policies, $group ) . '</td>
115 '
116 ) );
117
118 }
119
120 $out->addHTML( Xml::closeElement( 'table' ) );
121 }
122
131 private function formatPolicies( $policies, $group ) {
133 $policies['policies'],
134 [ $group ],
135 $policies['policies']['default']
136 );
137
138 $ret = [];
139 foreach ( $groupPolicies as $gp => $settings ) {
140 if ( !is_array( $settings ) ) {
141 $settings = [ 'value' => $settings ];
142 }
143 $val = $settings['value'];
144 $flags = array_diff_key( $settings, [ 'value' => true ] );
145 if ( !$val ) {
146 // Policy isn't enabled, so no need to display it
147 continue;
148 }
149 $msg = $this->msg( 'passwordpolicies-policy-' . strtolower( $gp ) )->numParams( $val );
150 $flagMsgs = [];
151 foreach ( array_filter( $flags ) as $flag => $value ) {
152 $flagMsg = $this->msg( 'passwordpolicies-policyflag-' . strtolower( $flag ) );
153 $flagMsg->params( $value );
154 $flagMsgs[] = $flagMsg;
155 }
156 if ( $flagMsgs ) {
157 $ret[] = $this->msg(
158 'passwordpolicies-policy-displaywithflags',
159 $msg,
160 '<span class="mw-passwordpolicies-policy-name">' . $gp . '</span>',
161 $this->getLanguage()->commaList( $flagMsgs )
162 )->parse();
163 } else {
164 $ret[] = $this->msg(
165 'passwordpolicies-policy-display',
166 $msg,
167 '<span class="mw-passwordpolicies-policy-name">' . $gp . '</span>'
168 )->parse();
169 }
170 }
171 if ( $ret === [] ) {
172 return '';
173 } else {
174 return '<ul><li>' . implode( "</li>\n<li>", $ret ) . '</li></ul>';
175 }
176 }
177
178 protected function getGroupName() {
179 return 'users';
180 }
181}
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
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,...
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getLanguage()
Shortcut to get user's language.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
MediaWiki Linker LinkRenderer null $linkRenderer
This special page lists the defined password policies for user groups.
formatPolicies( $policies, $group)
Create a HTML list of password policies for $group.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
execute( $par)
Show the special page.
static getPoliciesForGroups(array $policies, array $userGroups, array $defaultPolicy)
Utility function to get the effective policy from a list of policies, based on a list of groups.
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
const NS_PROJECT
Definition Defines.php:77
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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:855
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2003
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:37