diff options
author | Sam Light <sam@lightscale.co.uk> | 2025-03-30 22:22:27 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-03-30 22:22:27 +0100 |
commit | 41eda0c73d0a1f5273ccacac57176f450c294e04 (patch) | |
tree | cf2caf6cfc247784823906da2d8b4115886d9171 /src/Manifest.php | |
parent | 5ed1fd22ac92e78c3feae6b1c33df35f3d3cab60 (diff) |
Some basic structure
Diffstat (limited to 'src/Manifest.php')
-rw-r--r-- | src/Manifest.php | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/Manifest.php b/src/Manifest.php new file mode 100644 index 0000000..b7c5e96 --- /dev/null +++ b/src/Manifest.php @@ -0,0 +1,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}"; + } + +} |