blob: b7c5e967f86d6a29fc4d82a1034205c05d030159 (
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
|
<?php
namespace Lightscale\LaralightAssets;
class Manifest
{
private ?array $data;
public function __construct(
private string $path,
private string $baseUrl,
private string $parserClass = JsonManifestParser::class,
) {}
private function readFile(): string
{
return filegetcontents($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 getFile(string $file): ?string
{
return $this->getData()[$file] ?? null;
}
public function getUrl(string $file): ?string
{
$file = $this->getFile($file);
return $file === null ? null : "{$this->baseUrl}/{$file}";
}
public function getPath(string $file): ?string
{
$file = $this->getFile($file);
$dir = $this->getDir();
return $file === null ? null : "{$dir}/{$file}";
}
}
|