35 'svg' =>
'image/svg+xml',
54 $this->module = $module;
55 $this->descriptor = $descriptor;
57 $this->variants = $variants;
58 $this->defaultColor = $defaultColor;
63 if ( is_array( $this->descriptor ) && isset( $this->descriptor[
'lang'] ) ) {
64 foreach ( array_keys( $this->descriptor[
'lang'] )
as $langList ) {
65 if ( strpos( $langList,
',' ) !==
false ) {
66 $this->descriptor[
'lang'] += array_fill_keys(
67 explode(
',', $langList ),
68 $this->descriptor[
'lang'][$langList]
70 unset( $this->descriptor[
'lang'][$langList] );
75 if ( is_array( $this->descriptor ) ) {
76 unset( $this->descriptor[
'deprecated' ] );
81 $descriptor = (
array)$this->descriptor;
82 array_walk_recursive( $descriptor,
function (
$path )
use ( &$extensions ) {
83 $extensions[] = pathinfo(
$path, PATHINFO_EXTENSION );
85 $extensions = array_unique( $extensions );
86 if ( count( $extensions ) !== 1 ) {
87 throw new InvalidArgumentException(
88 "File type for different image files of '$name' not the same in module '$module'"
91 $ext = $extensions[0];
92 if ( !isset( self::$fileTypes[
$ext] ) ) {
93 throw new InvalidArgumentException(
94 "Invalid file type for image files of '$name' (valid: svg, png, gif, jpg) in module '$module'"
97 $this->extension =
$ext;
115 return $this->module;
124 return array_keys( $this->variants );
134 $desc = $this->descriptor;
135 if ( is_string( $desc ) ) {
136 return $this->basePath .
'/' . $desc;
138 if ( isset( $desc[
'lang'] ) ) {
139 $contextLang =
$context->getLanguage();
140 if ( isset( $desc[
'lang'][$contextLang] ) ) {
141 return $this->basePath .
'/' . $desc[
'lang'][$contextLang];
143 $fallbacks = Language::getFallbacksFor( $contextLang, Language::STRICT_FALLBACKS );
144 foreach ( $fallbacks
as $lang ) {
145 if ( isset( $desc[
'lang'][
$lang] ) ) {
146 return $this->basePath .
'/' . $desc[
'lang'][
$lang];
150 if ( isset( $desc[
$context->getDirection()] ) ) {
151 return $this->basePath .
'/' . $desc[
$context->getDirection()];
153 return $this->basePath .
'/' . $desc[
'default'];
163 if ( $format ===
'rasterized' && $this->extension ===
'svg' ) {
166 return $this->extension;
177 return self::$fileTypes[
$ext];
193 'variant' => $variant,
197 'version' =>
$context->getVersion(),
213 $contents = $this->
getImageData( $context, $variant, $format );
234 if ( $variant ===
false ) {
237 if ( $format ===
false ) {
242 if ( !file_exists(
$path ) ) {
243 throw new MWException(
"File '$path' does not exist" );
247 return file_get_contents(
$path );
250 if ( $variant && isset( $this->variants[$variant] ) ) {
253 $defaultColor = $this->defaultColor;
254 $data = $defaultColor ?
256 file_get_contents(
$path );
259 if ( $format ===
'rasterized' ) {
262 wfDebugLog(
'ResourceLoaderImage', __METHOD__ .
" failed to rasterize for $path" );
282 header(
'Content-Type: ' .
$mime );
283 header(
'Content-Disposition: ' .
295 $dom =
new DomDocument;
296 $dom->loadXML( file_get_contents( $this->
getPath( $context ) ) );
297 $root = $dom->documentElement;
298 $wrapper = $dom->createElement(
'g' );
299 while ( $root->firstChild ) {
300 $wrapper->appendChild( $root->firstChild );
302 $root->appendChild( $wrapper );
303 $wrapper->setAttribute(
'fill', $variantConf[
'color'] );
304 return $dom->saveXML();
318 $dom =
new DomDocument;
319 $dom->loadXML( $svg );
320 foreach ( $dom->getElementsByTagName(
'path' )
as $node ) {
321 $pathData = $node->getAttribute(
'd' );
324 $pathData = preg_replace(
'/(-?)(\d*\.\d+|\d+)/',
' ${1}0$2 ', $pathData );
326 $pathData = preg_replace(
'/([ -])0(\d)/',
'$1$2', $pathData );
327 $node->setAttribute(
'd', $pathData );
329 return $dom->saveXML();
368 $process = proc_open(
370 [ 0 => [
'pipe',
'r' ], 1 => [
'pipe',
'w' ] ],
374 if ( is_resource( $process ) ) {
375 fwrite( $pipes[0], $svg );
377 $png = stream_get_contents( $pipes[1] );
379 proc_close( $process );
381 return $png ?:
false;
387 $tempFilenameSvg = tempnam(
wfTempDir(),
'ResourceLoaderImage' );
388 $tempFilenamePng = tempnam(
wfTempDir(),
'ResourceLoaderImage' );
390 file_put_contents( $tempFilenameSvg, $svg );
393 if ( !isset( $metadata[
'width'] ) || !isset( $metadata[
'height'] ) ) {
394 unlink( $tempFilenameSvg );
405 unlink( $tempFilenameSvg );
408 if (
$res ===
true ) {
409 $png = file_get_contents( $tempFilenamePng );
410 unlink( $tempFilenamePng );
413 return $png ?:
false;
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgSVGConverter
Pick a converter defined in $wgSVGConverters.
$wgSVGConverterPath
If not in the executable PATH, specify the SVG converter path.
wfTempDir()
Tries to get the system directory for temporary files.
wfEscapeShellArg(... $args)
Version of escapeshellarg() that works better on Windows.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
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.
Object passed around to modules which contains information about the state of a specific loader reque...
Class encapsulating an image used in a ResourceLoaderImageModule.
rasterize( $svg)
Convert passed image data, which is assumed to be SVG, to PNG.
variantize( $variantConf, ResourceLoaderContext $context)
Convert this image, which is assumed to be SVG, to given variant.
getUrl(ResourceLoaderContext $context, $script, $variant, $format)
Get the load.php URL that will produce this image.
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.
getMimeType( $format='original')
Get the MIME type of the image.
getModule()
Get name of the module this image belongs to.
getExtension( $format='original')
Get the extension of the image.
__construct( $name, $module, $descriptor, $basePath, $variants, $defaultColor=null)
getDataUri(ResourceLoaderContext $context, $variant, $format)
Get the data: URI that will produce this image.
sendResponseHeaders(ResourceLoaderContext $context)
Send response headers (using the header() function) that are necessary to correctly serve the image d...
getName()
Get name of this image.
getVariants()
Get the list of variants this image can be converted to.
static array $fileTypes
Map of allowed file extensions to their MIME types.
getImageData(ResourceLoaderContext $context, $variant=false, $format=false)
Get actual image data for this image.
rasterize( $srcPath, $dstPath, $width, $height, $lang=false)
Transform an SVG file to PNG This function can be called outside of thumbnail contexts.
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
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Allows to change the fields on the form that will be generated $name
and how to run hooks for an and one after Each event has a name
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
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
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
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))
if( $ext=='php'|| $ext=='php5') $mime
if(!is_readable( $file)) $ext
if(!isset( $args[0])) $lang