MediaWiki REL1_31
MediaHandlerFactory.php
Go to the documentation of this file.
1<?php
30
36 private static $coreHandlers = [
37 'image/jpeg' => JpegHandler::class,
38 'image/png' => PNGHandler::class,
39 'image/gif' => GIFHandler::class,
40 'image/tiff' => TiffHandler::class,
41 'image/webp' => WebPHandler::class,
42 'image/x-ms-bmp' => BmpHandler::class,
43 'image/x-bmp' => BmpHandler::class,
44 'image/x-xcf' => XCFHandler::class,
45 'image/svg+xml' => SvgHandler::class, // official
46 'image/svg' => SvgHandler::class, // compat
47 'image/vnd.djvu' => DjVuHandler::class, // official
48 'image/x.djvu' => DjVuHandler::class, // compat
49 'image/x-djvu' => DjVuHandler::class, // compat
50 ];
51
55 private $registry;
56
62 private $handlers;
63
64 public function __construct( array $registry ) {
65 $this->registry = $registry + self::$coreHandlers;
66 }
67
68 protected function getHandlerClass( $type ) {
69 if ( isset( $this->registry[$type] ) ) {
70 return $this->registry[$type];
71 } else {
72 return false;
73 }
74 }
75
80 public function getHandler( $type ) {
81 if ( isset( $this->handlers[$type] ) ) {
82 return $this->handlers[$type];
83 }
84
85 $class = $this->getHandlerClass( $type );
86 if ( $class !== false ) {
88 $handler = new $class;
89 if ( !$handler->isEnabled() ) {
90 wfDebug( __METHOD__ . ": $class is not enabled\n" );
91 $handler = false;
92 }
93 } else {
94 wfDebug( __METHOD__ . ": no handler found for $type.\n" );
95 $handler = false;
96 }
97
98 $this->handlers[$type] = $handler;
99 return $handler;
100 }
101}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Class to construct MediaHandler objects.
static array $coreHandlers
Default, MediaWiki core media handlers.
MediaHandler[] $handlers
Instance cache of MediaHandler objects by mimetype.
__construct(array $registry)
Base media handler class.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub 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 set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition hooks.txt:903