40 wfDebug(
"DjVu is disabled, please set \$wgDjvuRenderer and \$wgDjvuDump\n" );
62 return $file->getSize() > static::EXPENSIVE_SIZE_LIMIT;
78 'img_width' =>
'width',
94 if (
in_array( $name, [
'width',
'height',
'page' ] ) ) {
115 return "page{$page}-{$params['width']}px";
124 if (
preg_match(
'/^page(\d+)-(\d+)px$/', $str, $m ) ) {
125 return [
'width' => $m[2],
'page' => $m[1] ];
160 if ( $flags & self::TRANSFORM_LATER ) {
182 if (
$image->getSize() >= 1e7 ) {
186 return $image->getLocalRefPath();
192 $srcPath =
$image->getLocalRefPath();
195 if ( $srcPath ===
false ) {
197 sprintf(
'Thumbnail failed on %s: could not get local copy of "%s"',
206 # Use a subshell (brackets) to aggregate stderr from both pipeline commands
207 # before redirecting it to the overall stdout. This works in both Linux and Windows XP.
208 $cmd =
'(' . Shell::escape(
212 "-size={$params['physicalWidth']}x{$params['physicalHeight']}",
215 $cmd .=
" | {$wgDjvuPostProcessor}";
217 $cmd .=
' > ' . Shell::escape( $dstPath ) .
') 2>&1';
218 wfDebug( __METHOD__ .
": $cmd\n" );
223 if ( $retval != 0 || $removed ) {
250 $deja =
$image->dejaImage;
264 $metadata = $file->getMetadata();
265 if (
substr( $metadata, 0, 3 ) ===
'<?xml' ) {
274 if (
isset( $unser[
'error'] ) ) {
277 return $unser[
'xml'];
280 throw new MWException(
"Error unserializing DjVu metadata." );
296 return $image->djvuTextTree;
298 if ( !$gettext &&
isset(
$image->dejaMetaTree ) ) {
299 return $image->dejaMetaTree;
304 wfDebug(
"DjVu XML metadata is invalid or missing, should have been fixed in upgradeRow\n" );
310 $image->djvuTextTree = $trees[
'TextTree'];
311 $image->dejaMetaTree = $trees[
'MetaTree'];
314 return $image->djvuTextTree;
316 return $image->dejaMetaTree;
332 if ( $tree->getName() ==
'mw-djvu' ) {
334 foreach ( $tree->children() as $b ) {
335 if ( $b->getName() ==
'DjVuTxt' ) {
339 }
elseif ( $b->getName() ==
'DjVuXML' ) {
346 }
catch ( Exception
$e ) {
347 wfDebug(
"Bogus multipage XML metadata\n" );
361 if ( !
isset( $mime ) ) {
362 $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
370 wfDebug(
"Getting DjVu metadata for $path\n" );
373 if ( $xml ===
false ) {
375 return serialize( [
'error' =>
'Error extracting metadata' ] );
386 return !empty( $metadata ) && $metadata !=
serialize( [] );
392 return $info ? $info[
'pageCount'] :
false;
399 if ( $info &&
isset( $info[
'dimensionsByPage'][$index] ) ) {
400 return $info[
'dimensionsByPage'][$index];
407 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
408 return $cache->getWithSetCallback(
409 $cache->makeKey(
'file-djvu',
'dimensions', $file->getSha1() ),
410 $cache::TTL_INDEFINITE,
415 [
'pcTTL' => $cache::TTL_INDEFINITE ]
430 $count = count( $metatree->xpath(
'//OBJECT' ) );
431 for ( $i = 0; $i < $count; $i++ ) {
432 $o = $metatree->BODY[0]->OBJECT[
$i];
435 'width' => (
int)$o[
'width'],
436 'height' => (
int)$o[
'height'],
439 $dimsByPage[
$i] =
false;
443 return [
'pageCount' => $count,
'dimensionsByPage' =>
$dimsByPage ];
457 $o = $tree->BODY[0]->PAGE[$page - 1];
unserialize( $serialized)
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
$wgDjvuRenderer
Path of the ddjvu DJVU renderer Enable this and $wgDjvuDump to enable djvu rendering example: $wgDjvu...
$wgDjvuOutputExtension
File extension for the DJVU post processor output.
$wgDjvuToXML
Path of the djvutoxml executable This works like djvudump except much, much slower as of version 3....
$wgDjvuPostProcessor
Shell command for the DJVU post processor Default: pnmtojpeg, since ddjvu generates ppm output Set th...
$wgDjvuDump
Path of the djvudump executable Enable this and $wgDjvuRenderer to enable djvu rendering example: $wg...
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfShellExec( $cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
wfHostname()
Fetch server name for use in error reporting etc.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
wfMkdirParents( $dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
getDimensionInfoFromMetaTree( $metatree)
Given an XML metadata tree, returns dimension information about the document.
getDjVuImage( $image, $path)
Cache an instance of DjVuImage in an Image object, return that instance.
makeParamString( $params)
isExpensiveToThumbnail( $file)
True if creating thumbnails from the file is large or otherwise resource-intensive.
validateParam( $name, $value)
getDimensionInfo(File $file)
const EXPENSIVE_SIZE_LIMIT
getScriptParams( $params)
doTransform( $image, $dstPath, $dstUrl, $params, $flags=0)
pageCount(File $image)
Page count for a multi-page document, false if unsupported or unknown.
getPageText(File $image, $page)
isMetadataValid( $image, $metadata)
Check if the metadata string is valid for this handler.
getPageDimensions(File $image, $page)
Get an associative array of page dimensions Currently "width" and "height" are understood,...
getMetadataType( $image)
Get a string describing the type of metadata, for display purposes.
getMetaTree( $image, $gettext=false)
Cache a document tree for the DjVu XML metadata.
getThumbType( $ext, $mime, $params=null)
Get the thumbnail extension and MIME type for a given source MIME type.
getUnserializedMetadata(File $file)
Get metadata, unserializing it if necessary.
extractTreesFromMetadata( $metadata)
Extracts metadata and text trees from metadata XML in string form.
getMetadata( $image, $path)
Get handler-specific metadata which will be saved in the img_metadata field.
getImageSize( $image, $path)
Get an image size array like that returned by getimagesize(), or false if it can't be determined.
Support for detecting/validating DjVu image files and getting some basic file metadata (resolution et...
Implements some public methods and some protected utility functions which are required by multiple ch...
Media handler abstract base class for images.
normaliseParams( $image, &$params)
Convenience class for dealing with PoolCounters using callbacks.
execute( $skipcache=false)
Get the result of the work (whatever it is), or the result of the error() function.
Media transform output for images.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check $image
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
returning false will NOT prevent logging $e
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback function
if(!is_readable( $file)) $ext