123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <?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';
- }
- }
|