-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathAsset.php
418 lines (360 loc) · 8.95 KB
/
Asset.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
<?php namespace Basset;
use Basset\Filter\Filterable;
use InvalidArgumentException;
use Assetic\Asset\StringAsset;
use Basset\Factory\FactoryManager;
use Assetic\Filter\FilterInterface;
use Illuminate\Filesystem\Filesystem;
class Asset extends Filterable {
/**
* Illuminate filesystem instance.
*
* @var \Illuminate\Filesystem\Filesystem
*/
protected $files;
/**
* Basset factory manager instance.
*
* @var Basset\Factory\FactoryManager
*/
protected $factory;
/**
* Application environment.
*
* @var string
*/
protected $appEnvironment;
/**
* Absolute path to the asset.
*
* @var string
*/
protected $absolutePath;
/**
* Relative path to the asset.
*
* @var string
*/
protected $relativePath;
/**
* Indicates if the asset is to be served raw.
*
* @var bool
*/
protected $raw = false;
/**
* Order of the asset.
*
* @var int
*/
protected $order;
/**
* Assets cached last modified time.
*
* @var int
*/
protected $lastModified;
/**
* Group the asset belongs to, either stylesheets or javascripts.
*
* @var string
*/
protected $group;
/**
* Array of allowed asset extensions.
*
* @var array
*/
protected $allowedExtensions = array(
'stylesheets' => array('css', 'sass', 'scss', 'less', 'styl', 'roo', 'gss'),
'javascripts' => array('js', 'coffee', 'dart', 'ts', 'hbs')
);
/**
* Create a new asset instance.
*
* @param \Illuminate\Filesystem\Filesystem $files
* @param \Basset\Factory\FactoryManager $factory
* @param string $appEnvironment
* @param string $absolutePath
* @param string $relativePath
* @return void
*/
public function __construct(Filesystem $files, FactoryManager $factory, $appEnvironment, $absolutePath, $relativePath)
{
parent::__construct();
$this->files = $files;
$this->factory = $factory;
$this->appEnvironment = $appEnvironment;
$this->absolutePath = $absolutePath;
$this->relativePath = $relativePath;
}
/**
* Get the absolute path to the asset.
*
* @return string
*/
public function getAbsolutePath()
{
return $this->absolutePath;
}
/**
* Get the relative path to the asset.
*
* @return string
*/
public function getRelativePath()
{
return $this->relativePath;
}
/**
* Get the build path to the asset.
*
* @return string
*/
public function getBuildPath()
{
$path = pathinfo($this->relativePath);
$fingerprint = md5($this->filters->map(function($f) { return $f->getFilter(); })->toJson().$this->getLastModified());
return "{$path['dirname']}/{$path['filename']}-{$fingerprint}.{$this->getBuildExtension()}";
}
/**
* Get the build extension of the asset.
*
* @return string
*/
public function getBuildExtension()
{
return $this->isJavascript() ? 'js' : 'css';
}
/**
* Get the last modified time of the asset.
*
* @return int
*/
public function getLastModified()
{
if ($this->lastModified)
{
return $this->lastModified;
}
return $this->lastModified = $this->isRemote() ? null : $this->files->lastModified($this->absolutePath);
}
/**
* Determine if asset is a javascript.
*
* @return bool
*/
public function isJavascript()
{
return $this->getGroup() == 'javascripts';
}
/**
* Determine if asset is a stylesheet.
*
* @return bool
*/
public function isStylesheet()
{
return $this->getGroup() == 'stylesheets';
}
/**
* Determine if asset is remotely hosted.
*
* @return bool
*/
public function isRemote()
{
return starts_with($this->absolutePath, '//') or (bool) filter_var($this->absolutePath, FILTER_VALIDATE_URL);
}
/**
* Alias for \Basset\Asset::setOrder(1)
*
* @return Basset\Asset
*/
public function first()
{
return $this->setOrder(1);
}
/**
* Alias for \Basset\Asset::setOrder(2)
*
* @return \Basset\Asset
*/
public function second()
{
return $this->setOrder(2);
}
/**
* Alias for \Basset\Asset::setOrder(3)
*
* @return \Basset\Asset
*/
public function third()
{
return $this->setOrder(3);
}
/**
* Alias for \Basset\Asset::setOrder()
*
* @param int $order
* @return \Basset\Asset
*/
public function order($order)
{
return $this->setOrder($order);
}
/**
* Set the order of the outputted asset.
*
* @param int $order
* @return \Basset\Asset
*/
public function setOrder($order)
{
$this->order = $order;
return $this;
}
/**
* Get the assets order.
*
* @return int|null
*/
public function getOrder()
{
return $this->order;
}
/**
* Set the assets group.
*
* @param string $group
* @return \Basset\Asset
*/
public function setGroup($group)
{
$this->group = $group;
return $this;
}
/**
* Get the assets group.
*
* @return string
*/
public function getGroup()
{
if ($this->group)
{
return $this->group;
}
return $this->group = $this->detectGroupFromExtension() ?: $this->detectGroupFromContentType();
}
/**
* Detect the group from the content type using cURL.
*
* @return null|string
*/
protected function detectGroupFromContentType()
{
if (extension_loaded('curl'))
{
$this->getLogger()->warning('Attempting to determine asset group using cURL. This may have a considerable effect on application speed.');
$handler = curl_init($this->absolutePath);
curl_setopt($handler, CURLOPT_RETURNTRANSFER, true);
curl_setopt($handler, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($handler, CURLOPT_HEADER, true);
curl_setopt($handler, CURLOPT_NOBODY, true);
curl_setopt($handler, CURLOPT_SSL_VERIFYPEER, false);
curl_exec($handler);
if ( ! curl_errno($handler))
{
$contentType = curl_getinfo($handler, CURLINFO_CONTENT_TYPE);
return starts_with($contentType, 'text/css') ? 'stylesheets' : 'javascripts';
}
}
}
/**
* Detect group from the assets extension.
*
* @return string
*/
protected function detectGroupFromExtension()
{
$extension = pathinfo($this->absolutePath, PATHINFO_EXTENSION);
foreach (array('stylesheets', 'javascripts') as $group)
{
if (in_array($extension, $this->allowedExtensions[$group]))
{
return $group;
}
}
}
/**
* A raw asset is just excluded from the build process.
*
* @return \Basset\Asset
*/
public function raw()
{
$this->raw = true;
return $this;
}
/**
* Sets the asset to be served raw when the application is running in a given environment.
*
* @param string|array $environment
* @return \Basset\Asset
*/
public function rawOnEnvironment()
{
$environments = array_flatten(func_get_args());
if (in_array($this->appEnvironment, $environments))
{
return $this->raw();
}
return $this;
}
/**
* Determines if the asset is to be served raw.
*
* @return bool
*/
public function isRaw()
{
return $this->raw;
}
/**
* Get the asset contents.
*
* @return string
*/
public function getContent()
{
return $this->files->get($this->absolutePath);
}
/**
* Build the asset.
*
* @param bool $production
* @return string
*/
public function build($production = false)
{
$filters = $this->prepareFilters($production);
$asset = new StringAsset($this->getContent(), $filters->all(), dirname($this->absolutePath), basename($this->absolutePath));
return $asset->dump();
}
/**
* Prepare the filters applied to the asset.
*
* @param bool $production
* @return \Illuminate\Support\Collection
*/
public function prepareFilters($production = false)
{
$filters = $this->filters->map(function($filter) use ($production)
{
$filter->setProduction($production);
return $filter->getInstance();
});
return $filters->filter(function($filter) { return $filter instanceof FilterInterface; });
}
}