3 * ResourceLoader module based on local JavaScript/CSS files.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @author Trevor Parscal
22 * @author Roan Kattouw
26 * ResourceLoader module based on local JavaScript/CSS files.
28 class ResourceLoaderFileModule
extends ResourceLoaderModule
{
29 /* Protected Members */
31 /** @var string Local base path, see __construct() */
32 protected $localBasePath = '';
34 /** @var string Remote base path, see __construct() */
35 protected $remoteBasePath = '';
37 /** @var array Saves a list of the templates named by the modules. */
38 protected $templates = [];
41 * @var array List of paths to JavaScript files to always include
44 * array( [file-path], [file-path], ... )
47 protected $scripts = [];
50 * @var array List of JavaScript files to include when using a specific language
53 * array( [language-code] => array( [file-path], [file-path], ... ), ... )
56 protected $languageScripts = [];
59 * @var array List of JavaScript files to include when using a specific skin
62 * array( [skin-name] => array( [file-path], [file-path], ... ), ... )
65 protected $skinScripts = [];
68 * @var array List of paths to JavaScript files to include in debug mode
71 * array( [skin-name] => array( [file-path], [file-path], ... ), ... )
74 protected $debugScripts = [];
77 * @var array List of paths to CSS files to always include
80 * array( [file-path], [file-path], ... )
83 protected $styles = [];
86 * @var array List of paths to CSS files to include when using specific skins
89 * array( [file-path], [file-path], ... )
92 protected $skinStyles = [];
95 * @var array List of modules this module depends on
98 * array( [file-path], [file-path], ... )
101 protected $dependencies = [];
104 * @var string File name containing the body of the skip function
106 protected $skipFunction = null;
109 * @var array List of message keys used by this module
112 * array( [message-key], [message-key], ... )
115 protected $messages = [];
117 /** @var string Name of group to load this module in */
120 /** @var string Position on the page to load this module at */
121 protected $position = 'bottom';
123 /** @var bool Link to raw files in debug mode */
124 protected $debugRaw = true;
126 /** @var bool Whether mw.loader.state() call should be omitted */
127 protected $raw = false;
129 protected $targets = [ 'desktop' ];
132 * @var bool Whether getStyleURLsForDebug should return raw file paths,
133 * or return load.php urls
135 protected $hasGeneratedStyles = false;
138 * @var array Place where readStyleFile() tracks file dependencies
141 * array( [file-path], [file-path], ... )
144 protected $localFileRefs = [];
147 * @var array Place where readStyleFile() tracks file dependencies for non-existent files.
148 * Used in tests to detect missing dependencies.
150 protected $missingLocalFileRefs = [];
155 * Constructs a new module from an options array.
157 * @param array $options List of options; if not given or empty, an empty module will be
159 * @param string $localBasePath Base path to prepend to all local paths in $options. Defaults
161 * @param string $remoteBasePath Base path to prepend to all remote paths in $options. Defaults
162 * to $wgResourceBasePath
164 * Below is a description for the $options array:
165 * @throws InvalidArgumentException
166 * @par Construction options:
169 * // Base path to prepend to all local paths in $options. Defaults to $IP
170 * 'localBasePath' => [base path],
171 * // Base path to prepend to all remote paths in $options. Defaults to $wgResourceBasePath
172 * 'remoteBasePath' => [base path],
173 * // Equivalent of remoteBasePath, but relative to $wgExtensionAssetsPath
174 * 'remoteExtPath' => [base path],
175 * // Equivalent of remoteBasePath, but relative to $wgStylePath
176 * 'remoteSkinPath' => [base path],
177 * // Scripts to always include
178 * 'scripts' => [file path string or array of file path strings],
179 * // Scripts to include in specific language contexts
180 * 'languageScripts' => array(
181 * [language code] => [file path string or array of file path strings],
183 * // Scripts to include in specific skin contexts
184 * 'skinScripts' => array(
185 * [skin name] => [file path string or array of file path strings],
187 * // Scripts to include in debug contexts
188 * 'debugScripts' => [file path string or array of file path strings],
189 * // Modules which must be loaded before this module
190 * 'dependencies' => [module name string or array of module name strings],
191 * 'templates' => array(
192 * [template alias with file.ext] => [file path to a template file],
194 * // Styles to always load
195 * 'styles' => [file path string or array of file path strings],
196 * // Styles to include in specific skin contexts
197 * 'skinStyles' => array(
198 * [skin name] => [file path string or array of file path strings],
200 * // Messages to always load
201 * 'messages' => [array of message key strings],
202 * // Group which this module should be loaded together with
203 * 'group' => [group name string],
204 * // Position on the page to load this module at
205 * 'position' => ['bottom' (default) or 'top']
206 * // Function that, if it returns true, makes the loader skip this module.
207 * // The file must contain valid JavaScript for execution in a private function.
208 * // The file must not contain the "function () {" and "}" wrapper though.
209 * 'skipFunction' => [file path]
213 public function __construct(
215 $localBasePath = null,
216 $remoteBasePath = null
218 // Flag to decide whether to automagically add the mediawiki.template module
219 $hasTemplates = false;
220 // localBasePath and remoteBasePath both have unbelievably long fallback chains
221 // and need to be handled separately.
222 list( $this->localBasePath
, $this->remoteBasePath
) =
223 self
::extractBasePaths( $options, $localBasePath, $remoteBasePath );
225 // Extract, validate and normalise remaining options
226 foreach ( $options as $member => $option ) {
228 // Lists of file paths
232 $this->{$member} = (array)$option;
235 $hasTemplates = true;
236 $this->{$member} = (array)$option;
238 // Collated lists of file paths
239 case 'languageScripts':
242 if ( !is_array( $option ) ) {
243 throw new InvalidArgumentException(
244 "Invalid collated file path list error. " .
245 "'$option' given, array expected."
248 foreach ( $option as $key => $value ) {
249 if ( !is_string( $key ) ) {
250 throw new InvalidArgumentException(
251 "Invalid collated file path list key error. " .
252 "'$key' given, string expected."
255 $this->{$member}[$key] = (array)$value;
263 $option = array_values( array_unique( (array)$option ) );
266 $this->{$member} = $option;
272 $this->{$member} = (string)$option;
277 $this->{$member} = (bool)$option;
281 if ( $hasTemplates ) {
282 $this->dependencies
[] = 'mediawiki.template';
283 // Ensure relevant template compiler module gets loaded
284 foreach ( $this->templates
as $alias => $templatePath ) {
285 if ( is_int( $alias ) ) {
286 $alias = $templatePath;
288 $suffix = explode( '.', $alias );
289 $suffix = end( $suffix );
290 $compilerModule = 'mediawiki.template.' . $suffix;
291 if ( $suffix !== 'html' && !in_array( $compilerModule, $this->dependencies
) ) {
292 $this->dependencies
[] = $compilerModule;
299 * Extract a pair of local and remote base paths from module definition information.
300 * Implementation note: the amount of global state used in this function is staggering.
302 * @param array $options Module definition
303 * @param string $localBasePath Path to use if not provided in module definition. Defaults
305 * @param string $remoteBasePath Path to use if not provided in module definition. Defaults
306 * to $wgResourceBasePath
307 * @return array Array( localBasePath, remoteBasePath )
309 public static function extractBasePaths(
311 $localBasePath = null,
312 $remoteBasePath = null
314 global $IP, $wgResourceBasePath;
316 // The different ways these checks are done, and their ordering, look very silly,
317 // but were preserved for backwards-compatibility just in case. Tread lightly.
319 if ( $localBasePath === null ) {
320 $localBasePath = $IP;
322 if ( $remoteBasePath === null ) {
323 $remoteBasePath = $wgResourceBasePath;
326 if ( isset( $options['remoteExtPath'] ) ) {
327 global $wgExtensionAssetsPath;
328 $remoteBasePath = $wgExtensionAssetsPath . '/' . $options['remoteExtPath'];
331 if ( isset( $options['remoteSkinPath'] ) ) {
333 $remoteBasePath = $wgStylePath . '/' . $options['remoteSkinPath'];
336 if ( array_key_exists( 'localBasePath', $options ) ) {
337 $localBasePath = (string)$options['localBasePath'];
340 if ( array_key_exists( 'remoteBasePath', $options ) ) {
341 $remoteBasePath = (string)$options['remoteBasePath'];
344 return [ $localBasePath, $remoteBasePath ];
348 * Gets all scripts for a given context concatenated together.
350 * @param ResourceLoaderContext $context Context in which to generate script
351 * @return string JavaScript code for $context
353 public function getScript( ResourceLoaderContext
$context ) {
354 $files = $this->getScriptFiles( $context );
355 return $this->readScriptFiles( $files );
359 * @param ResourceLoaderContext $context
362 public function getScriptURLsForDebug( ResourceLoaderContext
$context ) {
364 foreach ( $this->getScriptFiles( $context ) as $file ) {
365 $urls[] = OutputPage
::transformResourcePath(
367 $this->getRemotePath( $file )
376 public function supportsURLLoading() {
377 return $this->debugRaw
;
381 * Get all styles for a given context.
383 * @param ResourceLoaderContext $context
384 * @return array CSS code for $context as an associative array mapping media type to CSS text.
386 public function getStyles( ResourceLoaderContext
$context ) {
387 $styles = $this->readStyleFiles(
388 $this->getStyleFiles( $context ),
389 $this->getFlip( $context ),
392 // Collect referenced files
393 $this->saveFileDependencies( $context, $this->localFileRefs
);
399 * @param ResourceLoaderContext $context
402 public function getStyleURLsForDebug( ResourceLoaderContext
$context ) {
403 if ( $this->hasGeneratedStyles
) {
404 // Do the default behaviour of returning a url back to load.php
405 // but with only=styles.
406 return parent
::getStyleURLsForDebug( $context );
408 // Our module consists entirely of real css files,
409 // in debug mode we can load those directly.
411 foreach ( $this->getStyleFiles( $context ) as $mediaType => $list ) {
412 $urls[$mediaType] = [];
413 foreach ( $list as $file ) {
414 $urls[$mediaType][] = OutputPage
::transformResourcePath(
416 $this->getRemotePath( $file )
424 * Gets list of message keys used by this module.
426 * @return array List of message keys
428 public function getMessages() {
429 return $this->messages
;
433 * Gets the name of the group this module should be loaded in.
435 * @return string Group name
437 public function getGroup() {
444 public function getPosition() {
445 return $this->position
;
449 * Gets list of names of modules this module depends on.
450 * @param ResourceLoaderContext|null $context
451 * @return array List of module names
453 public function getDependencies( ResourceLoaderContext
$context = null ) {
454 return $this->dependencies
;
458 * Get the skip function.
459 * @return null|string
460 * @throws MWException
462 public function getSkipFunction() {
463 if ( !$this->skipFunction
) {
467 $localPath = $this->getLocalPath( $this->skipFunction
);
468 if ( !file_exists( $localPath ) ) {
469 throw new MWException( __METHOD__
. ": skip function file not found: \"$localPath\"" );
471 $contents = $this->stripBom( file_get_contents( $localPath ) );
472 if ( $this->getConfig()->get( 'ResourceLoaderValidateStaticJS' ) ) {
473 $contents = $this->validateScriptFile( $localPath, $contents );
481 public function isRaw() {
486 * Disable module content versioning.
488 * This class uses getDefinitionSummary() instead, to avoid filesystem overhead
489 * involved with building the full module content inside a startup request.
493 public function enableModuleContentVersion() {
498 * Helper method to gather file hashes for getDefinitionSummary.
500 * This function is context-sensitive, only computing hashes of files relevant to the
501 * given language, skin, etc.
503 * @see ResourceLoaderModule::getFileDependencies
504 * @param ResourceLoaderContext $context
507 protected function getFileHashes( ResourceLoaderContext
$context ) {
510 // Flatten style files into $files
511 $styles = self
::collateFilePathListByOption( $this->styles
, 'media', 'all' );
512 foreach ( $styles as $styleFiles ) {
513 $files = array_merge( $files, $styleFiles );
516 $skinFiles = self
::collateFilePathListByOption(
517 self
::tryForKey( $this->skinStyles
, $context->getSkin(), 'default' ),
521 foreach ( $skinFiles as $styleFiles ) {
522 $files = array_merge( $files, $styleFiles );
525 // Final merge, this should result in a master list of dependent files
526 $files = array_merge(
530 $context->getDebug() ?
$this->debugScripts
: [],
531 $this->getLanguageScripts( $context->getLanguage() ),
532 self
::tryForKey( $this->skinScripts
, $context->getSkin(), 'default' )
534 if ( $this->skipFunction
) {
535 $files[] = $this->skipFunction
;
537 $files = array_map( [ $this, 'getLocalPath' ], $files );
538 // File deps need to be treated separately because they're already prefixed
539 $files = array_merge( $files, $this->getFileDependencies( $context ) );
540 // Filter out any duplicates from getFileDependencies() and others.
541 // Most commonly introduced by compileLessFile(), which always includes the
542 // entry point Less file we already know about.
543 $files = array_values( array_unique( $files ) );
545 // Don't include keys or file paths here, only the hashes. Including that would needlessly
546 // cause global cache invalidation when files move or if e.g. the MediaWiki path changes.
547 // Any significant ordering is already detected by the definition summary.
548 return array_map( [ __CLASS__
, 'safeFileHash' ], $files );
552 * Get the definition summary for this module.
554 * @param ResourceLoaderContext $context
557 public function getDefinitionSummary( ResourceLoaderContext
$context ) {
558 $summary = parent
::getDefinitionSummary( $context );
562 // The following properties are omitted because they don't affect the module reponse:
563 // - localBasePath (Per T104950; Changes when absolute directory name changes. If
564 // this affects 'scripts' and other file paths, getFileHashes accounts for that.)
565 // - remoteBasePath (Per T104950)
566 // - dependencies (provided via startup module)
568 // - group (provided via startup module)
569 // - position (only used by OutputPage)
582 $options[$member] = $this->{$member};
586 'options' => $options,
587 'fileHashes' => $this->getFileHashes( $context ),
588 'messageBlob' => $this->getMessageBlob( $context ),
594 * @param string|ResourceLoaderFilePath $path
597 protected function getLocalPath( $path ) {
598 if ( $path instanceof ResourceLoaderFilePath
) {
599 return $path->getLocalPath();
602 return "{$this->localBasePath}/$path";
606 * @param string|ResourceLoaderFilePath $path
609 protected function getRemotePath( $path ) {
610 if ( $path instanceof ResourceLoaderFilePath
) {
611 return $path->getRemotePath();
614 return "{$this->remoteBasePath}/$path";
618 * Infer the stylesheet language from a stylesheet file path.
621 * @param string $path
622 * @return string The stylesheet language name
624 public function getStyleSheetLang( $path ) {
625 return preg_match( '/\.less$/i', $path ) ?
'less' : 'css';
629 * Collates file paths by option (where provided).
631 * @param array $list List of file paths in any combination of index/path
632 * or path/options pairs
633 * @param string $option Option name
634 * @param mixed $default Default value if the option isn't set
635 * @return array List of file paths, collated by $option
637 protected static function collateFilePathListByOption( array $list, $option, $default ) {
639 foreach ( (array)$list as $key => $value ) {
640 if ( is_int( $key ) ) {
641 // File name as the value
642 if ( !isset( $collatedFiles[$default] ) ) {
643 $collatedFiles[$default] = [];
645 $collatedFiles[$default][] = $value;
646 } elseif ( is_array( $value ) ) {
647 // File name as the key, options array as the value
648 $optionValue = isset( $value[$option] ) ?
$value[$option] : $default;
649 if ( !isset( $collatedFiles[$optionValue] ) ) {
650 $collatedFiles[$optionValue] = [];
652 $collatedFiles[$optionValue][] = $key;
655 return $collatedFiles;
659 * Get a list of element that match a key, optionally using a fallback key.
661 * @param array $list List of lists to select from
662 * @param string $key Key to look for in $map
663 * @param string $fallback Key to look for in $list if $key doesn't exist
664 * @return array List of elements from $map which matched $key or $fallback,
665 * or an empty list in case of no match
667 protected static function tryForKey( array $list, $key, $fallback = null ) {
668 if ( isset( $list[$key] ) && is_array( $list[$key] ) ) {
670 } elseif ( is_string( $fallback )
671 && isset( $list[$fallback] )
672 && is_array( $list[$fallback] )
674 return $list[$fallback];
680 * Get a list of file paths for all scripts in this module, in order of proper execution.
682 * @param ResourceLoaderContext $context
683 * @return array List of file paths
685 protected function getScriptFiles( ResourceLoaderContext
$context ) {
686 $files = array_merge(
688 $this->getLanguageScripts( $context->getLanguage() ),
689 self
::tryForKey( $this->skinScripts
, $context->getSkin(), 'default' )
691 if ( $context->getDebug() ) {
692 $files = array_merge( $files, $this->debugScripts
);
695 return array_unique( $files, SORT_REGULAR
);
699 * Get the set of language scripts for the given language,
700 * possibly using a fallback language.
702 * @param string $lang
705 private function getLanguageScripts( $lang ) {
706 $scripts = self
::tryForKey( $this->languageScripts
, $lang );
710 $fallbacks = Language
::getFallbacksFor( $lang );
711 foreach ( $fallbacks as $lang ) {
712 $scripts = self
::tryForKey( $this->languageScripts
, $lang );
722 * Get a list of file paths for all styles in this module, in order of proper inclusion.
724 * @param ResourceLoaderContext $context
725 * @return array List of file paths
727 public function getStyleFiles( ResourceLoaderContext
$context ) {
728 return array_merge_recursive(
729 self
::collateFilePathListByOption( $this->styles
, 'media', 'all' ),
730 self
::collateFilePathListByOption(
731 self
::tryForKey( $this->skinStyles
, $context->getSkin(), 'default' ),
739 * Gets a list of file paths for all skin styles in the module used by
742 * @param string $skinName The name of the skin
743 * @return array A list of file paths collated by media type
745 protected function getSkinStyleFiles( $skinName ) {
746 return self
::collateFilePathListByOption(
747 self
::tryForKey( $this->skinStyles
, $skinName ),
754 * Gets a list of file paths for all skin style files in the module,
755 * for all available skins.
757 * @return array A list of file paths collated by media type
759 protected function getAllSkinStyleFiles() {
761 $internalSkinNames = array_keys( Skin
::getSkinNames() );
762 $internalSkinNames[] = 'default';
764 foreach ( $internalSkinNames as $internalSkinName ) {
765 $styleFiles = array_merge_recursive(
767 $this->getSkinStyleFiles( $internalSkinName )
775 * Returns all style files and all skin style files used by this module.
779 public function getAllStyleFiles() {
780 $collatedStyleFiles = array_merge_recursive(
781 self
::collateFilePathListByOption( $this->styles
, 'media', 'all' ),
782 $this->getAllSkinStyleFiles()
787 foreach ( $collatedStyleFiles as $media => $styleFiles ) {
788 foreach ( $styleFiles as $styleFile ) {
789 $result[] = $this->getLocalPath( $styleFile );
797 * Gets the contents of a list of JavaScript files.
799 * @param array $scripts List of file paths to scripts to read, remap and concetenate
800 * @throws MWException
801 * @return string Concatenated and remapped JavaScript data from $scripts
803 protected function readScriptFiles( array $scripts ) {
804 if ( empty( $scripts ) ) {
808 foreach ( array_unique( $scripts, SORT_REGULAR
) as $fileName ) {
809 $localPath = $this->getLocalPath( $fileName );
810 if ( !file_exists( $localPath ) ) {
811 throw new MWException( __METHOD__
. ": script file not found: \"$localPath\"" );
813 $contents = $this->stripBom( file_get_contents( $localPath ) );
814 if ( $this->getConfig()->get( 'ResourceLoaderValidateStaticJS' ) ) {
815 // Static files don't really need to be checked as often; unlike
816 // on-wiki module they shouldn't change unexpectedly without
817 // admin interference.
818 $contents = $this->validateScriptFile( $fileName, $contents );
820 $js .= $contents . "\n";
826 * Gets the contents of a list of CSS files.
828 * @param array $styles List of media type/list of file paths pairs, to read, remap and
831 * @param ResourceLoaderContext $context
833 * @throws MWException
834 * @return array List of concatenated and remapped CSS data from $styles,
835 * keyed by media type
837 * @since 1.27 Calling this method without a ResourceLoaderContext instance
840 public function readStyleFiles( array $styles, $flip, $context = null ) {
841 if ( $context === null ) {
842 wfDeprecated( __METHOD__
. ' without a ResourceLoader context', '1.27' );
843 $context = ResourceLoaderContext
::newDummyContext();
846 if ( empty( $styles ) ) {
849 foreach ( $styles as $media => $files ) {
850 $uniqueFiles = array_unique( $files, SORT_REGULAR
);
852 foreach ( $uniqueFiles as $file ) {
853 $styleFiles[] = $this->readStyleFile( $file, $flip, $context );
855 $styles[$media] = implode( "\n", $styleFiles );
861 * Reads a style file.
863 * This method can be used as a callback for array_map()
865 * @param string $path File path of style file to read
867 * @param ResourceLoaderContext $context
869 * @return string CSS data in script file
870 * @throws MWException If the file doesn't exist
872 protected function readStyleFile( $path, $flip, $context ) {
873 $localPath = $this->getLocalPath( $path );
874 $remotePath = $this->getRemotePath( $path );
875 if ( !file_exists( $localPath ) ) {
876 $msg = __METHOD__
. ": style file not found: \"$localPath\"";
877 wfDebugLog( 'resourceloader', $msg );
878 throw new MWException( $msg );
881 if ( $this->getStyleSheetLang( $localPath ) === 'less' ) {
882 $style = $this->compileLessFile( $localPath, $context );
883 $this->hasGeneratedStyles
= true;
885 $style = $this->stripBom( file_get_contents( $localPath ) );
889 $style = CSSJanus
::transform( $style, true, false );
891 $localDir = dirname( $localPath );
892 $remoteDir = dirname( $remotePath );
893 // Get and register local file references
894 $localFileRefs = CSSMin
::getLocalFileReferences( $style, $localDir );
895 foreach ( $localFileRefs as $file ) {
896 if ( file_exists( $file ) ) {
897 $this->localFileRefs
[] = $file;
899 $this->missingLocalFileRefs
[] = $file;
902 // Don't cache this call. remap() ensures data URIs embeds are up to date,
903 // and urls contain correct content hashes in their query string. (T128668)
904 return CSSMin
::remap( $style, $localDir, $remoteDir, true );
908 * Get whether CSS for this module should be flipped
909 * @param ResourceLoaderContext $context
912 public function getFlip( $context ) {
913 return $context->getDirection() === 'rtl';
917 * Get target(s) for the module, eg ['desktop'] or ['desktop', 'mobile']
919 * @return array Array of strings
921 public function getTargets() {
922 return $this->targets
;
926 * Compile a LESS file into CSS.
928 * Keeps track of all used files and adds them to localFileRefs.
931 * @since 1.27 Added $context paramter.
932 * @throws Exception If less.php encounters a parse error
933 * @param string $fileName File path of LESS source
934 * @param ResourceLoaderContext $context Context in which to generate script
935 * @return string CSS source
937 protected function compileLessFile( $fileName, ResourceLoaderContext
$context ) {
941 $cache = ObjectCache
::getLocalServerInstance( CACHE_ANYTHING
);
944 // Construct a cache key from the LESS file name and a hash digest
945 // of the LESS variables used for compilation.
946 $vars = $this->getLessVars( $context );
948 $varsHash = hash( 'md4', serialize( $vars ) );
949 $cacheKey = $cache->makeGlobalKey( 'LESS', $fileName, $varsHash );
950 $cachedCompile = $cache->get( $cacheKey );
952 // If we got a cached value, we have to validate it by getting a
953 // checksum of all the files that were loaded by the parser and
954 // ensuring it matches the cached entry's.
955 if ( isset( $cachedCompile['hash'] ) ) {
956 $contentHash = FileContentsHasher
::getFileContentsHash( $cachedCompile['files'] );
957 if ( $contentHash === $cachedCompile['hash'] ) {
958 $this->localFileRefs
= array_merge( $this->localFileRefs
, $cachedCompile['files'] );
959 return $cachedCompile['css'];
963 $compiler = $context->getResourceLoader()->getLessCompiler( $vars );
964 $css = $compiler->parseFile( $fileName )->getCss();
965 $files = $compiler->AllParsedFiles();
966 $this->localFileRefs
= array_merge( $this->localFileRefs
, $files );
968 $cache->set( $cacheKey, [
971 'hash' => FileContentsHasher
::getFileContentsHash( $files ),
972 ], 60 * 60 * 24 ); // 86400 seconds, or 24 hours.
978 * Takes named templates by the module and returns an array mapping.
979 * @return array of templates mapping template alias to content
980 * @throws MWException
982 public function getTemplates() {
985 foreach ( $this->templates
as $alias => $templatePath ) {
987 if ( is_int( $alias ) ) {
988 $alias = $templatePath;
990 $localPath = $this->getLocalPath( $templatePath );
991 if ( file_exists( $localPath ) ) {
992 $content = file_get_contents( $localPath );
993 $templates[$alias] = $this->stripBom( $content );
995 $msg = __METHOD__
. ": template file not found: \"$localPath\"";
996 wfDebugLog( 'resourceloader', $msg );
997 throw new MWException( $msg );
1004 * Takes an input string and removes the UTF-8 BOM character if present
1006 * We need to remove these after reading a file, because we concatenate our files and
1007 * the BOM character is not valid in the middle of a string.
1008 * We already assume UTF-8 everywhere, so this should be safe.
1010 * @return string input minus the intial BOM char
1012 protected function stripBom( $input ) {
1013 if ( substr_compare( "\xef\xbb\xbf", $input, 0, 3 ) === 0 ) {
1014 return substr( $input, 3 );