blob: 655945b6fd1c8d448f3960f28e8db1df5fdbcb70 (
plain)
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
|
<?php
namespace Lightscale\LaralightAssets;
use Illuminate\Support\Str;
class Manifest
{
private ?array $data = null;
private string $basePath;
public function __construct(
private string $path,
private string $baseUrl,
?string $basePath = null,
private string $parserClass = JsonManifestParser::class,
) {
$fileName = Str::afterLast($path, '/');
$this->basePath = Str::replaceLast("/{$fileName}", '', $path);
}
private function readFile(): string
{
return file_get_contents($this->path);
}
private function loadData(): void
{
$data = $this->readFile();
$parser = new $this->parserClass;
$this->data = $parser->parse($data);
}
private function getData(): array
{
if ($this->data === null) $this->loadData();
return $this->data;
}
public function getDir(): string
{
return $this->basePath;
}
public function getFile(string $file): ?string
{
return $this->getData()[$file] ?? null;
}
public function getUrl(string $file): ?string
{
$file = $this->getFile($file);
return $file === null ? null : asset("{$this->baseUrl}/{$file}");
}
public function getPath(string $file): ?string
{
$file = $this->getFile($file);
$dir = $this->getDir();
return $file === null ? null : "{$dir}/{$file}";
}
}
|