1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Twigpack plugin for Craft CMS 3.x |
4
|
|
|
* |
5
|
|
|
* Twigpack is the conduit between Twig and webpack, with manifest.json & |
6
|
|
|
* webpack-dev-server HMR support |
7
|
|
|
* |
8
|
|
|
* @link https://nystudio107.com/ |
|
|
|
|
9
|
|
|
* @copyright Copyright (c) 2018 nystudio107 |
|
|
|
|
10
|
|
|
*/ |
|
|
|
|
11
|
|
|
|
12
|
|
|
namespace nystudio107\twigpack\helpers; |
13
|
|
|
|
14
|
|
|
use Craft; |
15
|
|
|
use craft\errors\DeprecationException; |
16
|
|
|
use craft\helpers\Html; |
17
|
|
|
use craft\helpers\Json as JsonHelper; |
18
|
|
|
use craft\helpers\UrlHelper; |
19
|
|
|
use GuzzleHttp\Client; |
20
|
|
|
use GuzzleHttp\RequestOptions; |
21
|
|
|
use nystudio107\twigpack\models\Settings; |
22
|
|
|
use nystudio107\twigpack\Twigpack; |
23
|
|
|
use Throwable; |
24
|
|
|
use Twig\Error\LoaderError; |
25
|
|
|
use yii\base\Exception; |
26
|
|
|
use yii\caching\ChainedDependency; |
27
|
|
|
use yii\caching\FileDependency; |
28
|
|
|
use yii\caching\TagDependency; |
29
|
|
|
use yii\web\NotFoundHttpException; |
30
|
|
|
|
31
|
|
|
/** |
|
|
|
|
32
|
|
|
* @author nystudio107 |
|
|
|
|
33
|
|
|
* @package Twigpack |
|
|
|
|
34
|
|
|
* @since 1.0.0 |
|
|
|
|
35
|
|
|
*/ |
|
|
|
|
36
|
|
|
class Manifest |
37
|
|
|
{ |
38
|
|
|
// Constants |
39
|
|
|
// ========================================================================= |
40
|
|
|
|
41
|
|
|
public const CACHE_KEY = 'twigpack'; |
42
|
|
|
public const CACHE_TAG = 'twigpack'; |
43
|
|
|
|
44
|
|
|
public const DEVMODE_CACHE_DURATION = 1; |
45
|
|
|
|
46
|
|
|
public const CSP_HEADERS = [ |
47
|
|
|
'Content-Security-Policy', |
48
|
|
|
'X-Content-Security-Policy', |
49
|
|
|
'X-WebKit-CSP', |
50
|
|
|
]; |
51
|
|
|
|
52
|
|
|
public const SUPPRESS_ERRORS_FOR_MODULES = [ |
53
|
|
|
'styles.js', |
54
|
|
|
]; |
55
|
|
|
|
56
|
|
|
// Protected Static Properties |
57
|
|
|
// ========================================================================= |
58
|
|
|
|
59
|
|
|
/** |
|
|
|
|
60
|
|
|
* @var array |
61
|
|
|
*/ |
62
|
|
|
protected static $files; |
63
|
|
|
|
64
|
|
|
/** |
|
|
|
|
65
|
|
|
* @var bool |
66
|
|
|
*/ |
67
|
|
|
protected static $isHot = false; |
68
|
|
|
|
69
|
|
|
// Public Static Methods |
70
|
|
|
// ========================================================================= |
71
|
|
|
|
72
|
|
|
/** |
|
|
|
|
73
|
|
|
* @param array $config |
|
|
|
|
74
|
|
|
* @param string $moduleName |
|
|
|
|
75
|
|
|
* @param bool $async |
|
|
|
|
76
|
|
|
* @param array $attributes additional HTML key/value pair attributes to add to the resulting tag |
|
|
|
|
77
|
|
|
* |
78
|
|
|
* @return string |
79
|
|
|
* @throws NotFoundHttpException |
80
|
|
|
*/ |
81
|
|
|
public static function getCssModuleTags(array $config, string $moduleName, bool $async, array $attributes = []): string |
82
|
|
|
{ |
83
|
|
|
$legacyModule = self::getModule($config, $moduleName, 'legacy', true); |
84
|
|
|
if ($legacyModule === null) { |
85
|
|
|
return ''; |
86
|
|
|
} |
87
|
|
|
$lines = []; |
88
|
|
|
if ($async) { |
89
|
|
|
$lines[] = Html::cssFile($legacyModule, array_merge([ |
|
|
|
|
90
|
|
|
'rel' => 'stylesheet', |
91
|
|
|
'media' => 'print', |
92
|
|
|
'onload' => "this.media='all'", |
93
|
|
|
], $attributes)); |
|
|
|
|
94
|
|
|
$lines[] = Html::cssFile($legacyModule, array_merge([ |
|
|
|
|
95
|
|
|
'rel' => 'stylesheet', |
96
|
|
|
'noscript' => true, |
97
|
|
|
], $attributes)); |
|
|
|
|
98
|
|
|
} else { |
99
|
|
|
$lines[] = Html::cssFile($legacyModule, array_merge([ |
|
|
|
|
100
|
|
|
'rel' => 'stylesheet', |
101
|
|
|
], $attributes)); |
|
|
|
|
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
return implode("\r\n", $lines); |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
/** |
|
|
|
|
108
|
|
|
* @param string $path |
|
|
|
|
109
|
|
|
* @param array $attributes additional HTML key/value pair attributes to add to the resulting tag |
|
|
|
|
110
|
|
|
* |
111
|
|
|
* @return string |
112
|
|
|
*/ |
113
|
|
|
public static function getCssInlineTags(string $path, array $attributes = []): string |
114
|
|
|
{ |
115
|
|
|
$result = self::getFile($path); |
116
|
|
|
if ($result) { |
117
|
|
|
$config = []; |
118
|
|
|
$nonce = self::getNonce(); |
119
|
|
|
if ($nonce !== null) { |
120
|
|
|
$config['nonce'] = $nonce; |
121
|
|
|
self::includeNonce($nonce, 'style-src'); |
122
|
|
|
} |
123
|
|
|
$result = Html::style($result, array_merge($config, $attributes)); |
124
|
|
|
|
125
|
|
|
return $result; |
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
return ''; |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
/** |
|
|
|
|
132
|
|
|
* @param array $config |
|
|
|
|
133
|
|
|
* @param string|null $name |
|
|
|
|
134
|
|
|
* @param array $attributes additional HTML key/value pair attributes to add to the resulting tag |
|
|
|
|
135
|
|
|
* |
136
|
|
|
* @return string |
137
|
|
|
* @throws LoaderError |
138
|
|
|
*/ |
139
|
|
|
public static function getCriticalCssTags(array $config, ?string $name = null, array $attributes = []): string |
140
|
|
|
{ |
141
|
|
|
// Resolve the template name |
142
|
|
|
$template = Craft::$app->getView()->resolveTemplate($name ?? Twigpack::$templateName ?? ''); |
143
|
|
|
if ($template) { |
144
|
|
|
$name = self::combinePaths( |
145
|
|
|
pathinfo($template, PATHINFO_DIRNAME), |
|
|
|
|
146
|
|
|
pathinfo($template, PATHINFO_FILENAME) |
147
|
|
|
); |
148
|
|
|
$dirPrefix = 'templates/'; |
149
|
|
|
if (defined('CRAFT_TEMPLATES_PATH')) { |
150
|
|
|
$dirPrefix = CRAFT_TEMPLATES_PATH; |
151
|
|
|
} |
152
|
|
|
$name = strstr($name, $dirPrefix); |
153
|
|
|
$name = (string)str_replace($dirPrefix, '', $name); |
154
|
|
|
$path = self::combinePaths( |
155
|
|
|
$config['localFiles']['basePath'], |
|
|
|
|
156
|
|
|
$config['localFiles']['criticalPrefix'], |
|
|
|
|
157
|
|
|
$name |
|
|
|
|
158
|
|
|
) . $config['localFiles']['criticalSuffix']; |
|
|
|
|
159
|
|
|
|
160
|
|
|
return self::getCssInlineTags($path, $attributes); |
161
|
|
|
} |
162
|
|
|
|
163
|
|
|
return ''; |
164
|
|
|
} |
165
|
|
|
|
166
|
|
|
/** |
167
|
|
|
* Returns the uglified loadCSS rel=preload Polyfill as per: |
168
|
|
|
* https://github.com/filamentgroup/loadCSS#how-to-use-loadcss-recommended-example |
169
|
|
|
* |
170
|
|
|
* @return string |
|
|
|
|
171
|
|
|
* @throws DeprecationException |
|
|
|
|
172
|
|
|
* @deprecated in 1.2.0 |
173
|
|
|
*/ |
174
|
|
|
public static function getCssRelPreloadPolyfill(): string |
175
|
|
|
{ |
176
|
|
|
Craft::$app->getDeprecator()->log('craft.twigpack.includeCssRelPreloadPolyfill()', 'craft.twigpack.includeCssRelPreloadPolyfill() has been deprecated, this function now does nothing. You can safely remove craft.twigpack.includeCssRelPreloadPolyfill() from your templates.'); |
177
|
|
|
|
178
|
|
|
return ''; |
179
|
|
|
} |
180
|
|
|
|
181
|
|
|
/** |
|
|
|
|
182
|
|
|
* @param array $config |
|
|
|
|
183
|
|
|
* @param string $moduleName |
|
|
|
|
184
|
|
|
* @param bool $async |
|
|
|
|
185
|
|
|
* @param array $attributes additional HTML key/value pair attributes to add to the resulting tag |
|
|
|
|
186
|
|
|
* |
187
|
|
|
* @return null|string |
188
|
|
|
* @throws NotFoundHttpException |
189
|
|
|
*/ |
190
|
|
|
public static function getJsModuleTags(array $config, string $moduleName, bool $async, array $attributes = []): ?string |
191
|
|
|
{ |
192
|
|
|
$legacyModule = self::getModule($config, $moduleName, 'legacy', true); |
193
|
|
|
if ($legacyModule === null) { |
194
|
|
|
return ''; |
195
|
|
|
} |
196
|
|
|
$modernModule = ''; |
197
|
|
|
if ($async) { |
198
|
|
|
$modernModule = self::getModule($config, $moduleName, 'modern', true); |
199
|
|
|
if ($modernModule === null) { |
200
|
|
|
return ''; |
201
|
|
|
} |
202
|
|
|
} |
203
|
|
|
$lines = []; |
204
|
|
|
if ($async) { |
205
|
|
|
$lines[] = Html::jsFile($modernModule, array_merge([ |
|
|
|
|
206
|
|
|
'type' => 'module', |
207
|
|
|
], $attributes)); |
|
|
|
|
208
|
|
|
$lines[] = Html::jsFile($legacyModule, array_merge([ |
|
|
|
|
209
|
|
|
'nomodule' => true, |
210
|
|
|
], $attributes)); |
|
|
|
|
211
|
|
|
} else { |
212
|
|
|
$lines[] = Html::jsFile($legacyModule, array_merge([ |
|
|
|
|
213
|
|
|
], $attributes)); |
|
|
|
|
214
|
|
|
} |
215
|
|
|
|
216
|
|
|
return implode("\r\n", $lines); |
217
|
|
|
} |
218
|
|
|
|
219
|
|
|
/** |
220
|
|
|
* Safari 10.1 supports modules, but does not support the `nomodule` |
221
|
|
|
* attribute - it will load <script nomodule> anyway. This snippet solve |
222
|
|
|
* this problem, but only for script tags that load external code, e.g.: |
223
|
|
|
* <script nomodule src="nomodule.js"></script> |
224
|
|
|
* |
225
|
|
|
* Again: this will **not* # prevent inline script, e.g.: |
226
|
|
|
* <script nomodule>alert('no modules');</script>. |
227
|
|
|
* |
228
|
|
|
* This workaround is possible because Safari supports the non-standard |
229
|
|
|
* 'beforeload' event. This allows us to trap the module and nomodule load. |
230
|
|
|
* |
231
|
|
|
* Note also that `nomodule` is supported in later versions of Safari - |
232
|
|
|
* it's just 10.1 that omits this attribute. |
233
|
|
|
* |
234
|
|
|
* c.f.: https://gist.github.com/samthor/64b114e4a4f539915a95b91ffd340acc |
235
|
|
|
* |
236
|
|
|
* @param array $attributes additional HTML key/value pair attributes to add to the resulting tag |
237
|
|
|
* |
238
|
|
|
* @return string |
239
|
|
|
*/ |
240
|
|
|
public static function getSafariNomoduleFix(array $attributes = []): string |
241
|
|
|
{ |
242
|
|
|
$code = /** @lang JavaScript */ |
|
|
|
|
243
|
|
|
<<<EOT |
244
|
|
|
!function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); |
245
|
|
|
EOT; |
246
|
|
|
$config = []; |
247
|
|
|
$nonce = self::getNonce(); |
248
|
|
|
if ($nonce !== null) { |
249
|
|
|
$config['nonce'] = $nonce; |
250
|
|
|
self::includeNonce($nonce, 'script-src'); |
251
|
|
|
} |
252
|
|
|
|
253
|
|
|
return Html::script($code, array_merge($config, $attributes)); |
254
|
|
|
} |
255
|
|
|
|
256
|
|
|
/** |
257
|
|
|
* Return the URI to a module |
258
|
|
|
* |
259
|
|
|
* @param array $config |
|
|
|
|
260
|
|
|
* @param string $moduleName |
|
|
|
|
261
|
|
|
* @param string $type |
|
|
|
|
262
|
|
|
* @param bool $soft |
|
|
|
|
263
|
|
|
* |
264
|
|
|
* @return null|string |
265
|
|
|
* @throws NotFoundHttpException |
266
|
|
|
*/ |
267
|
|
|
public static function getModule(array $config, string $moduleName, string $type = 'modern', bool $soft = false): ?string |
268
|
|
|
{ |
269
|
|
|
// Get the module entry |
270
|
|
|
$module = self::getModuleEntry($config, $moduleName, $type, $soft); |
271
|
|
|
if ($module !== null) { |
272
|
|
|
$prefix = self::$isHot |
273
|
|
|
? $config['devServer']['publicPath'] |
274
|
|
|
: $config['server']['publicPath']; |
275
|
|
|
$useAbsoluteUrl = $config['useAbsoluteUrl']; |
276
|
|
|
// If the module isn't a full URL, prefix it as required |
277
|
|
|
if ($useAbsoluteUrl && !UrlHelper::isAbsoluteUrl($module)) { |
278
|
|
|
$module = self::combinePaths($prefix, $module); |
279
|
|
|
} |
280
|
|
|
// Resolve any aliases |
281
|
|
|
$alias = Craft::getAlias($module, false); |
282
|
|
|
if ($alias) { |
283
|
|
|
$module = $alias; |
284
|
|
|
} |
285
|
|
|
// Make sure it's a full URL, as required |
286
|
|
|
try { |
287
|
|
|
if ($useAbsoluteUrl && !UrlHelper::isAbsoluteUrl($module) && !is_file($module)) { |
288
|
|
|
$module = UrlHelper::siteUrl($module); |
289
|
|
|
} |
290
|
|
|
} catch (Exception $e) { |
291
|
|
|
Craft::error($e->getMessage(), __METHOD__); |
292
|
|
|
} |
293
|
|
|
} |
294
|
|
|
|
295
|
|
|
return $module; |
296
|
|
|
} |
297
|
|
|
|
298
|
|
|
/** |
299
|
|
|
* Return the HASH value from to module |
300
|
|
|
* |
301
|
|
|
* @param array $config |
|
|
|
|
302
|
|
|
* @param string $moduleName |
|
|
|
|
303
|
|
|
* @param string $type |
|
|
|
|
304
|
|
|
* @param bool $soft |
|
|
|
|
305
|
|
|
* |
306
|
|
|
* @return null|string |
307
|
|
|
*/ |
308
|
|
|
public static function getModuleHash(array $config, string $moduleName, string $type = 'modern', bool $soft = false): ?string |
309
|
|
|
{ |
310
|
|
|
$moduleHash = ''; |
311
|
|
|
try { |
312
|
|
|
// Get the module entry |
313
|
|
|
$module = self::getModuleEntry($config, $moduleName, $type, $soft); |
314
|
|
|
if ($module !== null) { |
315
|
|
|
// Extract only the Hash Value |
316
|
|
|
$modulePath = pathinfo($module); |
317
|
|
|
$moduleFilename = $modulePath['filename']; |
318
|
|
|
$moduleHash = substr($moduleFilename, strpos($moduleFilename, ".") + 1); |
319
|
|
|
} |
320
|
|
|
} catch (Exception $e) { |
321
|
|
|
// return empty string if no module is found |
322
|
|
|
return ''; |
323
|
|
|
} |
324
|
|
|
|
325
|
|
|
return $moduleHash; |
326
|
|
|
} |
327
|
|
|
|
328
|
|
|
/** |
329
|
|
|
* Return a module's raw entry from the manifest |
330
|
|
|
* |
331
|
|
|
* @param array $config |
|
|
|
|
332
|
|
|
* @param string $moduleName |
|
|
|
|
333
|
|
|
* @param string $type |
|
|
|
|
334
|
|
|
* @param bool $soft |
|
|
|
|
335
|
|
|
* |
336
|
|
|
* @return null|string |
337
|
|
|
* @throws NotFoundHttpException |
338
|
|
|
*/ |
339
|
|
|
public static function getModuleEntry( |
340
|
|
|
array $config, |
341
|
|
|
string $moduleName, |
342
|
|
|
string $type = 'modern', |
343
|
|
|
bool $soft = false, |
344
|
|
|
): ?string { |
345
|
|
|
$module = null; |
346
|
|
|
// Get the manifest file |
347
|
|
|
$manifest = self::getManifestFile($config, $type); |
348
|
|
|
if ($manifest !== null) { |
349
|
|
|
// Make sure it exists in the manifest |
350
|
|
|
if (empty($manifest[$moduleName])) { |
351
|
|
|
// Don't report errors for any files in SUPPRESS_ERRORS_FOR_MODULES |
352
|
|
|
if (!in_array($moduleName, self::SUPPRESS_ERRORS_FOR_MODULES)) { |
353
|
|
|
self::reportError(Craft::t( |
|
|
|
|
354
|
|
|
'twigpack', |
355
|
|
|
'Module does not exist in the manifest: {moduleName}', |
356
|
|
|
['moduleName' => $moduleName] |
357
|
|
|
), $soft); |
|
|
|
|
358
|
|
|
} |
359
|
|
|
|
360
|
|
|
return null; |
361
|
|
|
} |
362
|
|
|
$module = $manifest[$moduleName]; |
363
|
|
|
} |
364
|
|
|
|
365
|
|
|
return $module; |
366
|
|
|
} |
367
|
|
|
|
368
|
|
|
/** |
369
|
|
|
* Return a JSON-decoded manifest file |
370
|
|
|
* |
371
|
|
|
* @param array $config |
|
|
|
|
372
|
|
|
* @param string $type |
|
|
|
|
373
|
|
|
* |
374
|
|
|
* @return null|array |
375
|
|
|
* @throws NotFoundHttpException |
376
|
|
|
*/ |
377
|
|
|
public static function getManifestFile(array $config, string $type = 'modern'): ?array |
378
|
|
|
{ |
379
|
|
|
$manifest = null; |
380
|
|
|
// Determine whether we should use the devServer for HMR or not |
381
|
|
|
$devMode = Craft::$app->getConfig()->getGeneral()->devMode; |
382
|
|
|
self::$isHot = ($devMode && $config['useDevServer']); |
383
|
|
|
// Try to get the manifest |
384
|
|
|
while ($manifest === null) { |
385
|
|
|
$manifestPath = self::$isHot |
386
|
|
|
? $config['devServer']['manifestPath'] |
387
|
|
|
: $config['server']['manifestPath']; |
388
|
|
|
// If this is a dev-server, use the defined build type |
389
|
|
|
$thisType = $type; |
390
|
|
|
if (self::$isHot) { |
391
|
|
|
$thisType = $config['devServerBuildType'] === 'combined' |
392
|
|
|
? $thisType |
393
|
|
|
: $config['devServerBuildType']; |
394
|
|
|
} |
395
|
|
|
// Normalize the path |
396
|
|
|
$path = self::combinePaths($manifestPath, $config['manifest'][$thisType]); |
397
|
|
|
$manifest = self::getJsonFile($path); |
398
|
|
|
// If the manifest isn't found, and it was hot, fall back on non-hot |
399
|
|
|
if ($manifest === null) { |
400
|
|
|
// We couldn't find a manifest; throw an error |
401
|
|
|
self::reportError(Craft::t( |
|
|
|
|
402
|
|
|
'twigpack', |
403
|
|
|
'Manifest file not found at: {manifestPath}', |
404
|
|
|
['manifestPath' => $manifestPath] |
405
|
|
|
), true); |
|
|
|
|
406
|
|
|
if (self::$isHot) { |
407
|
|
|
// Try again, but not with home module replacement |
408
|
|
|
self::$isHot = false; |
409
|
|
|
} else { |
410
|
|
|
// Give up and return null |
411
|
|
|
return null; |
412
|
|
|
} |
413
|
|
|
} |
414
|
|
|
} |
415
|
|
|
|
416
|
|
|
return $manifest; |
417
|
|
|
} |
418
|
|
|
|
419
|
|
|
/** |
420
|
|
|
* Returns the contents of a file from a URI path |
421
|
|
|
* |
422
|
|
|
* @param string $path |
|
|
|
|
423
|
|
|
* |
424
|
|
|
* @return string |
425
|
|
|
*/ |
426
|
|
|
public static function getFile(string $path): string |
427
|
|
|
{ |
428
|
|
|
return self::getFileFromUri($path, null, true) ?? ''; |
429
|
|
|
} |
430
|
|
|
|
431
|
|
|
/** |
|
|
|
|
432
|
|
|
* @param array $config |
|
|
|
|
433
|
|
|
* @param string $fileName |
|
|
|
|
434
|
|
|
* @param string $type |
|
|
|
|
435
|
|
|
* |
436
|
|
|
* @return string |
437
|
|
|
*/ |
438
|
|
|
public static function getFileFromManifest(array $config, string $fileName, string $type = 'legacy'): string |
439
|
|
|
{ |
440
|
|
|
$path = null; |
|
|
|
|
441
|
|
|
try { |
442
|
|
|
$path = self::getModuleEntry($config, $fileName, $type, true); |
443
|
|
|
} catch (NotFoundHttpException $e) { |
444
|
|
|
Craft::error($e->getMessage(), __METHOD__); |
445
|
|
|
} |
446
|
|
|
if ($path !== null) { |
447
|
|
|
// Determine whether we should use the devServer for HMR or not |
448
|
|
|
$devMode = Craft::$app->getConfig()->getGeneral()->devMode; |
449
|
|
|
if ($devMode) { |
450
|
|
|
$devServerPrefix = $config['devServer']['publicPath']; |
451
|
|
|
// If we're using the devserver, swap in the deverserver path |
452
|
|
|
if (UrlHelper::isAbsoluteUrl($path) && self::$isHot) { |
453
|
|
|
$path = parse_url($path, PHP_URL_PATH); |
454
|
|
|
} |
455
|
|
|
$devServerPath = self::combinePaths( |
456
|
|
|
$devServerPrefix, |
457
|
|
|
$path |
458
|
|
|
); |
459
|
|
|
$devServerFile = self::getFileFromUri($devServerPath, null); |
460
|
|
|
if ($devServerFile) { |
461
|
|
|
return $devServerFile; |
462
|
|
|
} |
463
|
|
|
} |
464
|
|
|
// Otherwise, try not-hot files |
465
|
|
|
$localPrefix = $config['localFiles']['basePath']; |
466
|
|
|
$localPath = self::combinePaths( |
467
|
|
|
$localPrefix, |
468
|
|
|
$path |
469
|
|
|
); |
470
|
|
|
$alias = Craft::getAlias($localPath, false); |
471
|
|
|
if ($alias && is_string($alias)) { |
472
|
|
|
$localPath = $alias; |
473
|
|
|
} |
474
|
|
|
try { |
475
|
|
|
if (is_file($localPath)) { |
476
|
|
|
return self::getFile($localPath); |
477
|
|
|
} |
478
|
|
|
} catch (Exception $e) { |
479
|
|
|
Craft::error($e->getMessage(), __METHOD__); |
480
|
|
|
} |
481
|
|
|
} |
482
|
|
|
|
483
|
|
|
return ''; |
484
|
|
|
} |
485
|
|
|
|
486
|
|
|
/** |
487
|
|
|
* Invalidate all of the manifest caches |
488
|
|
|
*/ |
|
|
|
|
489
|
|
|
public static function invalidateCaches(): void |
490
|
|
|
{ |
491
|
|
|
$cache = Craft::$app->getCache(); |
492
|
|
|
TagDependency::invalidate($cache, self::CACHE_TAG); |
493
|
|
|
Craft::info('All manifest caches cleared', __METHOD__); |
494
|
|
|
} |
495
|
|
|
|
496
|
|
|
/** |
497
|
|
|
* Return the contents of a JSON file from a URI path |
498
|
|
|
* |
499
|
|
|
* @param string $path |
|
|
|
|
500
|
|
|
* |
501
|
|
|
* @return null|array |
502
|
|
|
*/ |
503
|
|
|
protected static function getJsonFile(string $path): ?array |
504
|
|
|
{ |
505
|
|
|
return self::getFileFromUri($path, [self::class, 'jsonFileDecode']); |
506
|
|
|
} |
507
|
|
|
|
508
|
|
|
// Protected Static Methods |
509
|
|
|
// ========================================================================= |
510
|
|
|
|
511
|
|
|
/** |
512
|
|
|
* Return the contents of a file from a URI path |
513
|
|
|
* |
514
|
|
|
* @param string $path |
|
|
|
|
515
|
|
|
* @param callable|null $callback |
|
|
|
|
516
|
|
|
* @param bool $pathOnly |
|
|
|
|
517
|
|
|
* |
518
|
|
|
* @return null|mixed |
519
|
|
|
*/ |
520
|
|
|
protected static function getFileFromUri(string $path, callable $callback = null, bool $pathOnly = false): mixed |
521
|
|
|
{ |
522
|
|
|
// Resolve any aliases |
523
|
|
|
$alias = Craft::getAlias($path, false); |
524
|
|
|
if ($alias && is_string($alias)) { |
525
|
|
|
$path = $alias; |
526
|
|
|
} |
527
|
|
|
// If we only want the file via path, make sure it exists |
528
|
|
|
try { |
529
|
|
|
if ($pathOnly && !is_file($path)) { |
530
|
|
|
Craft::warning(Craft::t( |
|
|
|
|
531
|
|
|
'twigpack', |
532
|
|
|
'File does not exist: {path}', |
533
|
|
|
['path' => $path] |
534
|
|
|
), __METHOD__); |
|
|
|
|
535
|
|
|
|
536
|
|
|
return ''; |
537
|
|
|
} |
538
|
|
|
} catch (Exception $e) { |
539
|
|
|
Craft::error($e->getMessage(), __METHOD__); |
540
|
|
|
} |
541
|
|
|
|
542
|
|
|
// Make sure it's a full URL |
543
|
|
|
try { |
544
|
|
|
if (!UrlHelper::isAbsoluteUrl($path) && !is_file($path)) { |
545
|
|
|
$path = UrlHelper::siteUrl($path); |
546
|
|
|
} |
547
|
|
|
} catch (Exception $e) { |
548
|
|
|
Craft::error($e->getMessage(), __METHOD__); |
549
|
|
|
} |
550
|
|
|
|
551
|
|
|
return self::getFileContents($path, $callback); |
552
|
|
|
} |
553
|
|
|
|
554
|
|
|
/** |
555
|
|
|
* Return the contents of a file from the passed in path |
556
|
|
|
* |
557
|
|
|
* @param string $path |
|
|
|
|
558
|
|
|
* @param callable $callback |
|
|
|
|
559
|
|
|
* |
560
|
|
|
* @return null|mixed |
561
|
|
|
*/ |
562
|
|
|
protected static function getFileContents(string $path, callable $callback = null): mixed |
563
|
|
|
{ |
564
|
|
|
// Return the memoized manifest if it exists |
565
|
|
|
if (!empty(self::$files[$path])) { |
566
|
|
|
return self::$files[$path]; |
567
|
|
|
} |
568
|
|
|
// Create the dependency tags |
569
|
|
|
$dependency = new TagDependency([ |
|
|
|
|
570
|
|
|
'tags' => [ |
571
|
|
|
self::CACHE_TAG, |
572
|
|
|
self::CACHE_TAG . $path, |
573
|
|
|
], |
574
|
|
|
]); |
|
|
|
|
575
|
|
|
// If this is a file path such as for the `manifest.json`, add a FileDependency so it's cache bust if the file changes |
576
|
|
|
if (!UrlHelper::isAbsoluteUrl($path)) { |
577
|
|
|
$dependency = new ChainedDependency([ |
|
|
|
|
578
|
|
|
'dependencies' => [ |
579
|
|
|
new FileDependency([ |
|
|
|
|
580
|
|
|
'fileName' => $path, |
581
|
|
|
]), |
|
|
|
|
582
|
|
|
$dependency, |
583
|
|
|
], |
584
|
|
|
]); |
|
|
|
|
585
|
|
|
} |
586
|
|
|
// Set the cache duration based on devMode |
587
|
|
|
$cacheDuration = Craft::$app->getConfig()->getGeneral()->devMode |
588
|
|
|
? self::DEVMODE_CACHE_DURATION |
589
|
|
|
: null; |
590
|
|
|
// Get the result from the cache, or parse the file |
591
|
|
|
$cache = Craft::$app->getCache(); |
592
|
|
|
$settings = Twigpack::$plugin->getSettings(); |
|
|
|
|
593
|
|
|
$cacheKeySuffix = $settings->cacheKeySuffix ?? ''; |
594
|
|
|
$file = $cache->getOrSet( |
595
|
|
|
self::CACHE_KEY . $cacheKeySuffix . $path, |
596
|
|
|
function() use ($path, $callback) { |
|
|
|
|
597
|
|
|
$result = null; |
598
|
|
|
$contents = null; |
599
|
|
|
if (UrlHelper::isAbsoluteUrl($path)) { |
600
|
|
|
$clientOptions = [ |
601
|
|
|
RequestOptions::HTTP_ERRORS => false, |
602
|
|
|
RequestOptions::CONNECT_TIMEOUT => 3, |
603
|
|
|
RequestOptions::VERIFY => false, |
604
|
|
|
RequestOptions::TIMEOUT => 5, |
605
|
|
|
]; |
606
|
|
|
// If we're hot, insert a short 50ms delay in fetching remove files, to handle a webpack-dev-server/ |
607
|
|
|
// Tailwind CSS JIT race condition |
608
|
|
|
if (self::$isHot) { |
609
|
|
|
$clientOptions = array_merge($clientOptions, [ |
|
|
|
|
610
|
|
|
RequestOptions::DELAY => 100, |
611
|
|
|
]); |
|
|
|
|
612
|
|
|
} |
613
|
|
|
$client = new Client($clientOptions); |
614
|
|
|
try { |
615
|
|
|
$response = $client->request('GET', $path, [ |
|
|
|
|
616
|
|
|
RequestOptions::HEADERS => [ |
617
|
|
|
'User-Agent' => "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13", |
618
|
|
|
'Accept' => '*/*', |
619
|
|
|
], |
620
|
|
|
]); |
|
|
|
|
621
|
|
|
if ($response->getStatusCode() === 200) { |
622
|
|
|
$contents = $response->getBody()->getContents(); |
623
|
|
|
} |
624
|
|
|
} catch (Throwable $e) { |
625
|
|
|
Craft::error($e->getMessage(), __METHOD__); |
626
|
|
|
} |
627
|
|
|
} else { |
628
|
|
|
$contents = @file_get_contents($path); |
629
|
|
|
} |
630
|
|
|
if ($contents) { |
631
|
|
|
$result = $contents; |
632
|
|
|
if ($callback) { |
633
|
|
|
$result = $callback($result); |
634
|
|
|
} |
635
|
|
|
} |
636
|
|
|
|
637
|
|
|
return $result; |
638
|
|
|
}, |
639
|
|
|
$cacheDuration, |
640
|
|
|
$dependency |
641
|
|
|
); |
642
|
|
|
self::$files[$path] = $file; |
643
|
|
|
|
644
|
|
|
return $file; |
645
|
|
|
} |
646
|
|
|
|
647
|
|
|
/** |
648
|
|
|
* Get the response code from a given $url |
649
|
|
|
* |
650
|
|
|
* @param $url |
|
|
|
|
651
|
|
|
* @param $context |
|
|
|
|
652
|
|
|
* @return false|string |
|
|
|
|
653
|
|
|
*/ |
654
|
|
|
protected static function getHttpResponseCode($url, $context): bool|string |
655
|
|
|
{ |
656
|
|
|
$headers = @get_headers($url, false, $context); |
657
|
|
|
if (empty($headers)) { |
658
|
|
|
return '404'; |
659
|
|
|
} |
660
|
|
|
|
661
|
|
|
return substr($headers[0], 9, 3); |
662
|
|
|
} |
663
|
|
|
|
664
|
|
|
/** |
665
|
|
|
* Combined the passed in paths, whether file system or URL |
666
|
|
|
* |
667
|
|
|
* @param string ...$paths |
|
|
|
|
668
|
|
|
* |
669
|
|
|
* @return string |
670
|
|
|
*/ |
671
|
|
|
protected static function combinePaths(?string ...$paths): string |
672
|
|
|
{ |
673
|
|
|
$last_key = count($paths) - 1; |
674
|
|
|
array_walk($paths, function(&$val, $key) use ($last_key) { |
|
|
|
|
675
|
|
|
switch ($key) { |
676
|
|
|
case 0: |
|
|
|
|
677
|
|
|
$val = rtrim($val, '/ '); |
678
|
|
|
break; |
679
|
|
|
case $last_key: |
|
|
|
|
680
|
|
|
$val = ltrim($val, '/ '); |
681
|
|
|
break; |
682
|
|
|
default: |
|
|
|
|
683
|
|
|
$val = trim($val, '/ '); |
684
|
|
|
break; |
685
|
|
|
} |
686
|
|
|
}); |
|
|
|
|
687
|
|
|
|
688
|
|
|
$first = array_shift($paths); |
689
|
|
|
$last = array_pop($paths); |
690
|
|
|
$paths = array_filter($paths); |
691
|
|
|
array_unshift($paths, $first); |
692
|
|
|
$paths[] = $last; |
693
|
|
|
|
694
|
|
|
return implode('/', $paths); |
695
|
|
|
} |
696
|
|
|
|
697
|
|
|
/** |
|
|
|
|
698
|
|
|
* @param string $error |
|
|
|
|
699
|
|
|
* @param bool $soft |
|
|
|
|
700
|
|
|
* |
701
|
|
|
* @throws NotFoundHttpException |
702
|
|
|
*/ |
|
|
|
|
703
|
|
|
protected static function reportError(string $error, $soft = false): void |
704
|
|
|
{ |
705
|
|
|
$devMode = Craft::$app->getConfig()->getGeneral()->devMode; |
706
|
|
|
if ($devMode && !$soft) { |
707
|
|
|
throw new NotFoundHttpException($error); |
708
|
|
|
} |
709
|
|
|
if (self::$isHot) { |
710
|
|
|
Craft::warning($error, __METHOD__); |
711
|
|
|
} else { |
712
|
|
|
Craft::error($error, __METHOD__); |
713
|
|
|
} |
714
|
|
|
} |
715
|
|
|
|
716
|
|
|
// Private Static Methods |
717
|
|
|
// ========================================================================= |
718
|
|
|
|
719
|
|
|
/** |
|
|
|
|
720
|
|
|
* @param string $nonce |
|
|
|
|
721
|
|
|
* @param string $cspDirective |
|
|
|
|
722
|
|
|
*/ |
|
|
|
|
723
|
|
|
private static function includeNonce(string $nonce, string $cspDirective): void |
|
|
|
|
724
|
|
|
{ |
725
|
|
|
$cspNonceType = self::getCspNonceType(); |
726
|
|
|
if ($cspNonceType) { |
727
|
|
|
$cspValue = "{$cspDirective} 'nonce-$nonce'"; |
728
|
|
|
foreach (self::CSP_HEADERS as $cspHeader) { |
729
|
|
|
switch ($cspNonceType) { |
730
|
|
|
case 'tag': |
|
|
|
|
731
|
|
|
Craft::$app->getView()->registerMetaTag([ |
|
|
|
|
732
|
|
|
'httpEquiv' => $cspHeader, |
733
|
|
|
'value' => $cspValue, |
734
|
|
|
]); |
|
|
|
|
735
|
|
|
break; |
736
|
|
|
case 'header': |
|
|
|
|
737
|
|
|
Craft::$app->getResponse()->getHeaders()->add($cspHeader, $cspValue . ';'); |
738
|
|
|
break; |
739
|
|
|
default: |
|
|
|
|
740
|
|
|
break; |
741
|
|
|
} |
742
|
|
|
} |
743
|
|
|
} |
744
|
|
|
} |
745
|
|
|
|
746
|
|
|
/** |
|
|
|
|
747
|
|
|
* @return string|null |
748
|
|
|
*/ |
749
|
|
|
private static function getCspNonceType(): ?string |
|
|
|
|
750
|
|
|
{ |
751
|
|
|
/** @var Settings $settings */ |
|
|
|
|
752
|
|
|
$settings = Twigpack::$plugin->getSettings(); |
753
|
|
|
$cspNonceType = !empty($settings->cspNonce) ? strtolower($settings->cspNonce) : null; |
754
|
|
|
|
755
|
|
|
return $cspNonceType; |
756
|
|
|
} |
757
|
|
|
|
758
|
|
|
/** |
|
|
|
|
759
|
|
|
* @return string|null |
760
|
|
|
*/ |
761
|
|
|
private static function getNonce(): ?string |
|
|
|
|
762
|
|
|
{ |
763
|
|
|
$result = null; |
764
|
|
|
if (self::getCspNonceType() !== null) { |
765
|
|
|
try { |
766
|
|
|
$result = bin2hex(random_bytes(22)); |
767
|
|
|
} catch (\Exception $e) { |
768
|
|
|
// That's okay |
769
|
|
|
} |
770
|
|
|
} |
771
|
|
|
|
772
|
|
|
return $result; |
773
|
|
|
} |
774
|
|
|
|
775
|
|
|
/** |
|
|
|
|
776
|
|
|
* @param $string |
|
|
|
|
777
|
|
|
* |
778
|
|
|
* @return null|array |
779
|
|
|
*/ |
780
|
|
|
private static function jsonFileDecode($string): ?array |
|
|
|
|
781
|
|
|
{ |
782
|
|
|
$json = JsonHelper::decodeIfJson($string); |
783
|
|
|
if (is_string($json)) { |
784
|
|
|
Craft::error('Error decoding JSON file: ' . $json, __METHOD__); |
785
|
|
|
$json = null; |
786
|
|
|
} |
787
|
|
|
|
788
|
|
|
return $json; |
789
|
|
|
} |
790
|
|
|
} |
791
|
|
|
|