Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / includes / resourceloader / ResourceLoaderClientHtml.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21 use Wikimedia\WrappedString;
22 use Wikimedia\WrappedStringList;
23
24 /**
25 * Load and configure a ResourceLoader client on an HTML page.
26 *
27 * @since 1.28
28 */
29 class ResourceLoaderClientHtml {
30
31 /** @var ResourceLoaderContext */
32 private $context;
33
34 /** @var ResourceLoader */
35 private $resourceLoader;
36
37 /** @var array */
38 private $options;
39
40 /** @var array */
41 private $config = [];
42
43 /** @var array */
44 private $modules = [];
45
46 /** @var array */
47 private $moduleStyles = [];
48
49 /** @var array */
50 private $exemptStates = [];
51
52 /** @var array */
53 private $data;
54
55 /**
56 * @param ResourceLoaderContext $context
57 * @param array $options [optional] Array of options
58 * - 'target': Parameter for modules=startup request, see ResourceLoaderStartUpModule.
59 * - 'safemode': Parameter for modules=startup request, see ResourceLoaderStartUpModule.
60 * - 'nonce': From OutputPage::getCSPNonce().
61 */
62 public function __construct( ResourceLoaderContext $context, array $options = [] ) {
63 $this->context = $context;
64 $this->resourceLoader = $context->getResourceLoader();
65 $this->options = $options + [
66 'target' => null,
67 'safemode' => null,
68 'nonce' => null,
69 ];
70 }
71
72 /**
73 * Set mw.config variables.
74 *
75 * @param array $vars Array of key/value pairs
76 */
77 public function setConfig( array $vars ) {
78 foreach ( $vars as $key => $value ) {
79 $this->config[$key] = $value;
80 }
81 }
82
83 /**
84 * Ensure one or more modules are loaded.
85 *
86 * @param array $modules Array of module names
87 */
88 public function setModules( array $modules ) {
89 $this->modules = $modules;
90 }
91
92 /**
93 * Ensure the styles of one or more modules are loaded.
94 *
95 * @param array $modules Array of module names
96 */
97 public function setModuleStyles( array $modules ) {
98 $this->moduleStyles = $modules;
99 }
100
101 /**
102 * Set state of special modules that are handled by the caller manually.
103 *
104 * See OutputPage::buildExemptModules() for use cases.
105 *
106 * @param array $states Module state keyed by module name
107 */
108 public function setExemptStates( array $states ) {
109 $this->exemptStates = $states;
110 }
111
112 /**
113 * @return array
114 */
115 private function getData() {
116 if ( $this->data ) {
117 // @codeCoverageIgnoreStart
118 return $this->data;
119 // @codeCoverageIgnoreEnd
120 }
121
122 $rl = $this->resourceLoader;
123 $data = [
124 'states' => [
125 // moduleName => state
126 ],
127 'general' => [],
128 'styles' => [],
129 // Embedding for private modules
130 'embed' => [
131 'styles' => [],
132 'general' => [],
133 ],
134 // Deprecations for style-only modules
135 'styleDeprecations' => [],
136 ];
137
138 foreach ( $this->modules as $name ) {
139 $module = $rl->getModule( $name );
140 if ( !$module ) {
141 continue;
142 }
143
144 $group = $module->getGroup();
145 $context = $this->getContext( $group, ResourceLoaderModule::TYPE_COMBINED );
146 if ( $module->isKnownEmpty( $context ) ) {
147 // Avoid needless request or embed for empty module
148 $data['states'][$name] = 'ready';
149 continue;
150 }
151
152 if ( $group === 'user' || $module->shouldEmbedModule( $this->context ) ) {
153 // Call makeLoad() to decide how to load these, instead of
154 // loading via mw.loader.load().
155 // - For group=user: We need to provide a pre-generated load.php
156 // url to the client that has the 'user' and 'version' parameters
157 // filled in. Without this, the client would wrongly use the static
158 // version hash, per T64602.
159 // - For shouldEmbed=true: Embed via mw.loader.implement, per T36907.
160 $data['embed']['general'][] = $name;
161 // Avoid duplicate request from mw.loader
162 $data['states'][$name] = 'loading';
163 } else {
164 // Load via mw.loader.load()
165 $data['general'][] = $name;
166 }
167 }
168
169 foreach ( $this->moduleStyles as $name ) {
170 $module = $rl->getModule( $name );
171 if ( !$module ) {
172 continue;
173 }
174
175 if ( $module->getType() !== ResourceLoaderModule::LOAD_STYLES ) {
176 $logger = $rl->getLogger();
177 $logger->error( 'Unexpected general module "{module}" in styles queue.', [
178 'module' => $name,
179 ] );
180 continue;
181 }
182
183 // Stylesheet doesn't trigger mw.loader callback.
184 // Set "ready" state to allow script modules to depend on this module (T87871).
185 // And to avoid duplicate requests at run-time from mw.loader.
186 $data['states'][$name] = 'ready';
187
188 $group = $module->getGroup();
189 $context = $this->getContext( $group, ResourceLoaderModule::TYPE_STYLES );
190 // Avoid needless request for empty module
191 if ( !$module->isKnownEmpty( $context ) ) {
192 if ( $module->shouldEmbedModule( $this->context ) ) {
193 // Embed via style element
194 $data['embed']['styles'][] = $name;
195 } else {
196 // Load from load.php?only=styles via <link rel=stylesheet>
197 $data['styles'][] = $name;
198 }
199 }
200 $deprecation = $module->getDeprecationInformation();
201 if ( $deprecation ) {
202 $data['styleDeprecations'][] = $deprecation;
203 }
204 }
205
206 return $data;
207 }
208
209 /**
210 * @return array Attribute key-value pairs for the HTML document element
211 */
212 public function getDocumentAttributes() {
213 return [ 'class' => 'client-nojs' ];
214 }
215
216 /**
217 * The order of elements in the head is as follows:
218 * - Inline scripts.
219 * - Stylesheets.
220 * - Async external script-src.
221 *
222 * Reasons:
223 * - Script execution may be blocked on preceeding stylesheets.
224 * - Async scripts are not blocked on stylesheets.
225 * - Inline scripts can't be asynchronous.
226 * - For styles, earlier is better.
227 *
228 * @return string|WrappedStringList HTML
229 */
230 public function getHeadHtml() {
231 $nonce = $this->options['nonce'];
232 $data = $this->getData();
233 $chunks = [];
234
235 // Change "client-nojs" class to client-js. This allows easy toggling of UI components.
236 // This happens synchronously on every page view to avoid flashes of wrong content.
237 // See also #getDocumentAttributes() and /resources/src/startup.js.
238 $chunks[] = Html::inlineScript(
239 'document.documentElement.className = document.documentElement.className'
240 . '.replace( /(^|\s)client-nojs(\s|$)/, "$1client-js$2" );',
241 $nonce
242 );
243
244 // Inline RLQ: Set page variables
245 if ( $this->config ) {
246 $chunks[] = ResourceLoader::makeInlineScript(
247 ResourceLoader::makeConfigSetScript( $this->config ),
248 $nonce
249 );
250 }
251
252 // Inline RLQ: Initial module states
253 $states = array_merge( $this->exemptStates, $data['states'] );
254 if ( $states ) {
255 $chunks[] = ResourceLoader::makeInlineScript(
256 ResourceLoader::makeLoaderStateScript( $states ),
257 $nonce
258 );
259 }
260
261 // Inline RLQ: Embedded modules
262 if ( $data['embed']['general'] ) {
263 $chunks[] = $this->getLoad(
264 $data['embed']['general'],
265 ResourceLoaderModule::TYPE_COMBINED,
266 $nonce
267 );
268 }
269
270 // Inline RLQ: Load general modules
271 if ( $data['general'] ) {
272 $chunks[] = ResourceLoader::makeInlineScript(
273 'RLPAGEMODULES='
274 . ResourceLoader::encodeJsonForScript( $data['general'] )
275 . ';'
276 . 'mw.loader.load(RLPAGEMODULES);',
277 $nonce
278 );
279 }
280
281 // External stylesheets (only=styles)
282 if ( $data['styles'] ) {
283 $chunks[] = $this->getLoad(
284 $data['styles'],
285 ResourceLoaderModule::TYPE_STYLES,
286 $nonce
287 );
288 }
289
290 // Inline stylesheets (embedded only=styles)
291 if ( $data['embed']['styles'] ) {
292 $chunks[] = $this->getLoad(
293 $data['embed']['styles'],
294 ResourceLoaderModule::TYPE_STYLES,
295 $nonce
296 );
297 }
298
299 // Async scripts. Once the startup is loaded, inline RLQ scripts will run.
300 // Pass-through a custom 'target' from OutputPage (T143066).
301 $startupQuery = [];
302 foreach ( [ 'target', 'safemode' ] as $param ) {
303 if ( $this->options[$param] !== null ) {
304 $startupQuery[$param] = (string)$this->options[$param];
305 }
306 }
307 $chunks[] = $this->getLoad(
308 'startup',
309 ResourceLoaderModule::TYPE_SCRIPTS,
310 $nonce,
311 $startupQuery
312 );
313
314 return WrappedString::join( "\n", $chunks );
315 }
316
317 /**
318 * @return string|WrappedStringList HTML
319 */
320 public function getBodyHtml() {
321 $data = $this->getData();
322 $chunks = [];
323
324 // Deprecations for only=styles modules
325 if ( $data['styleDeprecations'] ) {
326 $chunks[] = ResourceLoader::makeInlineScript(
327 implode( '', $data['styleDeprecations'] ),
328 $this->options['nonce']
329 );
330 }
331
332 return WrappedString::join( "\n", $chunks );
333 }
334
335 private function getContext( $group, $type ) {
336 return self::makeContext( $this->context, $group, $type );
337 }
338
339 private function getLoad( $modules, $only, $nonce, array $extraQuery = [] ) {
340 return self::makeLoad( $this->context, (array)$modules, $only, $extraQuery, $nonce );
341 }
342
343 private static function makeContext( ResourceLoaderContext $mainContext, $group, $type,
344 array $extraQuery = []
345 ) {
346 // Create new ResourceLoaderContext so that $extraQuery may trigger isRaw().
347 $req = new FauxRequest( array_merge( $mainContext->getRequest()->getValues(), $extraQuery ) );
348 // Set 'only' if not combined
349 $req->setVal( 'only', $type === ResourceLoaderModule::TYPE_COMBINED ? null : $type );
350 // Remove user parameter in most cases
351 if ( $group !== 'user' && $group !== 'private' ) {
352 $req->setVal( 'user', null );
353 }
354 $context = new ResourceLoaderContext( $mainContext->getResourceLoader(), $req );
355 // Allow caller to setVersion() and setModules()
356 $ret = new DerivativeResourceLoaderContext( $context );
357 $ret->setContentOverrideCallback( $mainContext->getContentOverrideCallback() );
358 return $ret;
359 }
360
361 /**
362 * Explicily load or embed modules on a page.
363 *
364 * @param ResourceLoaderContext $mainContext
365 * @param array $modules One or more module names
366 * @param string $only ResourceLoaderModule TYPE_ class constant
367 * @param array $extraQuery [optional] Array with extra query parameters for the request
368 * @param string|null $nonce [optional] Content-Security-Policy nonce
369 * (from OutputPage::getCSPNonce)
370 * @return string|WrappedStringList HTML
371 */
372 public static function makeLoad( ResourceLoaderContext $mainContext, array $modules, $only,
373 array $extraQuery = [], $nonce = null
374 ) {
375 $rl = $mainContext->getResourceLoader();
376 $chunks = [];
377
378 // Sort module names so requests are more uniform
379 sort( $modules );
380
381 if ( $mainContext->getDebug() && count( $modules ) > 1 ) {
382 $chunks = [];
383 // Recursively call us for every item
384 foreach ( $modules as $name ) {
385 $chunks[] = self::makeLoad( $mainContext, [ $name ], $only, $extraQuery, $nonce );
386 }
387 return new WrappedStringList( "\n", $chunks );
388 }
389
390 // Create keyed-by-source and then keyed-by-group list of module objects from modules list
391 $sortedModules = [];
392 foreach ( $modules as $name ) {
393 $module = $rl->getModule( $name );
394 if ( !$module ) {
395 $rl->getLogger()->warning( 'Unknown module "{module}"', [ 'module' => $name ] );
396 continue;
397 }
398 $sortedModules[$module->getSource()][$module->getGroup()][$name] = $module;
399 }
400
401 foreach ( $sortedModules as $source => $groups ) {
402 foreach ( $groups as $group => $grpModules ) {
403 $context = self::makeContext( $mainContext, $group, $only, $extraQuery );
404
405 // Separate sets of linked and embedded modules while preserving order
406 $moduleSets = [];
407 $idx = -1;
408 foreach ( $grpModules as $name => $module ) {
409 $shouldEmbed = $module->shouldEmbedModule( $context );
410 if ( !$moduleSets || $moduleSets[$idx][0] !== $shouldEmbed ) {
411 $moduleSets[++$idx] = [ $shouldEmbed, [] ];
412 }
413 $moduleSets[$idx][1][$name] = $module;
414 }
415
416 // Link/embed each set
417 foreach ( $moduleSets as list( $embed, $moduleSet ) ) {
418 $context->setModules( array_keys( $moduleSet ) );
419 if ( $embed ) {
420 // Decide whether to use style or script element
421 if ( $only == ResourceLoaderModule::TYPE_STYLES ) {
422 $chunks[] = Html::inlineStyle(
423 $rl->makeModuleResponse( $context, $moduleSet )
424 );
425 } else {
426 $chunks[] = ResourceLoader::makeInlineScript(
427 $rl->makeModuleResponse( $context, $moduleSet ),
428 $nonce
429 );
430 }
431 } else {
432 // See if we have one or more raw modules
433 $isRaw = false;
434 foreach ( $moduleSet as $key => $module ) {
435 $isRaw |= $module->isRaw();
436 }
437
438 // Special handling for the user group; because users might change their stuff
439 // on-wiki like user pages, or user preferences; we need to find the highest
440 // timestamp of these user-changeable modules so we can ensure cache misses on change
441 // This should NOT be done for the site group (T29564) because anons get that too
442 // and we shouldn't be putting timestamps in CDN-cached HTML
443 if ( $group === 'user' ) {
444 // Must setModules() before makeVersionQuery()
445 $context->setVersion( $rl->makeVersionQuery( $context ) );
446 }
447
448 $url = $rl->createLoaderURL( $source, $context, $extraQuery );
449
450 // Decide whether to use 'style' or 'script' element
451 if ( $only === ResourceLoaderModule::TYPE_STYLES ) {
452 $chunk = Html::linkedStyle( $url );
453 } elseif ( $context->getRaw() || $isRaw ) {
454 $chunk = Html::element( 'script', [
455 // In SpecialJavaScriptTest, QUnit must load synchronous
456 'async' => !isset( $extraQuery['sync'] ),
457 'src' => $url
458 ] );
459 } else {
460 $chunk = ResourceLoader::makeInlineScript(
461 Xml::encodeJsCall( 'mw.loader.load', [ $url ] ),
462 $nonce
463 );
464 }
465
466 if ( $group == 'noscript' ) {
467 $chunks[] = Html::rawElement( 'noscript', [], $chunk );
468 } else {
469 $chunks[] = $chunk;
470 }
471 }
472 }
473 }
474 }
475
476 return new WrappedStringList( "\n", $chunks );
477 }
478 }