From 41eda0c73d0a1f5273ccacac57176f450c294e04 Mon Sep 17 00:00:00 2001 From: Sam Light Date: Sun, 30 Mar 2025 22:22:27 +0100 Subject: Some basic structure --- src/Manifest.php | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/Manifest.php (limited to 'src/Manifest.php') 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 @@ +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}"; + } + +} -- cgit v1.2.3