1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
<?php
/**
* Implements Special:PasswordPolicies
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup SpecialPage
*/
use MediaWiki\MediaWikiServices;
/**
* This special page lists the defined password policies for user groups.
* See also @ref $wgPasswordPolicy.
*
* @ingroup SpecialPage
* @since 1.32
*/
class SpecialPasswordPolicies extends SpecialPage {
public function __construct() {
parent::__construct( 'PasswordPolicies' );
}
/**
* Show the special page
* @param string|null $par
*/
public function execute( $par ) {
$this->setHeaders();
$this->outputHeader();
$out = $this->getOutput();
$out->addModuleStyles( 'mediawiki.special' );
// TODO: Have specific user documentation page for this feature
$this->addHelpLink( 'Manual:$wgPasswordPolicy' );
$out->addHTML(
Xml::openElement( 'table', [ 'class' => 'wikitable mw-passwordpolicies-table' ] ) .
'<tr>' .
Xml::element( 'th', null, $this->msg( 'passwordpolicies-group' )->text() ) .
Xml::element( 'th', null, $this->msg( 'passwordpolicies-policies' )->text() ) .
'</tr>'
);
$config = $this->getConfig();
$policies = $config->get( 'PasswordPolicy' );
$groupPermissions = $config->get( 'GroupPermissions' );
$revokePermissions = $config->get( 'RevokePermissions' );
$addGroups = $config->get( 'AddGroups' );
$removeGroups = $config->get( 'RemoveGroups' );
$groupsAddToSelf = $config->get( 'GroupsAddToSelf' );
$groupsRemoveFromSelf = $config->get( 'GroupsRemoveFromSelf' );
$allGroups = array_unique( array_merge(
array_keys( $groupPermissions ),
array_keys( $revokePermissions ),
array_keys( $addGroups ),
array_keys( $removeGroups ),
array_keys( $groupsAddToSelf ),
array_keys( $groupsRemoveFromSelf )
) );
asort( $allGroups );
$linkRenderer = $this->getLinkRenderer();
foreach ( $allGroups as $group ) {
if ( $group == '*' ) {
continue;
}
$groupnameLocalized = UserGroupMembership::getGroupName( $group );
$grouppageLocalizedTitle = UserGroupMembership::getGroupPage( $group )
?: Title::newFromText( MediaWikiServices::getInstance()->getNamespaceInfo()->
getCanonicalName( NS_PROJECT ) . ':' . $group );
$grouppage = $linkRenderer->makeLink(
$grouppageLocalizedTitle,
$groupnameLocalized
);
if ( $group === 'user' ) {
// Link to Special:listusers for implicit group 'user'
$grouplink = '<br />' . $linkRenderer->makeKnownLink(
SpecialPage::getTitleFor( 'Listusers' ),
$this->msg( 'listgrouprights-members' )->text()
);
} elseif ( !in_array( $group, $config->get( 'ImplicitGroups' ) ) ) {
$grouplink = '<br />' . $linkRenderer->makeKnownLink(
SpecialPage::getTitleFor( 'Listusers' ),
$this->msg( 'listgrouprights-members' )->text(),
[],
[ 'group' => $group ]
);
} else {
// No link to Special:listusers for other implicit groups as they are unlistable
$grouplink = '';
}
$out->addHTML( Html::rawElement( 'tr', [ 'id' => Sanitizer::escapeIdForAttribute( $group ) ], "
<td>$grouppage$grouplink</td>
<td>" . $this->formatPolicies( $policies, $group ) . '</td>
'
) );
}
$out->addHTML( Xml::closeElement( 'table' ) );
}
/**
* Create a HTML list of password policies for $group
*
* @param array $policies Original $wgPasswordPolicy array
* @param string $group Group to format password policies for
*
* @return string HTML list of all applied password policies
*/
private function formatPolicies( $policies, $group ) {
$groupPolicies = UserPasswordPolicy::getPoliciesForGroups(
$policies['policies'],
[ $group ],
$policies['policies']['default']
);
$ret = [];
foreach ( $groupPolicies as $gp => $settings ) {
if ( !is_array( $settings ) ) {
$settings = [ 'value' => $settings ];
}
$val = $settings['value'];
$flags = array_diff_key( $settings, [ 'value' => true ] );
if ( !$val ) {
// Policy isn't enabled, so no need to display it
continue;
}
$msg = $this->msg( 'passwordpolicies-policy-' . strtolower( $gp ) )->numParams( $val );
$flagMsgs = [];
foreach ( array_filter( $flags ) as $flag => $value ) {
$flagMsg = $this->msg( 'passwordpolicies-policyflag-' . strtolower( $flag ) );
$flagMsg->params( $value );
$flagMsgs[] = $flagMsg;
}
if ( $flagMsgs ) {
$ret[] = $this->msg(
'passwordpolicies-policy-displaywithflags',
$msg,
'<span class="mw-passwordpolicies-policy-name">' . $gp . '</span>',
$this->getLanguage()->commaList( $flagMsgs )
)->parse();
} else {
$ret[] = $this->msg(
'passwordpolicies-policy-display',
$msg,
'<span class="mw-passwordpolicies-policy-name">' . $gp . '</span>'
)->parse();
}
}
if ( $ret === [] ) {
return '';
} else {
return '<ul><li>' . implode( "</li>\n<li>", $ret ) . '</li></ul>';
}
}
protected function getGroupName() {
return 'users';
}
}
|