From 84c23fe92b0c0d52e1e3dc9078009932a003545a Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 10 Nov 2020 15:11:46 +0100 Subject: [PATCH] Library: Add accessors for meta data --- .../Icinga/Application/Libraries/Library.php | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/library/Icinga/Application/Libraries/Library.php b/library/Icinga/Application/Libraries/Library.php index 9dde7f438..48cf14cb3 100644 --- a/library/Icinga/Application/Libraries/Library.php +++ b/library/Icinga/Application/Libraries/Library.php @@ -3,10 +3,20 @@ namespace Icinga\Application\Libraries; +use Icinga\Exception\ConfigurationError; +use Icinga\Exception\Json\JsonDecodeException; +use Icinga\Util\Json; + class Library { protected $path; + /** @var string */ + protected $version; + + /** @var array */ + protected $metaData; + /** * Create a new Library * @@ -17,6 +27,39 @@ class Library $this->path = $path; } + /** + * Get this library's name + * + * @return string + */ + public function getName() + { + return $this->metaData()['name']; + } + + /** + * Get this library's version + * + * @return string + */ + public function getVersion() + { + if ($this->version === null) { + if (isset($this->metaData()['version'])) { + $this->version = trim(ltrim($this->metaData()['version'], 'v')); + } else { + $versionFile = $this->path . DIRECTORY_SEPARATOR . 'VERSION'; + if (file_exists($versionFile)) { + $this->version = trim(ltrim(file_get_contents($versionFile), 'v')); + } else { + $this->version = ''; + } + } + } + + return $this->version; + } + /** * Register this library's autoloader * @@ -29,4 +72,26 @@ class Library require_once $autoloaderPath; } } + + /** + * Parse and return this library's metadata + * + * @return array + * + * @throws ConfigurationError + * @throws JsonDecodeException + */ + protected function metaData() + { + if ($this->metaData === null) { + $metaData = file_get_contents($this->path . DIRECTORY_SEPARATOR . 'composer.json'); + if ($metaData === false) { + throw new ConfigurationError('Library at "%s" is not a composerized project', $this->path); + } + + $this->metaData = Json::decode($metaData, true); + } + + return $this->metaData; + } }