MediaWiki  1.33.0
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 }
MediaHandlerFactory\$registry
array $registry
Definition: MediaHandlerFactory.php:55
MediaHandlerFactory\getHandler
getHandler( $type)
Definition: MediaHandlerFactory.php:76
php
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 the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
MediaHandlerFactory
Class to construct MediaHandler objects.
Definition: MediaHandlerFactory.php:29
$handler
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:780
MediaHandlerFactory\getHandlerClass
getHandlerClass( $type)
Definition: MediaHandlerFactory.php:68
MediaHandlerFactory\__construct
__construct(array $registry)
Definition: MediaHandlerFactory.php:64
array
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))
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:949
MediaHandlerFactory\$handlers
MediaHandler[] $handlers
Instance cache of MediaHandler objects by mimetype.
Definition: MediaHandlerFactory.php:62
MediaHandlerFactory\$coreHandlers
static array $coreHandlers
Default, MediaWiki core media handlers.
Definition: MediaHandlerFactory.php:36
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
MediaHandler
Base media handler class.
Definition: MediaHandler.php:30
$type
$type
Definition: testCompression.php:48