Skip to content

Commit 97e3d7a

Browse files
authored
Display full commit in the version displayed in the UI #88 (#91)
Signed-off-by: tdruez <[email protected]>
1 parent d0e2b38 commit 97e3d7a

10 files changed

+67
-3
lines changed

.VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
$Format:%(describe:tags)$

CHANGELOG.rst

+3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ Release notes
5454
- Fix the logout link of the admin app.
5555
https://github.com/nexB/dejacode/issues/89
5656

57+
- Display full commit in the version displayed in the UI
58+
https://github.com/nexB/dejacode/issues/88
59+
5760
### Version 5.0.1
5861

5962
- Improve the stability of the "Check for new Package versions" feature.

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ RUN apt-get update \
3131
libldap2-dev \
3232
libsasl2-dev \
3333
libpq5 \
34+
git \
3435
wait-for-it \
3536
&& apt-get clean \
3637
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

dejacode/__init__.py

+56-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,64 @@
99
import os
1010
import sys
1111
import warnings
12+
from contextlib import suppress
13+
from pathlib import Path
14+
15+
import git
1216

1317
VERSION = "5.1.0-dev"
14-
__version__ = VERSION
18+
19+
PROJECT_DIR = Path(__file__).resolve().parent
20+
ROOT_DIR = PROJECT_DIR.parent
21+
22+
23+
def get_version(version):
24+
"""Return the version including the git describe tag when available."""
25+
# The codebase is a git clone
26+
if git_describe := get_git_describe_from_local_checkout():
27+
return git_describe
28+
29+
# The codebase is an extracted git archive
30+
if git_describe := get_git_describe_from_version_file():
31+
return git_describe
32+
33+
return version
34+
35+
36+
def get_git_describe_from_local_checkout():
37+
"""
38+
Return the git describe tag from the local checkout.
39+
This will only provide a result when the codebase is a git clone.
40+
"""
41+
with suppress(git.GitError):
42+
return git.Repo(".").git.describe(tags=True, always=True)
43+
44+
45+
def get_git_describe_from_version_file(version_file_location=ROOT_DIR / ".VERSION"):
46+
"""
47+
Return the git describe tag from the ".VERSION" file.
48+
This will only provide a result when the codebase is an extracted git archive
49+
"""
50+
try:
51+
version = version_file_location.read_text().strip()
52+
except (FileNotFoundError, UnicodeDecodeError):
53+
return
54+
55+
if version and version.startswith("v"):
56+
return version
57+
58+
59+
def extract_short_commit(git_describe):
60+
"""
61+
Extract the short commit hash from a Git describe string while removing
62+
any leading "g" character if present.
63+
"""
64+
short_commit = git_describe.split("-")[-1]
65+
return short_commit.lstrip("g")
66+
67+
68+
__version__ = get_version(VERSION)
69+
1570

1671
# Turn off the warnings for the following modules.
1772
warnings.filterwarnings("ignore", module="cyclonedx")

dje/templates/includes/header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<a class="dropdown-item" href="https://github.com/nexB/dejacode/releases" target="_blank" rel="noreferrer">{% trans 'Releases' %}</a>
1818
<a class="dropdown-item" href="https://scancode-licensedb.aboutcode.org/agpl-3.0.html" target="_blank" rel="noreferrer">{% trans 'License' %}</a>
1919
<div class="dropdown-divider"></div>
20-
<h6 class="dropdown-header">DejaCode: v{{ DEJACODE_VERSION }}</h6>
20+
<h6 class="dropdown-header">{{ DEJACODE_VERSION }}</h6>
2121
</div>
2222
</div>
2323
{% endblock %}

dje/templates/includes/navbar_header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
</a>
127127
{% endif %}
128128
<div class="dropdown-divider"></div>
129-
<div class="dropdown-header">DejaCode: v{{ DEJACODE_VERSION }}</div>
129+
<div class="dropdown-header">{{ DEJACODE_VERSION }}</div>
130130
<div class="dropdown-divider"></div>
131131
<form id="logout-form" method="post" action="{% url 'logout' %}">
132132
{% csrf_token %}

setup.cfg

+4
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,10 @@ install_requires =
164164
sortedcontainers==2.4.0
165165
toml==0.10.2
166166
py-serializable==1.0.3
167+
# Git
168+
gitpython==3.1.43
169+
gitdb==4.0.11
170+
smmap==5.0.1
167171

168172
[options.extras_require]
169173
dev =
Binary file not shown.
61.3 KB
Binary file not shown.
23.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)