1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:55:55 +00:00

versioning changes

- remove VERSION_STATIC - https://community.tt-rss.org/t/versioning-changes-for-trunk/2974
- report git commit/timestamp properly by invoking git instead of trying to parse .git/HEAD etc
- remove git-related global constants used when checking for updates
This commit is contained in:
Andrew Dolgov
2019-12-05 13:23:54 +03:00
parent 6913158b82
commit f30287be65
3 changed files with 22 additions and 31 deletions

View File

@@ -560,7 +560,6 @@
session_regenerate_id(true);
$_SESSION["uid"] = $user_id;
$_SESSION["version"] = VERSION_STATIC;
$_SESSION["auth_module"] = $auth_module;
$pdo = DB::pdo();

View File

@@ -1,43 +1,30 @@
<?php
define('VERSION_STATIC', '19.8');
function get_version() {
function get_version(&$git_commit = false, &$git_timestamp = false) {
$version = "UNKNOWN (Unsupported)";
date_default_timezone_set('UTC');
$root_dir = dirname(dirname(__FILE__));
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/HEAD")) {
$head = trim(file_get_contents("$root_dir/.git/HEAD"));
if (is_dir("$root_dir/.git")) {
$rc = 0;
$output = [];
if ($head) {
$matches = array();
exec("git log --pretty='%ct %h' -n1 HEAD " . escapeshellarg($root_dir), $output, $rc);
if (preg_match("/^ref: (.*)/", $head, $matches)) {
$ref = $matches[1];
if ($rc == 0) {
if (is_array($output) && count($output) > 0) {
list ($timestamp, $commit) = explode(" ", $output[0], 2);
if (!file_exists("$root_dir/.git/$ref"))
return VERSION_STATIC;
$suffix = substr(trim(file_get_contents("$root_dir/.git/$ref")), 0, 7);
$timestamp = filemtime("$root_dir/.git/$ref");
$git_commit = $commit;
$git_timestamp = $timestamp;
define("GIT_VERSION_HEAD", $suffix);
define("GIT_VERSION_TIMESTAMP", $timestamp);
return VERSION_STATIC . " ($suffix)";
} else {
$suffix = substr(trim($head), 0, 7);
$timestamp = filemtime("$root_dir/.git/HEAD");
define("GIT_VERSION_HEAD", $suffix);
define("GIT_VERSION_TIMESTAMP", $timestamp);
return VERSION_STATIC . " ($suffix)";
$version = strftime("%y.%m", $timestamp) . "-$commit";
}
}
}
return VERSION_STATIC;
return $version;
}
define('VERSION', get_version());