-
Notifications
You must be signed in to change notification settings - Fork 0
/
AssetContainer.php
642 lines (553 loc) · 16.2 KB
/
AssetContainer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
<?php
namespace Litepie\Theme;
use Illuminate\Support\Facades\HTML;
use Illuminate\Support\Facades\Request;
use Illuminate\Support\Facades\URL;
use Illuminate\Support\Str;
class AssetContainer
{
/**
* Use a theme path.
*
* @var bool
*/
public $usePath = false;
/**
* Path to theme.
*
* @var string
*/
public $path;
/**
* The asset container name.
*
* @var string
*/
public $name;
/**
* Create a new asset container instance.
*
* @param string $name
*/
public function __construct($name)
{
$this->name = $name;
}
/**
* Get path from asset.
*
* @return string
*/
public function getCurrentPath()
{
return Asset::$path;
}
/**
* Generate a URL to an application asset.
*
* @param string $path
* @param bool $secure
*
* @return string
*/
protected function configAssetUrl($path, $secure = null)
{
static $assetUrl;
// Remove this.
$i = 'index.php';
if (URL::isValidUrl($path)) {
return $path;
}
// Finding asset url config.
if (is_null($assetUrl)) {
$assetUrl = config('theme.assetUrl', '');
}
// Using asset url, if available.
if ($assetUrl) {
$base = rtrim($assetUrl, '/');
// Asset URL without index.
$basePath = Str::contains($base, $i) ? str_replace('/'.$i, '', $base) : $base;
} else {
if (is_null($secure)) {
$scheme = Request::getScheme().'://';
} else {
$scheme = $secure ? 'https://' : 'http://';
}
// Get root URL.
$root = Request::root();
$start = Str::startsWith($root, 'http://') ? 'http://' : 'https://';
$root = preg_replace('~'.$start.'~', $scheme, $root, 1);
// Asset URL without index.
$basePath = Str::contains($root, $i) ? str_replace('/'.$i, '', $root) : $root;
}
return $basePath.'/'.$path;
}
/**
* Root asset path.
*
* @param string $uri
* @param bool $secure
*
* @return string
*/
public function originUrl($uri, $secure = null)
{
return $this->configAssetUrl($uri, $secure);
}
/**
* Return asset path with current theme path.
*
* @param string $uri
* @param bool $secure
*
* @return string
*/
public function url($uri, $secure = null)
{
// If path is full, so we just return.
if (str_starts_with($uri, 'http')) {
return $uri;
}
$path = $this->getCurrentPath().$uri;
return $this->configAssetUrl($path, $secure);
}
/**
* Add an asset to the container.
*
* The extension of the asset source will be used to determine the type of
* asset being registered (CSS or JavaScript). When using a non-standard
* extension, the style/script methods may be used to register assets.
*
* <code>
* // Add an asset to the container
* Asset::container()->add('jquery', 'js/jquery.js');
*
* // Add an asset that has dependencies on other assets
* Asset::add('jquery', 'js/jquery.js', 'jquery-ui');
*
* // Add an asset that should have attributes applied to its tags
* Asset::add('jquery', 'js/jquery.js', null, array('defer'));
* </code>
*
* @param string $name
* @param string $source
* @param array $dependencies
* @param array $attributes
*
* @return AssetContainer
*/
protected function added($name, $source, $dependencies = [], $attributes = [])
{
if (is_array($source)) {
foreach ($source as $path) {
$name = $name.'-'.md5($path);
$this->added($name, $path, $dependencies, $attributes);
}
} else {
$type = (pathinfo($source, PATHINFO_EXTENSION) == 'css') ? 'style' : 'script';
// Remove unnecessary slashes from internal path.
if (!preg_match('|^//|', $source)) {
$source = ltrim($source, '/');
}
return $this->$type($name, $source, $dependencies, $attributes);
}
}
/**
* Alias add an asset to container.
*
* @param string $name
* @param string $source
* @param array $dependencies
* @param array $attributes
*/
public function add($name, $source, $dependencies = [], $attributes = [])
{
$this->added($name, $source, $dependencies, $attributes);
}
/**
* Write a content to the container.
*
* @param string $name
* @param string string
* @param string $source
* @param array $dependencies
*
* @return AssetContainer
*/
protected function write($name, $type, $source, $dependencies = [])
{
$types = [
'script' => 'script',
'style' => 'style',
'js' => 'script',
'css' => 'style',
];
if (array_key_exists($type, $types)) {
$type = $types[$type];
$this->register($type, $name, $source, $dependencies, []);
}
return $this;
}
/**
* Write a script to the container.
*
* @param string $name
* @param string string
* @param string $source
* @param array $dependencies
*
* @return AssetContainer
*/
public function writeScript($name, $source, $dependencies = [])
{
$source = '<script>'.$source.'</script>';
return $this->write($name, 'script', $source, $dependencies);
}
/**
* Write a style to the container.
*
* @param string $name
* @param string string
* @param string $source
* @param array $dependencies
*
* @return AssetContainer
*/
public function writeStyle($name, $source, $dependencies = [])
{
$source = '<style>'.$source.'</style>';
return $this->write($name, 'style', $source, $dependencies);
}
/**
* Write a content without tag wrapper.
*
* @param string $name
* @param string string
* @param string $source
* @param array $dependencies
*
* @return AssetContainer
*/
public function writeContent($name, $source, $dependencies = [])
{
return $this->write($name, 'script', $source, $dependencies);
}
/**
* Add a CSS file to the registered assets.
*
* @param string $name
* @param string $source
* @param array $dependencies
* @param array $attributes
*
* @return AssetContainer
*/
public function style($name, $source, $dependencies = [], $attributes = [])
{
if (!array_key_exists('media', $attributes)) {
$attributes['media'] = 'all';
}
// Prepend path to theme.
if ($this->isUsePath()) {
$source = $this->evaluatePath($this->getCurrentPath().$source);
// Reset using path.
$this->usePath(false);
}
$this->register('style', $name, $source, $dependencies, $attributes);
return $this;
}
/**
* Add a JavaScript file to the registered assets.
*
* @param string $name
* @param string $source
* @param array $dependencies
* @param array $attributes
*
* @return AssetContainer
*/
public function script($name, $source, $dependencies = [], $attributes = [])
{
// Prepaend path to theme.
if ($this->isUsePath()) {
$source = $this->evaluatePath($this->getCurrentPath().$source);
// Reset using path.
$this->usePath(false);
}
$this->register('script', $name, $source, $dependencies, $attributes);
return $this;
}
/**
* Evaluate path to current theme or force use theme.
*
* @param string $source
*
* @return string
*/
protected function evaluatePath($source)
{
static $theme;
// Make theme to use few features.
if (!$theme) {
$theme = \App::make('theme');
}
// Switch path to another theme.
if (!is_bool($this->usePath) and $theme->exists($this->usePath)) {
$currentTheme = $theme->getThemeName();
$source = str_replace($currentTheme, $this->usePath, $source);
}
return $source;
}
/**
* Force use a theme path.
*
* @param bool $use
*
* @return AssetContainer
*/
public function usePath($use = true)
{
$this->usePath = $use;
return $this;
}
/**
* Check using theme path.
*
* @return bool
*/
public function isUsePath()
{
return (bool) $this->usePath;
}
/**
* Returns the full-path for an asset.
*
* @param string $source
*
* @return string
*/
public function path($source)
{
return $source;
}
/**
* Add an asset to the array of registered assets.
*
* @param string $type
* @param string $name
* @param string $source
* @param array $dependencies
* @param array $attributes
*
* @return void
*/
protected function register($type, $name, $source, $dependencies, $attributes)
{
$dependencies = (array) $dependencies;
$attributes = (array) $attributes;
$this->assets[$type][$name] = compact('source', 'dependencies', 'attributes');
}
/**
* Get the links to all of the registered CSS assets.
*
* @return string
*/
public function styles()
{
return $this->group('style');
}
/**
* Get the links to all of the registered JavaScript assets.
*
* @return string
*/
public function scripts()
{
return $this->group('script');
}
/**
* Get all of the registered assets for a given type / group.
*
* @param string $group
*
* @return string
*/
protected function group($group)
{
if (!isset($this->assets[$group]) or count($this->assets[$group]) == 0) {
return '';
}
$assets = '';
foreach ($this->arrange($this->assets[$group]) as $name => $data) {
$assets .= $this->asset($group, $name);
}
return $assets;
}
/**
* Get the HTML link to a registered asset.
*
* @param string $group
* @param string $name
*
* @return string
*/
protected function asset($group, $name)
{
if (!isset($this->assets[$group][$name])) {
return '';
}
$asset = $this->assets[$group][$name];
// If the bundle source is not a complete URL, we will go ahead and prepend
// the bundle's asset path to the source provided with the asset. This will
// ensure that we attach the correct path to the asset.
if (filter_var($asset['source'], FILTER_VALIDATE_URL) === false) {
$asset['source'] = $this->path($asset['source']);
}
// If source is not a path to asset, render without wrap a HTML.
if (strpos($asset['source'], '<') !== false) {
return $asset['source'];
}
// This line fixing config path.
$asset['source'] = $this->configAssetUrl($asset['source']);
//return HTML::$group($asset['source'], $asset['attributes']);
return $this->html($group, $asset['source'], $asset['attributes']);
}
/**
* Render asset as HTML.
*
* @param string $group
* @param mixed $source
* @param array $attributes
*
* @return string
*/
public function html($group, $source, $attributes)
{
switch ($group) {
case 'script':
$attributes['src'] = $source;
return '<script'.$this->attributes($attributes).'></script>'.PHP_EOL;
case 'style':
$defaults = ['media' => 'all', 'type' => 'text/css', 'rel' => 'stylesheet'];
$attributes = $attributes + $defaults;
$attributes['href'] = $source;
return '<link'.$this->attributes($attributes).'>'.PHP_EOL;
}
}
/**
* Build an HTML attribute string from an array.
*
* @param array $attributes
*
* @return string
*/
public function attributes($attributes)
{
$html = [];
// For numeric keys we will assume that the key and the value are the same
// as this will convert HTML attributes such as "required" to a correct
// form like required="required" instead of using incorrect numerics.
foreach ((array) $attributes as $key => $value) {
$element = $this->attributeElement($key, $value);
if (!is_null($element)) {
$html[] = $element;
}
}
return count($html) > 0 ? ' '.implode(' ', $html) : '';
}
/**
* Build a single attribute element.
*
* @param string $key
* @param string $value
*
* @return string
*/
protected function attributeElement($key, $value)
{
if (is_numeric($key)) {
$key = $value;
}
if (!is_null($value)) {
return $key.'="'.e($value).'"';
}
}
/**
* Sort and retrieve assets based on their dependencies.
*
* @param array $assets
*
* @return array
*/
protected function arrange($assets)
{
list($original, $sorted) = [$assets, []];
while (count($assets) > 0) {
foreach ($assets as $asset => $value) {
$this->evaluateAsset($asset, $value, $original, $sorted, $assets);
}
}
return $sorted;
}
/**
* Evaluate an asset and its dependencies.
*
* @param string $asset
* @param string $value
* @param array $original
* @param array $sorted
* @param array $assets
*
* @return void
*/
protected function evaluateAsset($asset, $value, $original, &$sorted, &$assets)
{
// If the asset has no more dependencies, we can add it to the sorted list
// and remove it from the array of assets. Otherwise, we will not verify
// the asset's dependencies and determine if they've been sorted.
if (count($assets[$asset]['dependencies']) == 0) {
$sorted[$asset] = $value;
unset($assets[$asset]);
} else {
foreach ($assets[$asset]['dependencies'] as $key => $dependency) {
if (!$this->dependecyIsValid($asset, $dependency, $original, $assets)) {
unset($assets[$asset]['dependencies'][$key]);
continue;
}
// If the dependency has not yet been added to the sorted list, we can not
// remove it from this asset's array of dependencies. We'll try again on
// the next trip through the loop.
if (!isset($sorted[$dependency])) {
continue;
}
unset($assets[$asset]['dependencies'][$key]);
}
}
}
/**
* Verify that an asset's dependency is valid.
* A dependency is considered valid if it exists, is not a circular reference, and is
* not a reference to the owning asset itself. If the dependency doesn't exist, no
* error or warning will be given. For the other cases, an exception is thrown.
*
* @param string $asset
* @param string $dependency
* @param array $original
* @param array $assets
*
* @throws \Exception
*
* @return bool
*/
protected function dependecyIsValid($asset, $dependency, $original, $assets)
{
if (!isset($original[$dependency])) {
return false;
} elseif ($dependency === $asset) {
throw new \Exception("Asset [$asset] is dependent on itself.");
} elseif (isset($assets[$dependency]) and in_array($asset, $assets[$dependency]['dependencies'])) {
throw new \Exception("Assets [$asset] and [$dependency] have a circular dependency.");
}
return true;
}
}