Own function for getting the current commit hash and datetime

pull/618/head
Virgil Grigoras 6 years ago
parent cb5adb3a31
commit f7872aded0

@ -547,6 +547,7 @@ def check_unrar(unrarLocation):
error=True
return (error, version)
def is_sha1(sha1):
if len(sha1) != 40:
return False
@ -555,3 +556,19 @@ def is_sha1(sha1):
except ValueError:
return False
return True
def get_current_version_info():
try:
with open('version', 'r') as f:
content = f.readlines()
content = [x.strip() for x in content]
if len(content) != 2:
return False
if is_sha1(content[0]) and len(content[1]) > 0:
return {'sha': content[0], 'datetime': content[1]}
except FileNotFoundError:
return False
return False

@ -1094,14 +1094,11 @@ def get_update_status():
tz = datetime.timedelta(seconds=time.timezone if (time.localtime().tm_isdst == 0) else time.altzone)
if request.method == "GET":
# get current commit hash from file
try:
with open('version', 'r') as f:
data = f.read().replace('\n', '')
if helper.is_sha1(data):
status['current_commit_hash'] = data
except FileNotFoundError:
pass
version = helper.get_current_version_info()
if version is False:
status['current_commit_hash'] = _(u'Unknown')
else:
status['current_commit_hash'] = version['sha']
try:
r = requests.get(repository_url + '/git/refs/heads/master')
@ -2749,10 +2746,12 @@ def profile():
@login_required
@admin_required
def admin():
commit = '$Format:%cI$'
if commit.startswith("$"):
version = helper.get_current_version_info()
if version is False:
commit = _(u'Unknown')
else:
commit = version['datetime']
tz = datetime.timedelta(seconds=time.timezone if (time.localtime().tm_isdst == 0) else time.altzone)
form_date = datetime.datetime.strptime(commit[:19], "%Y-%m-%dT%H:%M:%S")
if len(commit) > 19: # check if string has timezone

@ -1 +1,2 @@
$Format:%H$
$Format:%H$
$Format:%cI$
Loading…
Cancel
Save