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] );
71 if ( is_array( $this->descriptor ) ) {
72 unset( $this->descriptor[
'deprecated' ] );
77 $descriptor = (
array)$this->descriptor;
78 array_walk_recursive( $descriptor,
function ( $path ) use ( &$extensions ) {
79 $extensions[] = pathinfo( $path, PATHINFO_EXTENSION );
81 $extensions = array_unique( $extensions );
82 if ( count( $extensions ) !== 1 ) {
83 throw new InvalidArgumentException(
84 "File type for different image files of '$name' not the same in module '$module'"
87 $ext = $extensions[0];
88 if ( !isset( self::$fileTypes[
$ext] ) ) {
89 throw new InvalidArgumentException(
90 "Invalid file type for image files of '$name' (valid: svg, png, gif, jpg) in module '$module'"
93 $this->extension =
$ext;
111 return $this->module;
120 return array_keys( $this->variants );
130 $desc = $this->descriptor;
131 if ( is_string( $desc ) ) {
132 return $this->basePath .
'/' . $desc;
134 if ( isset( $desc[
'lang'] ) ) {
135 $contextLang =
$context->getLanguage();
136 if ( isset( $desc[
'lang'][$contextLang] ) ) {
137 return $this->basePath .
'/' . $desc[
'lang'][$contextLang];
139 $fallbacks = Language::getFallbacksFor( $contextLang );
140 foreach ( $fallbacks as
$lang ) {
143 (
$lang !==
'en' || substr( $contextLang, 0, 3 ) ===
'en-' ) &&
144 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 );
214 return CSSMin::encodeStringAsDataURI( $contents,
$type );
234 if ( $variant ===
false ) {
237 if ( $format ===
false ) {
241 $path = $this->
getPath( $context );
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 $data = file_get_contents( $path );
256 if ( $format ===
'rasterized' ) {
259 wfDebugLog(
'ResourceLoaderImage', __METHOD__ .
" failed to rasterize for $path" );
279 header(
'Content-Type: ' .
$mime );
280 header(
'Content-Disposition: ' .
292 $dom =
new DomDocument;
293 $dom->loadXML( file_get_contents( $this->
getPath( $context ) ) );
294 $root = $dom->documentElement;
295 $wrapper = $dom->createElement(
'g' );
296 while ( $root->firstChild ) {
297 $wrapper->appendChild( $root->firstChild );
299 $root->appendChild( $wrapper );
300 $wrapper->setAttribute(
'fill', $variantConf[
'color'] );
301 return $dom->saveXML();
315 $dom =
new DomDocument;
316 $dom->loadXML( $svg );
317 foreach ( $dom->getElementsByTagName(
'path' ) as $node ) {
318 $pathData = $node->getAttribute(
'd' );
321 $pathData = preg_replace(
'/(-?)(\d*\.\d+|\d+)/',
' ${1}0$2 ', $pathData );
323 $pathData = preg_replace(
'/([ -])0(\d)/',
'$1$2', $pathData );
324 $node->setAttribute(
'd', $pathData );
326 return $dom->saveXML();
365 $process = proc_open(
367 [ 0 => [
'pipe',
'r' ], 1 => [
'pipe',
'w' ] ],
371 if ( is_resource( $process ) ) {
372 fwrite( $pipes[0], $svg );
374 $png = stream_get_contents( $pipes[1] );
376 proc_close( $process );
378 return $png ?:
false;
384 $tempFilenameSvg = tempnam(
wfTempDir(),
'ResourceLoaderImage' );
385 $tempFilenamePng = tempnam(
wfTempDir(),
'ResourceLoaderImage' );
387 file_put_contents( $tempFilenameSvg, $svg );
390 if ( !isset( $metadata[
'width'] ) || !isset( $metadata[
'height'] ) ) {
391 unlink( $tempFilenameSvg );
402 unlink( $tempFilenameSvg );
405 if (
$res ===
true ) {
406 $png = file_get_contents( $tempFilenamePng );
407 unlink( $tempFilenamePng );
410 return $png ?:
false;
$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()
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 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)
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.
the array() calling protocol came about after MediaWiki 1.4rc1.
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
> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) 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
if( $ext=='php'|| $ext=='php5') $mime
if(!is_readable( $file)) $ext
if(!isset( $args[0])) $lang