icingaweb2/library/Icinga/Application/Version.php

68 lines
1.8 KiB
PHP
Raw Permalink Normal View History

<?php
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Application;
2015-08-27 07:06:31 -04:00
/**
* Retrieve the version of Icinga Web 2
*/
class Version
{
2026-03-26 05:06:24 -04:00
const VERSION = '2.13.0';
2015-06-05 06:38:55 -04:00
/**
* Get the version of this instance of Icinga Web 2
*
* @return array
*/
public static function get()
{
$version = array('appVersion' => self::VERSION);
preg_match('/2.(\d+)\./', self::VERSION, $matches);
$version['docVersion'] = isset($matches[1]) ? '2.' . $matches[1] : null;
if (false !== ($appVersion = @file_get_contents(Icinga::app()->getApplicationDir('VERSION')))) {
$matches = array();
if (@preg_match('/^(?P<gitCommitID>\w+) (?P<gitCommitDate>\S+)/', $appVersion, $matches)) {
return array_merge($version, $matches);
}
}
$gitCommitId = static::getGitHead(Icinga::app()->getBaseDir());
if ($gitCommitId !== false) {
$version['gitCommitID'] = $gitCommitId;
}
return $version;
}
/**
* Get the current commit of the Git repository in the given path
*
* @param string $repo Path to the Git repository
* @param bool $bare Whether the Git repository is bare
*
* @return string|bool False if not available
*/
public static function getGitHead($repo, $bare = false)
{
if (! $bare) {
$repo .= '/.git';
}
$head = @file_get_contents($repo . '/HEAD');
2015-09-23 09:53:10 -04:00
if ($head !== false) {
if (preg_match('/^ref: (.+)/', $head, $matches)) {
return @file_get_contents($repo . '/' . $matches[1]);
}
return $head;
}
return false;
}
}