mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-21 16:20:15 +01:00
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
import gzip
|
|
import os
|
|
import datetime
|
|
Import("env")
|
|
|
|
files = [
|
|
'data_embed/index.html',
|
|
'data_embed/script.js',
|
|
'data_embed/style.css',
|
|
'data_embed/bootstrap.js',
|
|
'data_embed/bootstrap.css',
|
|
'data_embed/favicon.png',
|
|
]
|
|
|
|
string_to_find_str = "String"
|
|
string_to_find_ver = "versionDate"
|
|
|
|
with open('src/LoRa_APRS_iGate.cpp', encoding='utf-8') as cpp_file:
|
|
for line in cpp_file:
|
|
if string_to_find_str in line and string_to_find_ver in line:
|
|
start = line.find('"') + 1
|
|
end = line.find('"', start)
|
|
if start > 0 and end > start:
|
|
versionDate = line[start:end]
|
|
break
|
|
|
|
for src in files:
|
|
out = src + ".gz"
|
|
|
|
|
|
with open(src, 'rb') as f:
|
|
content = f.read()
|
|
|
|
if src == 'data_embed/index.html':
|
|
env_vars = env["BOARD"] + "<br>" + ','.join(env["BUILD_FLAGS"]).replace('-Werror -Wall,', '').replace(',-DELEGANTOTA_USE_ASYNC_WEBSERVER=1', '') + "<br>" + "Version date: " + versionDate
|
|
current_date = datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S') + " UTC"
|
|
build_info = f'{env_vars}<br>Build date: {current_date}'.encode()
|
|
|
|
content = content.replace(b'%BUILD_INFO%', build_info)
|
|
|
|
with open(out, 'wb') as f:
|
|
f.write(gzip.compress(content, compresslevel=9)) |