mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
59 lines
2.4 KiB
Python
59 lines
2.4 KiB
Python
import logging
|
|
import os
|
|
from pathlib import Path
|
|
|
|
from bauh import __app_name__, __version__
|
|
from bauh.api.http import HttpClient
|
|
from bauh.api.paths import CACHE_DIR
|
|
from bauh.commons.html import bold, link
|
|
from bauh.commons.version_util import normalize_version
|
|
from bauh.view.util.translation import I18n
|
|
|
|
|
|
def check_for_update(logger: logging.Logger, http_client: HttpClient, i18n: I18n, tray: bool = False) -> str:
|
|
"""
|
|
:param logger:
|
|
:param http_client:
|
|
:param i18n:
|
|
:param file_prefix: notification file prefix
|
|
:return: bauh update warning string or 'None' if no update is available
|
|
"""
|
|
logger.info("Checking for updates")
|
|
|
|
try:
|
|
releases = http_client.get_json('https://api.github.com/repos/spalencsar/bearhub/releases')
|
|
|
|
if releases:
|
|
latest = None
|
|
|
|
for r in releases:
|
|
if not r['draft']:
|
|
latest = r
|
|
break
|
|
|
|
if latest and latest.get('tag_name'):
|
|
notifications_dir = f'{CACHE_DIR}/updates'
|
|
release_file = '{}/{}{}'.format(notifications_dir, '' if not tray else 'tray_', latest['tag_name'])
|
|
if os.path.exists(release_file):
|
|
logger.info("Release {} already notified".format(latest['tag_name']))
|
|
elif normalize_version(latest['tag_name']) > normalize_version(__version__):
|
|
try:
|
|
Path(notifications_dir).mkdir(parents=True, exist_ok=True)
|
|
with open(release_file, 'w+') as f:
|
|
f.write('')
|
|
except Exception:
|
|
logger.error("An error occurred while trying to create the update notification file: {}".format(release_file))
|
|
|
|
if tray:
|
|
return i18n['tray.warning.update_available'].format(__app_name__, latest['tag_name'])
|
|
else:
|
|
return i18n['warning.update_available'].format(bold(__app_name__), bold(latest['tag_name']), link(latest.get('html_url', '?')))
|
|
else:
|
|
logger.info("No updates available")
|
|
else:
|
|
logger.warning("No official release found")
|
|
else:
|
|
logger.warning("No releases returned from the GitHub API")
|
|
except Exception:
|
|
logger.error("An error occurred while trying to retrieve the current releases")
|