Add rate limiter to Special:ConfirmEmail
[lhc/web/wiklou.git] / includes / specials / SpecialPasswordPolicies.php
1 <?php
2 /**
3 * Implements Special:PasswordPolicies
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 use MediaWiki\MediaWikiServices;
25
26 /**
27 * This special page lists the defined password policies for user groups.
28 * See also @ref $wgPasswordPolicy.
29 *
30 * @ingroup SpecialPage
31 * @since 1.32
32 */
33 class SpecialPasswordPolicies extends SpecialPage {
34 public function __construct() {
35 parent::__construct( 'PasswordPolicies' );
36 }
37
38 /**
39 * Show the special page
40 * @param string|null $par
41 */
42 public function execute( $par ) {
43 $this->setHeaders();
44 $this->outputHeader();
45
46 $out = $this->getOutput();
47 $out->addModuleStyles( 'mediawiki.special' );
48
49 // TODO: Have specific user documentation page for this feature
50 $this->addHelpLink( 'Manual:$wgPasswordPolicy' );
51
52 $out->addHTML(
53 Xml::openElement( 'table', [ 'class' => 'wikitable mw-passwordpolicies-table' ] ) .
54 '<tr>' .
55 Xml::element( 'th', null, $this->msg( 'passwordpolicies-group' )->text() ) .
56 Xml::element( 'th', null, $this->msg( 'passwordpolicies-policies' )->text() ) .
57 '</tr>'
58 );
59
60 $config = $this->getConfig();
61 $policies = $config->get( 'PasswordPolicy' );
62
63 $groupPermissions = $config->get( 'GroupPermissions' );
64 $revokePermissions = $config->get( 'RevokePermissions' );
65 $addGroups = $config->get( 'AddGroups' );
66 $removeGroups = $config->get( 'RemoveGroups' );
67 $groupsAddToSelf = $config->get( 'GroupsAddToSelf' );
68 $groupsRemoveFromSelf = $config->get( 'GroupsRemoveFromSelf' );
69 $allGroups = array_unique( array_merge(
70 array_keys( $groupPermissions ),
71 array_keys( $revokePermissions ),
72 array_keys( $addGroups ),
73 array_keys( $removeGroups ),
74 array_keys( $groupsAddToSelf ),
75 array_keys( $groupsRemoveFromSelf )
76 ) );
77 asort( $allGroups );
78
79 $linkRenderer = $this->getLinkRenderer();
80
81 foreach ( $allGroups as $group ) {
82 if ( $group == '*' ) {
83 continue;
84 }
85
86 $groupnameLocalized = UserGroupMembership::getGroupName( $group );
87
88 $grouppageLocalizedTitle = UserGroupMembership::getGroupPage( $group )
89 ?: Title::newFromText( MediaWikiServices::getInstance()->getNamespaceInfo()->
90 getCanonicalName( NS_PROJECT ) . ':' . $group );
91
92 $grouppage = $linkRenderer->makeLink(
93 $grouppageLocalizedTitle,
94 $groupnameLocalized
95 );
96
97 if ( $group === 'user' ) {
98 // Link to Special:listusers for implicit group 'user'
99 $grouplink = '<br />' . $linkRenderer->makeKnownLink(
100 SpecialPage::getTitleFor( 'Listusers' ),
101 $this->msg( 'listgrouprights-members' )->text()
102 );
103 } elseif ( !in_array( $group, $config->get( 'ImplicitGroups' ) ) ) {
104 $grouplink = '<br />' . $linkRenderer->makeKnownLink(
105 SpecialPage::getTitleFor( 'Listusers' ),
106 $this->msg( 'listgrouprights-members' )->text(),
107 [],
108 [ 'group' => $group ]
109 );
110 } else {
111 // No link to Special:listusers for other implicit groups as they are unlistable
112 $grouplink = '';
113 }
114
115 $out->addHTML( Html::rawElement( 'tr', [ 'id' => Sanitizer::escapeIdForAttribute( $group ) ], "
116 <td>$grouppage$grouplink</td>
117 <td>" . $this->formatPolicies( $policies, $group ) . '</td>
118 '
119 ) );
120
121 }
122
123 $out->addHTML( Xml::closeElement( 'table' ) );
124 }
125
126 /**
127 * Create a HTML list of password policies for $group
128 *
129 * @param array $policies Original $wgPasswordPolicy array
130 * @param string $group Group to format password policies for
131 *
132 * @return string HTML list of all applied password policies
133 */
134 private function formatPolicies( $policies, $group ) {
135 $groupPolicies = UserPasswordPolicy::getPoliciesForGroups(
136 $policies['policies'],
137 [ $group ],
138 $policies['policies']['default']
139 );
140
141 $ret = [];
142 foreach ( $groupPolicies as $gp => $settings ) {
143 if ( !is_array( $settings ) ) {
144 $settings = [ 'value' => $settings ];
145 }
146 $val = $settings['value'];
147 $flags = array_diff_key( $settings, [ 'value' => true ] );
148 if ( !$val ) {
149 // Policy isn't enabled, so no need to display it
150 continue;
151 }
152 $msg = $this->msg( 'passwordpolicies-policy-' . strtolower( $gp ) )->numParams( $val );
153 $flagMsgs = [];
154 foreach ( array_filter( $flags ) as $flag => $value ) {
155 $flagMsg = $this->msg( 'passwordpolicies-policyflag-' . strtolower( $flag ) );
156 $flagMsg->params( $value );
157 $flagMsgs[] = $flagMsg;
158 }
159 if ( $flagMsgs ) {
160 $ret[] = $this->msg(
161 'passwordpolicies-policy-displaywithflags',
162 $msg,
163 '<span class="mw-passwordpolicies-policy-name">' . $gp . '</span>',
164 $this->getLanguage()->commaList( $flagMsgs )
165 )->parse();
166 } else {
167 $ret[] = $this->msg(
168 'passwordpolicies-policy-display',
169 $msg,
170 '<span class="mw-passwordpolicies-policy-name">' . $gp . '</span>'
171 )->parse();
172 }
173 }
174 if ( $ret === [] ) {
175 return '';
176 } else {
177 return '<ul><li>' . implode( "</li>\n<li>", $ret ) . '</li></ul>';
178 }
179 }
180
181 protected function getGroupName() {
182 return 'users';
183 }
184 }