35 'svg' =>
'image/svg+xml',
51 $this->module = $module;
52 $this->descriptor = $descriptor;
54 $this->variants = $variants;
59 if ( is_array( $this->descriptor ) && isset( $this->descriptor[
'lang'] ) ) {
60 foreach ( array_keys( $this->descriptor[
'lang'] )
as $langList ) {
61 if ( strpos( $langList,
',' ) !==
false ) {
62 $this->descriptor[
'lang'] += array_fill_keys(
63 explode(
',', $langList ),
64 $this->descriptor[
'lang'][$langList]
66 unset( $this->descriptor[
'lang'][$langList] );
73 $descriptor = (
array)$descriptor;
78 if ( count( $extensions ) !== 1 ) {
80 "File type for different image files of '$name' not the same"
83 $ext = $extensions[0];
84 if ( !isset( self::$fileTypes[
$ext] ) ) {
86 "Invalid file type for image files of '$name' (valid: svg, png, gif, jpg)"
89 $this->extension =
$ext;
107 return $this->module;
116 return array_keys( $this->variants );
126 $desc = $this->descriptor;
127 if ( is_string( $desc ) ) {
128 return $this->basePath .
'/' . $desc;
129 } elseif ( isset( $desc[
'lang'][$context->
getLanguage()] ) ) {
130 return $this->basePath .
'/' . $desc[
'lang'][$context->
getLanguage()];
132 return $this->basePath .
'/' . $desc[$context->
getDirection()];
134 return $this->basePath .
'/' . $desc[
'default'];
145 if ( $format ===
'rasterized' && $this->extension ===
'svg' ) {
148 return $this->extension;
160 return self::$fileTypes[
$ext];
176 'variant' => $variant,
195 $contents = $this->
getImageData( $context, $variant, $format );
216 if ( $variant ===
false ) {
219 if ( $format ===
false ) {
224 if ( !file_exists(
$path ) ) {
225 throw new MWException(
"File '$path' does not exist" );
229 return file_get_contents(
$path );
232 if ( $variant && isset( $this->variants[$variant] ) ) {
233 $data = $this->
variantize( $this->variants[$variant], $context );
235 $data = file_get_contents(
$path );
238 if ( $format ===
'rasterized' ) {
241 wfDebugLog(
'ResourceLoaderImage', __METHOD__ .
" failed to rasterize for $path" );
261 header(
'Content-Type: ' .
$mime );
262 header(
'Content-Disposition: ' .
274 $dom =
new DomDocument;
275 $dom->loadXML( file_get_contents( $this->
getPath( $context ) ) );
276 $root = $dom->documentElement;
277 $wrapper = $dom->createElement(
'g' );
278 while ( $root->firstChild ) {
279 $wrapper->appendChild( $root->firstChild );
281 $root->appendChild( $wrapper );
282 $wrapper->setAttribute(
'fill', $variantConf[
'color'] );
283 return $dom->saveXML();
297 $dom =
new DomDocument;
298 $dom->loadXML( $svg );
299 foreach ( $dom->getElementsByTagName(
'path' )
as $node ) {
300 $pathData = $node->getAttribute(
'd' );
303 $pathData = preg_replace(
'/(-?)(\d*\.\d+|\d+)/',
' ${1}0$2 ', $pathData );
305 $pathData = preg_replace(
'/([ -])0(\d)/',
'$1$2', $pathData );
306 $node->setAttribute(
'd', $pathData );
308 return $dom->saveXML();
341 if ( strpos( $wgSVGConverter,
'rsvg' ) === 0 ) {
343 if ( $wgSVGConverterPath ) {
347 $process = proc_open(
349 [ 0 => [
'pipe',
'r' ], 1 => [
'pipe',
'w' ] ],
353 if ( is_resource( $process ) ) {
354 fwrite( $pipes[0], $svg );
356 $png = stream_get_contents( $pipes[1] );
358 proc_close( $process );
360 return $png ?:
false;
366 $tempFilenameSvg = tempnam(
wfTempDir(),
'ResourceLoaderImage' );
367 $tempFilenamePng = tempnam(
wfTempDir(),
'ResourceLoaderImage' );
369 file_put_contents( $tempFilenameSvg, $svg );
372 if ( !isset( $metadata[
'width'] ) || !isset( $metadata[
'height'] ) ) {
373 unlink( $tempFilenameSvg );
384 unlink( $tempFilenameSvg );
387 if (
$res ===
true ) {
388 $png = file_get_contents( $tempFilenamePng );
389 unlink( $tempFilenamePng );
392 return $png ?:
false;
getExtension($format= 'original')
Get the extension of the image.
getMimeType($format= 'original')
Get the MIME type of the image.
the array() calling protocol came about after MediaWiki 1.4rc1.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Class encapsulating an image used in a ResourceLoaderImageModule.
getImageData(ResourceLoaderContext $context, $variant=false, $format=false)
Get actual image data for this image.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
if($ext== 'php'||$ext== 'php5') $mime
getUrl(ResourceLoaderContext $context, $script, $variant, $format)
Get the load.php URL that will produce this image.
when a variable name is used in a it is silently declared as a new local masking the global
wfDebugLog($logGroup, $text, $dest= 'all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
rasterize($svg)
Convert passed image data, which is assumed to be SVG, to PNG.
wfTempDir()
Tries to get the system directory for temporary files.
$wgSVGConverterPath
If not in the executable PATH, specify the SVG converter path.
wfAppendQuery($url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
getDataUri(ResourceLoaderContext $context, $variant, $format)
Get the data: URI that will produce this image.
getVariants()
Get the list of variants this image can be converted to.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static array $fileTypes
Map of allowed file extensions to their MIME types.
static array __construct($name, $module, $descriptor, $basePath, $variants)
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
getName()
Get name of this image.
sendResponseHeaders(ResourceLoaderContext $context)
Send response headers (using the header() function) that are necessary to correctly serve the image d...
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at name
static encodeStringAsDataURI($contents, $type, $ie8Compat=true)
Encode file contents as a data URI with chosen MIME type.
static makeContentDisposition($type, $filename= '')
Build a Content-Disposition header value per RFC 6266.
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
getModule()
Get name of the module this image belongs to.
variantize($variantConf, ResourceLoaderContext $context)
Convert this image, which is assumed to be SVG, to given variant.
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
getPath(ResourceLoaderContext $context)
Get the path to image file for given context.
massageSvgPathdata($svg)
Massage the SVG image data for converters which don't understand some path data syntax.
$wgSVGConverter
Pick a converter defined in $wgSVGConverters.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Object passed around to modules which contains information about the state of a specific loader reque...
Allows to change the fields on the form that will be generated $name