MediaWiki REL1_33
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 return $this->registry[$type] ?? false;
70 }
71
76 public function getHandler( $type ) {
77 if ( isset( $this->handlers[$type] ) ) {
78 return $this->handlers[$type];
79 }
80
81 $class = $this->getHandlerClass( $type );
82 if ( $class !== false ) {
84 $handler = new $class;
85 if ( !$handler->isEnabled() ) {
86 wfDebug( __METHOD__ . ": $class is not enabled\n" );
87 $handler = false;
88 }
89 } else {
90 wfDebug( __METHOD__ . ": no handler found for $type.\n" );
91 $handler = false;
92 }
93
94 $this->handlers[$type] = $handler;
95 return $handler;
96 }
97}
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
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 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 set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition hooks.txt:894
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))