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 * [ [file-path], [file-path], ... ]
47 protected $scripts = [];
50 * @var array List of JavaScript files to include when using a specific language
53 * [ [language-code] => [ [file-path], [file-path], ... ], ... ]
56 protected $languageScripts = [];
59 * @var array List of JavaScript files to include when using a specific skin
62 * [ [skin-name] => [ [file-path], [file-path], ... ], ... ]
65 protected $skinScripts = [];
68 * @var array List of paths to JavaScript files to include in debug mode
71 * [ [skin-name] => [ [file-path], [file-path], ... ], ... ]
74 protected $debugScripts = [];
77 * @var array List of paths to CSS files to always include
80 * [ [file-path], [file-path], ... ]
83 protected $styles = [];
86 * @var array List of paths to CSS files to include when using specific skins
89 * [ [file-path], [file-path], ... ]
92 protected $skinStyles = [];
95 * @var array List of modules this module depends on
98 * [ [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 * [ [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' ];
131 /** @var bool Whether CSSJanus flipping should be skipped for this module */
132 protected $noflip = false;
135 * @var bool Whether getStyleURLsForDebug should return raw file paths,
136 * or return load.php urls
138 protected $hasGeneratedStyles = false;
141 * @var array Place where readStyleFile() tracks file dependencies
144 * [ [file-path], [file-path], ... ]
147 protected $localFileRefs = [];
150 * @var array Place where readStyleFile() tracks file dependencies for non-existent files.
151 * Used in tests to detect missing dependencies.
153 protected $missingLocalFileRefs = [];
158 * Constructs a new module from an options array.
160 * @param array $options List of options; if not given or empty, an empty module will be
162 * @param string $localBasePath Base path to prepend to all local paths in $options. Defaults
164 * @param string $remoteBasePath Base path to prepend to all remote paths in $options. Defaults
165 * to $wgResourceBasePath
167 * Below is a description for the $options array:
168 * @throws InvalidArgumentException
169 * @par Construction options:
172 * // Base path to prepend to all local paths in $options. Defaults to $IP
173 * 'localBasePath' => [base path],
174 * // Base path to prepend to all remote paths in $options. Defaults to $wgResourceBasePath
175 * 'remoteBasePath' => [base path],
176 * // Equivalent of remoteBasePath, but relative to $wgExtensionAssetsPath
177 * 'remoteExtPath' => [base path],
178 * // Equivalent of remoteBasePath, but relative to $wgStylePath
179 * 'remoteSkinPath' => [base path],
180 * // Scripts to always include
181 * 'scripts' => [file path string or array of file path strings],
182 * // Scripts to include in specific language contexts
183 * 'languageScripts' => [
184 * [language code] => [file path string or array of file path strings],
186 * // Scripts to include in specific skin contexts
188 * [skin name] => [file path string or array of file path strings],
190 * // Scripts to include in debug contexts
191 * 'debugScripts' => [file path string or array of file path strings],
192 * // Modules which must be loaded before this module
193 * 'dependencies' => [module name string or array of module name strings],
195 * [template alias with file.ext] => [file path to a template file],
197 * // Styles to always load
198 * 'styles' => [file path string or array of file path strings],
199 * // Styles to include in specific skin contexts
201 * [skin name] => [file path string or array of file path strings],
203 * // Messages to always load
204 * 'messages' => [array of message key strings],
205 * // Group which this module should be loaded together with
206 * 'group' => [group name string],
207 * // Position on the page to load this module at
208 * 'position' => ['bottom' (default) or 'top']
209 * // Function that, if it returns true, makes the loader skip this module.
210 * // The file must contain valid JavaScript for execution in a private function.
211 * // The file must not contain the "function () {" and "}" wrapper though.
212 * 'skipFunction' => [file path]
216 public function __construct(
218 $localBasePath = null,
219 $remoteBasePath = null
221 // Flag to decide whether to automagically add the mediawiki.template module
222 $hasTemplates = false;
223 // localBasePath and remoteBasePath both have unbelievably long fallback chains
224 // and need to be handled separately.
225 list( $this->localBasePath
, $this->remoteBasePath
) =
226 self
::extractBasePaths( $options, $localBasePath, $remoteBasePath );
228 // Extract, validate and normalise remaining options
229 foreach ( $options as $member => $option ) {
231 // Lists of file paths
235 $this->{$member} = (array)$option;
238 $hasTemplates = true;
239 $this->{$member} = (array)$option;
241 // Collated lists of file paths
242 case 'languageScripts':
245 if ( !is_array( $option ) ) {
246 throw new InvalidArgumentException(
247 "Invalid collated file path list error. " .
248 "'$option' given, array expected."
251 foreach ( $option as $key => $value ) {
252 if ( !is_string( $key ) ) {
253 throw new InvalidArgumentException(
254 "Invalid collated file path list key error. " .
255 "'$key' given, string expected."
258 $this->{$member}[$key] = (array)$value;
262 $this->deprecated
= $option;
269 $option = array_values( array_unique( (array)$option ) );
272 $this->{$member} = $option;
278 $this->{$member} = (string)$option;
284 $this->{$member} = (bool)$option;
288 if ( $hasTemplates ) {
289 $this->dependencies
[] = 'mediawiki.template';
290 // Ensure relevant template compiler module gets loaded
291 foreach ( $this->templates
as $alias => $templatePath ) {
292 if ( is_int( $alias ) ) {
293 $alias = $templatePath;
295 $suffix = explode( '.', $alias );
296 $suffix = end( $suffix );
297 $compilerModule = 'mediawiki.template.' . $suffix;
298 if ( $suffix !== 'html' && !in_array( $compilerModule, $this->dependencies
) ) {
299 $this->dependencies
[] = $compilerModule;
306 * Extract a pair of local and remote base paths from module definition information.
307 * Implementation note: the amount of global state used in this function is staggering.
309 * @param array $options Module definition
310 * @param string $localBasePath Path to use if not provided in module definition. Defaults
312 * @param string $remoteBasePath Path to use if not provided in module definition. Defaults
313 * to $wgResourceBasePath
314 * @return array Array( localBasePath, remoteBasePath )
316 public static function extractBasePaths(
318 $localBasePath = null,
319 $remoteBasePath = null
321 global $IP, $wgResourceBasePath;
323 // The different ways these checks are done, and their ordering, look very silly,
324 // but were preserved for backwards-compatibility just in case. Tread lightly.
326 if ( $localBasePath === null ) {
327 $localBasePath = $IP;
329 if ( $remoteBasePath === null ) {
330 $remoteBasePath = $wgResourceBasePath;
333 if ( isset( $options['remoteExtPath'] ) ) {
334 global $wgExtensionAssetsPath;
335 $remoteBasePath = $wgExtensionAssetsPath . '/' . $options['remoteExtPath'];
338 if ( isset( $options['remoteSkinPath'] ) ) {
340 $remoteBasePath = $wgStylePath . '/' . $options['remoteSkinPath'];
343 if ( array_key_exists( 'localBasePath', $options ) ) {
344 $localBasePath = (string)$options['localBasePath'];
347 if ( array_key_exists( 'remoteBasePath', $options ) ) {
348 $remoteBasePath = (string)$options['remoteBasePath'];
351 return [ $localBasePath, $remoteBasePath ];
355 * Gets all scripts for a given context concatenated together.
357 * @param ResourceLoaderContext $context Context in which to generate script
358 * @return string JavaScript code for $context
360 public function getScript( ResourceLoaderContext
$context ) {
361 $files = $this->getScriptFiles( $context );
362 return $this->getDeprecationInformation() . $this->readScriptFiles( $files );
366 * @param ResourceLoaderContext $context
369 public function getScriptURLsForDebug( ResourceLoaderContext
$context ) {
371 foreach ( $this->getScriptFiles( $context ) as $file ) {
372 $urls[] = OutputPage
::transformResourcePath(
374 $this->getRemotePath( $file )
383 public function supportsURLLoading() {
384 return $this->debugRaw
;
388 * Get all styles for a given context.
390 * @param ResourceLoaderContext $context
391 * @return array CSS code for $context as an associative array mapping media type to CSS text.
393 public function getStyles( ResourceLoaderContext
$context ) {
394 $styles = $this->readStyleFiles(
395 $this->getStyleFiles( $context ),
396 $this->getFlip( $context ),
399 // Collect referenced files
400 $this->saveFileDependencies( $context, $this->localFileRefs
);
406 * @param ResourceLoaderContext $context
409 public function getStyleURLsForDebug( ResourceLoaderContext
$context ) {
410 if ( $this->hasGeneratedStyles
) {
411 // Do the default behaviour of returning a url back to load.php
412 // but with only=styles.
413 return parent
::getStyleURLsForDebug( $context );
415 // Our module consists entirely of real css files,
416 // in debug mode we can load those directly.
418 foreach ( $this->getStyleFiles( $context ) as $mediaType => $list ) {
419 $urls[$mediaType] = [];
420 foreach ( $list as $file ) {
421 $urls[$mediaType][] = OutputPage
::transformResourcePath(
423 $this->getRemotePath( $file )
431 * Gets list of message keys used by this module.
433 * @return array List of message keys
435 public function getMessages() {
436 return $this->messages
;
440 * Gets the name of the group this module should be loaded in.
442 * @return string Group name
444 public function getGroup() {
451 public function getPosition() {
452 return $this->position
;
456 * Gets list of names of modules this module depends on.
457 * @param ResourceLoaderContext|null $context
458 * @return array List of module names
460 public function getDependencies( ResourceLoaderContext
$context = null ) {
461 return $this->dependencies
;
465 * Get the skip function.
466 * @return null|string
467 * @throws MWException
469 public function getSkipFunction() {
470 if ( !$this->skipFunction
) {
474 $localPath = $this->getLocalPath( $this->skipFunction
);
475 if ( !file_exists( $localPath ) ) {
476 throw new MWException( __METHOD__
. ": skip function file not found: \"$localPath\"" );
478 $contents = $this->stripBom( file_get_contents( $localPath ) );
479 if ( $this->getConfig()->get( 'ResourceLoaderValidateStaticJS' ) ) {
480 $contents = $this->validateScriptFile( $localPath, $contents );
488 public function isRaw() {
493 * Disable module content versioning.
495 * This class uses getDefinitionSummary() instead, to avoid filesystem overhead
496 * involved with building the full module content inside a startup request.
500 public function enableModuleContentVersion() {
505 * Helper method to gather file hashes for getDefinitionSummary.
507 * This function is context-sensitive, only computing hashes of files relevant to the
508 * given language, skin, etc.
510 * @see ResourceLoaderModule::getFileDependencies
511 * @param ResourceLoaderContext $context
514 protected function getFileHashes( ResourceLoaderContext
$context ) {
517 // Flatten style files into $files
518 $styles = self
::collateFilePathListByOption( $this->styles
, 'media', 'all' );
519 foreach ( $styles as $styleFiles ) {
520 $files = array_merge( $files, $styleFiles );
523 $skinFiles = self
::collateFilePathListByOption(
524 self
::tryForKey( $this->skinStyles
, $context->getSkin(), 'default' ),
528 foreach ( $skinFiles as $styleFiles ) {
529 $files = array_merge( $files, $styleFiles );
532 // Final merge, this should result in a master list of dependent files
533 $files = array_merge(
537 $context->getDebug() ?
$this->debugScripts
: [],
538 $this->getLanguageScripts( $context->getLanguage() ),
539 self
::tryForKey( $this->skinScripts
, $context->getSkin(), 'default' )
541 if ( $this->skipFunction
) {
542 $files[] = $this->skipFunction
;
544 $files = array_map( [ $this, 'getLocalPath' ], $files );
545 // File deps need to be treated separately because they're already prefixed
546 $files = array_merge( $files, $this->getFileDependencies( $context ) );
547 // Filter out any duplicates from getFileDependencies() and others.
548 // Most commonly introduced by compileLessFile(), which always includes the
549 // entry point Less file we already know about.
550 $files = array_values( array_unique( $files ) );
552 // Don't include keys or file paths here, only the hashes. Including that would needlessly
553 // cause global cache invalidation when files move or if e.g. the MediaWiki path changes.
554 // Any significant ordering is already detected by the definition summary.
555 return array_map( [ __CLASS__
, 'safeFileHash' ], $files );
559 * Get the definition summary for this module.
561 * @param ResourceLoaderContext $context
564 public function getDefinitionSummary( ResourceLoaderContext
$context ) {
565 $summary = parent
::getDefinitionSummary( $context );
569 // The following properties are omitted because they don't affect the module reponse:
570 // - localBasePath (Per T104950; Changes when absolute directory name changes. If
571 // this affects 'scripts' and other file paths, getFileHashes accounts for that.)
572 // - remoteBasePath (Per T104950)
573 // - dependencies (provided via startup module)
575 // - group (provided via startup module)
576 // - position (only used by OutputPage)
589 $options[$member] = $this->{$member};
593 'options' => $options,
594 'fileHashes' => $this->getFileHashes( $context ),
595 'messageBlob' => $this->getMessageBlob( $context ),
601 * @param string|ResourceLoaderFilePath $path
604 protected function getLocalPath( $path ) {
605 if ( $path instanceof ResourceLoaderFilePath
) {
606 return $path->getLocalPath();
609 return "{$this->localBasePath}/$path";
613 * @param string|ResourceLoaderFilePath $path
616 protected function getRemotePath( $path ) {
617 if ( $path instanceof ResourceLoaderFilePath
) {
618 return $path->getRemotePath();
621 return "{$this->remoteBasePath}/$path";
625 * Infer the stylesheet language from a stylesheet file path.
628 * @param string $path
629 * @return string The stylesheet language name
631 public function getStyleSheetLang( $path ) {
632 return preg_match( '/\.less$/i', $path ) ?
'less' : 'css';
636 * Collates file paths by option (where provided).
638 * @param array $list List of file paths in any combination of index/path
639 * or path/options pairs
640 * @param string $option Option name
641 * @param mixed $default Default value if the option isn't set
642 * @return array List of file paths, collated by $option
644 protected static function collateFilePathListByOption( array $list, $option, $default ) {
646 foreach ( (array)$list as $key => $value ) {
647 if ( is_int( $key ) ) {
648 // File name as the value
649 if ( !isset( $collatedFiles[$default] ) ) {
650 $collatedFiles[$default] = [];
652 $collatedFiles[$default][] = $value;
653 } elseif ( is_array( $value ) ) {
654 // File name as the key, options array as the value
655 $optionValue = isset( $value[$option] ) ?
$value[$option] : $default;
656 if ( !isset( $collatedFiles[$optionValue] ) ) {
657 $collatedFiles[$optionValue] = [];
659 $collatedFiles[$optionValue][] = $key;
662 return $collatedFiles;
666 * Get a list of element that match a key, optionally using a fallback key.
668 * @param array $list List of lists to select from
669 * @param string $key Key to look for in $map
670 * @param string $fallback Key to look for in $list if $key doesn't exist
671 * @return array List of elements from $map which matched $key or $fallback,
672 * or an empty list in case of no match
674 protected static function tryForKey( array $list, $key, $fallback = null ) {
675 if ( isset( $list[$key] ) && is_array( $list[$key] ) ) {
677 } elseif ( is_string( $fallback )
678 && isset( $list[$fallback] )
679 && is_array( $list[$fallback] )
681 return $list[$fallback];
687 * Get a list of file paths for all scripts in this module, in order of proper execution.
689 * @param ResourceLoaderContext $context
690 * @return array List of file paths
692 protected function getScriptFiles( ResourceLoaderContext
$context ) {
693 $files = array_merge(
695 $this->getLanguageScripts( $context->getLanguage() ),
696 self
::tryForKey( $this->skinScripts
, $context->getSkin(), 'default' )
698 if ( $context->getDebug() ) {
699 $files = array_merge( $files, $this->debugScripts
);
702 return array_unique( $files, SORT_REGULAR
);
706 * Get the set of language scripts for the given language,
707 * possibly using a fallback language.
709 * @param string $lang
712 private function getLanguageScripts( $lang ) {
713 $scripts = self
::tryForKey( $this->languageScripts
, $lang );
717 $fallbacks = Language
::getFallbacksFor( $lang );
718 foreach ( $fallbacks as $lang ) {
719 $scripts = self
::tryForKey( $this->languageScripts
, $lang );
729 * Get a list of file paths for all styles in this module, in order of proper inclusion.
731 * @param ResourceLoaderContext $context
732 * @return array List of file paths
734 public function getStyleFiles( ResourceLoaderContext
$context ) {
735 return array_merge_recursive(
736 self
::collateFilePathListByOption( $this->styles
, 'media', 'all' ),
737 self
::collateFilePathListByOption(
738 self
::tryForKey( $this->skinStyles
, $context->getSkin(), 'default' ),
746 * Gets a list of file paths for all skin styles in the module used by
749 * @param string $skinName The name of the skin
750 * @return array A list of file paths collated by media type
752 protected function getSkinStyleFiles( $skinName ) {
753 return self
::collateFilePathListByOption(
754 self
::tryForKey( $this->skinStyles
, $skinName ),
761 * Gets a list of file paths for all skin style files in the module,
762 * for all available skins.
764 * @return array A list of file paths collated by media type
766 protected function getAllSkinStyleFiles() {
768 $internalSkinNames = array_keys( Skin
::getSkinNames() );
769 $internalSkinNames[] = 'default';
771 foreach ( $internalSkinNames as $internalSkinName ) {
772 $styleFiles = array_merge_recursive(
774 $this->getSkinStyleFiles( $internalSkinName )
782 * Returns all style files and all skin style files used by this module.
786 public function getAllStyleFiles() {
787 $collatedStyleFiles = array_merge_recursive(
788 self
::collateFilePathListByOption( $this->styles
, 'media', 'all' ),
789 $this->getAllSkinStyleFiles()
794 foreach ( $collatedStyleFiles as $media => $styleFiles ) {
795 foreach ( $styleFiles as $styleFile ) {
796 $result[] = $this->getLocalPath( $styleFile );
804 * Gets the contents of a list of JavaScript files.
806 * @param array $scripts List of file paths to scripts to read, remap and concetenate
807 * @throws MWException
808 * @return string Concatenated and remapped JavaScript data from $scripts
810 protected function readScriptFiles( array $scripts ) {
811 if ( empty( $scripts ) ) {
815 foreach ( array_unique( $scripts, SORT_REGULAR
) as $fileName ) {
816 $localPath = $this->getLocalPath( $fileName );
817 if ( !file_exists( $localPath ) ) {
818 throw new MWException( __METHOD__
. ": script file not found: \"$localPath\"" );
820 $contents = $this->stripBom( file_get_contents( $localPath ) );
821 if ( $this->getConfig()->get( 'ResourceLoaderValidateStaticJS' ) ) {
822 // Static files don't really need to be checked as often; unlike
823 // on-wiki module they shouldn't change unexpectedly without
824 // admin interference.
825 $contents = $this->validateScriptFile( $fileName, $contents );
827 $js .= $contents . "\n";
833 * Gets the contents of a list of CSS files.
835 * @param array $styles List of media type/list of file paths pairs, to read, remap and
838 * @param ResourceLoaderContext $context
840 * @throws MWException
841 * @return array List of concatenated and remapped CSS data from $styles,
842 * keyed by media type
844 * @since 1.27 Calling this method without a ResourceLoaderContext instance
847 public function readStyleFiles( array $styles, $flip, $context = null ) {
848 if ( $context === null ) {
849 wfDeprecated( __METHOD__
. ' without a ResourceLoader context', '1.27' );
850 $context = ResourceLoaderContext
::newDummyContext();
853 if ( empty( $styles ) ) {
856 foreach ( $styles as $media => $files ) {
857 $uniqueFiles = array_unique( $files, SORT_REGULAR
);
859 foreach ( $uniqueFiles as $file ) {
860 $styleFiles[] = $this->readStyleFile( $file, $flip, $context );
862 $styles[$media] = implode( "\n", $styleFiles );
868 * Reads a style file.
870 * This method can be used as a callback for array_map()
872 * @param string $path File path of style file to read
874 * @param ResourceLoaderContext $context
876 * @return string CSS data in script file
877 * @throws MWException If the file doesn't exist
879 protected function readStyleFile( $path, $flip, $context ) {
880 $localPath = $this->getLocalPath( $path );
881 $remotePath = $this->getRemotePath( $path );
882 if ( !file_exists( $localPath ) ) {
883 $msg = __METHOD__
. ": style file not found: \"$localPath\"";
884 wfDebugLog( 'resourceloader', $msg );
885 throw new MWException( $msg );
888 if ( $this->getStyleSheetLang( $localPath ) === 'less' ) {
889 $style = $this->compileLessFile( $localPath, $context );
890 $this->hasGeneratedStyles
= true;
892 $style = $this->stripBom( file_get_contents( $localPath ) );
896 $style = CSSJanus
::transform( $style, true, false );
898 $localDir = dirname( $localPath );
899 $remoteDir = dirname( $remotePath );
900 // Get and register local file references
901 $localFileRefs = CSSMin
::getLocalFileReferences( $style, $localDir );
902 foreach ( $localFileRefs as $file ) {
903 if ( file_exists( $file ) ) {
904 $this->localFileRefs
[] = $file;
906 $this->missingLocalFileRefs
[] = $file;
909 // Don't cache this call. remap() ensures data URIs embeds are up to date,
910 // and urls contain correct content hashes in their query string. (T128668)
911 return CSSMin
::remap( $style, $localDir, $remoteDir, true );
915 * Get whether CSS for this module should be flipped
916 * @param ResourceLoaderContext $context
919 public function getFlip( $context ) {
920 return $context->getDirection() === 'rtl' && !$this->noflip
;
924 * Get target(s) for the module, eg ['desktop'] or ['desktop', 'mobile']
926 * @return array Array of strings
928 public function getTargets() {
929 return $this->targets
;
933 * Get the module's load type.
938 public function getType() {
939 $canBeStylesOnly = !(
940 // All options except 'styles', 'skinStyles' and 'debugRaw'
942 ||
$this->debugScripts
944 ||
$this->languageScripts
945 ||
$this->skinScripts
946 ||
$this->dependencies
948 ||
$this->skipFunction
951 return $canBeStylesOnly ? self
::LOAD_STYLES
: self
::LOAD_GENERAL
;
955 * Compile a LESS file into CSS.
957 * Keeps track of all used files and adds them to localFileRefs.
960 * @since 1.27 Added $context paramter.
961 * @throws Exception If less.php encounters a parse error
962 * @param string $fileName File path of LESS source
963 * @param ResourceLoaderContext $context Context in which to generate script
964 * @return string CSS source
966 protected function compileLessFile( $fileName, ResourceLoaderContext
$context ) {
970 $cache = ObjectCache
::getLocalServerInstance( CACHE_ANYTHING
);
973 // Construct a cache key from the LESS file name and a hash digest
974 // of the LESS variables used for compilation.
975 $vars = $this->getLessVars( $context );
977 $varsHash = hash( 'md4', serialize( $vars ) );
978 $cacheKey = $cache->makeGlobalKey( 'LESS', $fileName, $varsHash );
979 $cachedCompile = $cache->get( $cacheKey );
981 // If we got a cached value, we have to validate it by getting a
982 // checksum of all the files that were loaded by the parser and
983 // ensuring it matches the cached entry's.
984 if ( isset( $cachedCompile['hash'] ) ) {
985 $contentHash = FileContentsHasher
::getFileContentsHash( $cachedCompile['files'] );
986 if ( $contentHash === $cachedCompile['hash'] ) {
987 $this->localFileRefs
= array_merge( $this->localFileRefs
, $cachedCompile['files'] );
988 return $cachedCompile['css'];
992 $compiler = $context->getResourceLoader()->getLessCompiler( $vars );
993 $css = $compiler->parseFile( $fileName )->getCss();
994 $files = $compiler->AllParsedFiles();
995 $this->localFileRefs
= array_merge( $this->localFileRefs
, $files );
997 $cache->set( $cacheKey, [
1000 'hash' => FileContentsHasher
::getFileContentsHash( $files ),
1001 ], 60 * 60 * 24 ); // 86400 seconds, or 24 hours.
1007 * Takes named templates by the module and returns an array mapping.
1008 * @return array of templates mapping template alias to content
1009 * @throws MWException
1011 public function getTemplates() {
1014 foreach ( $this->templates
as $alias => $templatePath ) {
1015 // Alias is optional
1016 if ( is_int( $alias ) ) {
1017 $alias = $templatePath;
1019 $localPath = $this->getLocalPath( $templatePath );
1020 if ( file_exists( $localPath ) ) {
1021 $content = file_get_contents( $localPath );
1022 $templates[$alias] = $this->stripBom( $content );
1024 $msg = __METHOD__
. ": template file not found: \"$localPath\"";
1025 wfDebugLog( 'resourceloader', $msg );
1026 throw new MWException( $msg );
1033 * Takes an input string and removes the UTF-8 BOM character if present
1035 * We need to remove these after reading a file, because we concatenate our files and
1036 * the BOM character is not valid in the middle of a string.
1037 * We already assume UTF-8 everywhere, so this should be safe.
1039 * @return string input minus the intial BOM char
1041 protected function stripBom( $input ) {
1042 if ( substr_compare( "\xef\xbb\xbf", $input, 0, 3 ) === 0 ) {
1043 return substr( $input, 3 );