forked from KolibriOS/kolibrios.org
90 lines
2.4 KiB
Python
90 lines
2.4 KiB
Python
import re
|
|
import threading
|
|
import time
|
|
|
|
|
|
STATUS_URL = "https://builds.kolibrios.org/status.html"
|
|
STATUS_SEC = 300 # refetch each 5 minutes
|
|
|
|
autobuild_date = "DD.MM.YYYY"
|
|
autobuild_vers = "0.0.0.0+0000-0000000"
|
|
|
|
_started = False
|
|
_updater_lock = threading.Lock()
|
|
|
|
|
|
def _refresh_build_date_once():
|
|
global autobuild_date, autobuild_vers
|
|
try:
|
|
from urllib.request import Request, urlopen
|
|
|
|
req = Request(
|
|
STATUS_URL,
|
|
headers={
|
|
"User-Agent": "Mozilla/5.0",
|
|
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
|
|
},
|
|
)
|
|
with urlopen(req, timeout=10) as r:
|
|
html = r.read().decode(
|
|
r.headers.get_content_charset() or "utf-8", "replace"
|
|
)
|
|
|
|
rows = re.findall(r"(<tr\b[^>]*>.*?</tr>)", html, flags=re.I | re.S)
|
|
if not rows:
|
|
return
|
|
|
|
last_commit_ver = None
|
|
|
|
for row in rows:
|
|
cls = re.search(r'class\s*=\s*"([^"]*)"', row, flags=re.I)
|
|
classes = cls.group(1).lower() if cls else ""
|
|
|
|
text = re.sub(r"<[^>]+>", " ", row)
|
|
|
|
if "commit" in classes:
|
|
mver = re.search(
|
|
r"\b(\d+\.\d+\.\d+\.\d+\+\d{3,8}-[0-9a-fA-F]{7,40})\b", row
|
|
)
|
|
if mver:
|
|
last_commit_ver = mver.group(1)
|
|
|
|
elif "success" in classes:
|
|
mts = re.search(
|
|
r"\b(\d{4})\.(\d{2})\.(\d{2})\s+\d{2}:\d{2}:\d{2}\b", text
|
|
)
|
|
if not mts:
|
|
mds = re.search(r"\b(\d{2})\.(\d{2})\.(\d{4})\b", text)
|
|
if mds:
|
|
autobuild_date = f"{mds.group(1)}.{mds.group(2)}.{mds.group(3)}"
|
|
else:
|
|
return
|
|
else:
|
|
y, mo, d = mts.groups()
|
|
autobuild_date = f"{d}.{mo}.{y}"
|
|
|
|
if last_commit_ver:
|
|
autobuild_vers = last_commit_ver
|
|
return
|
|
|
|
except Exception:
|
|
pass
|
|
|
|
|
|
def _updater_loop():
|
|
while True:
|
|
_refresh_build_date_once()
|
|
time.sleep(STATUS_SEC)
|
|
|
|
|
|
def ensure_started():
|
|
global _started
|
|
with _updater_lock:
|
|
if _started:
|
|
return
|
|
threading.Thread(target=_updater_loop, daemon=True).start()
|
|
_started = True
|
|
|
|
|
|
_refresh_build_date_once()
|