Library: Add accessors for meta data

This commit is contained in:
Johannes Meyer 2020-11-10 15:11:46 +01:00
parent a60f511cfc
commit 84c23fe92b
1 changed files with 65 additions and 0 deletions

View File

@ -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;
}
}