mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
312 lines
12 KiB
Python
312 lines
12 KiB
Python
import json
|
|
import traceback
|
|
from datetime import datetime
|
|
from threading import Thread
|
|
from typing import List, Set, Type
|
|
|
|
from bauh.api.abstract.controller import SearchResult, SoftwareManager, ApplicationContext
|
|
from bauh.api.abstract.disk import DiskCacheLoader
|
|
from bauh.api.abstract.handler import ProcessWatcher
|
|
from bauh.api.abstract.model import PackageHistory, PackageUpdate, SoftwarePackage, PackageSuggestion
|
|
from bauh.api.abstract.view import MessageType
|
|
from bauh.commons.html import strip_html, bold
|
|
from bauh.commons.system import SystemProcess, ProcessHandler
|
|
from bauh.gems.flatpak import flatpak, suggestions
|
|
from bauh.gems.flatpak.constants import FLATHUB_API_URL
|
|
from bauh.gems.flatpak.model import FlatpakApplication
|
|
from bauh.gems.flatpak.worker import FlatpakAsyncDataLoader, FlatpakUpdateLoader
|
|
|
|
DATE_FORMAT = '%Y-%m-%dT%H:%M:%S.000Z'
|
|
|
|
|
|
class FlatpakManager(SoftwareManager):
|
|
|
|
def __init__(self, context: ApplicationContext):
|
|
super(FlatpakManager, self).__init__(context=context)
|
|
self.i18n = context.i18n
|
|
self.api_cache = context.cache_factory.new()
|
|
self.category_cache = context.cache_factory.new()
|
|
context.disk_loader_factory.map(FlatpakApplication, self.api_cache)
|
|
self.enabled = True
|
|
self.http_client = context.http_client
|
|
self.suggestions_cache = context.cache_factory.new()
|
|
|
|
def get_managed_types(self) -> Set["type"]:
|
|
return {FlatpakApplication}
|
|
|
|
def _map_to_model(self, app_json: dict, installed: bool, disk_loader: DiskCacheLoader, internet: bool = True) -> FlatpakApplication:
|
|
|
|
app = FlatpakApplication(**app_json)
|
|
app.installed = installed
|
|
api_data = self.api_cache.get(app_json['id'])
|
|
|
|
expired_data = api_data and api_data.get('expires_at') and api_data['expires_at'] <= datetime.utcnow()
|
|
|
|
if not api_data or expired_data:
|
|
if not app.runtime:
|
|
if disk_loader:
|
|
disk_loader.fill(app) # preloading cached disk data
|
|
|
|
if internet:
|
|
FlatpakAsyncDataLoader(app=app, api_cache=self.api_cache, manager=self,
|
|
context=self.context, category_cache=self.category_cache).start()
|
|
|
|
else:
|
|
app.fill_cached_data(api_data)
|
|
|
|
return app
|
|
|
|
def search(self, words: str, disk_loader: DiskCacheLoader, limit: int = -1, is_url: bool = False) -> SearchResult:
|
|
if is_url:
|
|
return SearchResult([], [], 0)
|
|
|
|
res = SearchResult([], [], 0)
|
|
apps_found = flatpak.search(flatpak.get_version(), words)
|
|
|
|
if apps_found:
|
|
already_read = set()
|
|
installed_apps = self.read_installed(disk_loader=disk_loader).installed
|
|
|
|
if installed_apps:
|
|
for app_found in apps_found:
|
|
for installed_app in installed_apps:
|
|
if app_found['id'] == installed_app.id:
|
|
res.installed.append(installed_app)
|
|
already_read.add(app_found['id'])
|
|
|
|
if len(apps_found) > len(already_read):
|
|
for app_found in apps_found:
|
|
if app_found['id'] not in already_read:
|
|
res.new.append(self._map_to_model(app_found, False, disk_loader))
|
|
|
|
res.total = len(res.installed) + len(res.new)
|
|
return res
|
|
|
|
def _add_updates(self, version: str, output: list):
|
|
output.append(flatpak.list_updates_as_str(version))
|
|
|
|
def read_installed(self, disk_loader: DiskCacheLoader, limit: int = -1, only_apps: bool = False, pkg_types: Set[Type[SoftwarePackage]] = None, internet_available: bool = None) -> SearchResult:
|
|
version = flatpak.get_version()
|
|
|
|
updates = []
|
|
|
|
if internet_available:
|
|
thread_updates = Thread(target=self._add_updates, args=(version, updates))
|
|
thread_updates.start()
|
|
else:
|
|
thread_updates = None
|
|
|
|
installed = flatpak.list_installed(version)
|
|
models = []
|
|
|
|
if installed:
|
|
if thread_updates:
|
|
thread_updates.join()
|
|
|
|
for app_json in installed:
|
|
model = self._map_to_model(app_json=app_json, installed=True,
|
|
disk_loader=disk_loader, internet=internet_available)
|
|
if version >= '1.5.0':
|
|
model.update = '{}/{}'.format(app_json['id'], app_json['branch']) in updates[0] if updates else None
|
|
else:
|
|
model.update = app_json['ref'] in updates[0] if updates else None
|
|
|
|
models.append(model)
|
|
|
|
return SearchResult(models, None, len(models))
|
|
|
|
def downgrade(self, pkg: FlatpakApplication, root_password: str, watcher: ProcessWatcher) -> bool:
|
|
pkg.commit = flatpak.get_commit(pkg.id, pkg.branch)
|
|
|
|
watcher.change_progress(10)
|
|
watcher.change_substatus(self.i18n['flatpak.downgrade.commits'])
|
|
commits = flatpak.get_app_commits(pkg.ref, pkg.origin)
|
|
|
|
commit_idx = commits.index(pkg.commit)
|
|
|
|
# downgrade is not possible if the app current commit in the first one:
|
|
if commit_idx == len(commits) - 1:
|
|
watcher.show_message(self.i18n['flatpak.downgrade.impossible.title'], self.i18n['flatpak.downgrade.impossible.body'], MessageType.WARNING)
|
|
return False
|
|
|
|
commit = commits[commit_idx + 1]
|
|
watcher.change_substatus(self.i18n['flatpak.downgrade.reverting'])
|
|
watcher.change_progress(50)
|
|
success = ProcessHandler(watcher).handle(SystemProcess(subproc=flatpak.downgrade(pkg.ref, commit, root_password),
|
|
success_phrases=['Changes complete.', 'Updates complete.'],
|
|
wrong_error_phrase='Warning'))
|
|
watcher.change_progress(100)
|
|
return success
|
|
|
|
def clean_cache_for(self, pkg: FlatpakApplication):
|
|
super(FlatpakManager, self).clean_cache_for(pkg)
|
|
self.api_cache.delete(pkg.id)
|
|
|
|
def update(self, pkg: FlatpakApplication, root_password: str, watcher: ProcessWatcher) -> bool:
|
|
return ProcessHandler(watcher).handle(SystemProcess(subproc=flatpak.update(pkg.ref)))
|
|
|
|
def uninstall(self, pkg: FlatpakApplication, root_password: str, watcher: ProcessWatcher) -> bool:
|
|
return ProcessHandler(watcher).handle(SystemProcess(subproc=flatpak.uninstall(pkg.ref)))
|
|
|
|
def get_info(self, app: FlatpakApplication) -> dict:
|
|
if app.installed:
|
|
app_info = flatpak.get_app_info_fields(app.id, app.branch)
|
|
app_info['name'] = app.name
|
|
app_info['type'] = 'runtime' if app.runtime else 'app'
|
|
app_info['description'] = strip_html(app.description) if app.description else ''
|
|
|
|
if app_info.get('installed'):
|
|
app_info['installed'] = app_info['installed'].replace('?', ' ')
|
|
|
|
return app_info
|
|
else:
|
|
res = self.http_client.get_json('{}/apps/{}'.format(FLATHUB_API_URL, app.id))
|
|
|
|
if res:
|
|
if res.get('categories'):
|
|
res['categories'] = [c.get('name') for c in res['categories']]
|
|
|
|
for to_del in ('screenshots', 'iconMobileUrl', 'iconDesktopUrl'):
|
|
if res.get(to_del):
|
|
del res[to_del]
|
|
|
|
for to_strip in ('description', 'currentReleaseDescription'):
|
|
if res.get(to_strip):
|
|
res[to_strip] = strip_html(res[to_strip])
|
|
|
|
for to_date in ('currentReleaseDate', 'inStoreSinceDate'):
|
|
if res.get(to_date):
|
|
try:
|
|
res[to_date] = datetime.strptime(res[to_date], DATE_FORMAT)
|
|
except:
|
|
self.context.logger.error('Could not convert date string {} as {}'.format(res[to_date], DATE_FORMAT))
|
|
pass
|
|
|
|
return res
|
|
else:
|
|
return {}
|
|
|
|
def get_history(self, pkg: FlatpakApplication) -> PackageHistory:
|
|
pkg.commit = flatpak.get_commit(pkg.id, pkg.branch)
|
|
commits = flatpak.get_app_commits_data(pkg.ref, pkg.origin)
|
|
status_idx = 0
|
|
|
|
for idx, data in enumerate(commits):
|
|
if data['commit'] == pkg.commit:
|
|
status_idx = idx
|
|
break
|
|
|
|
return PackageHistory(pkg=pkg, history=commits, pkg_status_idx=status_idx)
|
|
|
|
def install(self, pkg: FlatpakApplication, root_password: str, watcher: ProcessWatcher) -> bool:
|
|
res = ProcessHandler(watcher).handle(SystemProcess(subproc=flatpak.install(pkg.id, pkg.origin), wrong_error_phrase='Warning'))
|
|
|
|
if res:
|
|
try:
|
|
fields = flatpak.get_fields(pkg.id, pkg.branch, ['Ref', 'Branch'])
|
|
|
|
if fields:
|
|
pkg.ref = fields[0]
|
|
pkg.branch = fields[1]
|
|
except:
|
|
traceback.print_exc()
|
|
|
|
return res
|
|
|
|
def is_enabled(self):
|
|
return self.enabled
|
|
|
|
def set_enabled(self, enabled: bool):
|
|
self.enabled = enabled
|
|
|
|
def can_work(self) -> bool:
|
|
return flatpak.is_installed()
|
|
|
|
def requires_root(self, action: str, pkg: FlatpakApplication):
|
|
return action == 'downgrade'
|
|
|
|
def prepare(self):
|
|
pass
|
|
|
|
def list_updates(self, internet_available: bool) -> List[PackageUpdate]:
|
|
updates = []
|
|
installed = self.read_installed(None, internet_available=internet_available).installed
|
|
|
|
to_update = [p for p in installed if p.update]
|
|
|
|
if to_update:
|
|
loaders = []
|
|
|
|
for app in to_update:
|
|
if app.is_application():
|
|
loader = FlatpakUpdateLoader(app=app, http_client=self.context.http_client)
|
|
loader.start()
|
|
loaders.append(loader)
|
|
|
|
for loader in loaders:
|
|
loader.join()
|
|
|
|
for app in to_update:
|
|
updates.append(PackageUpdate(pkg_id='{}:{}'.format(app.id, app.branch),
|
|
pkg_type='flatpak',
|
|
version=app.version))
|
|
|
|
return updates
|
|
|
|
def list_warnings(self, internet_available: bool) -> List[str]:
|
|
if flatpak.is_installed():
|
|
if not flatpak.has_remotes_set():
|
|
return [self.i18n['flatpak.notification.no_remotes'],
|
|
self.i18n['flatpak.notification.disable'].format(bold('Flatpak'), bold(self.i18n['manage_window.settings.gems']))]
|
|
|
|
def list_suggestions(self, limit: int) -> List[PackageSuggestion]:
|
|
cli_version = flatpak.get_version()
|
|
res = []
|
|
|
|
sugs = [(i, p) for i, p in suggestions.ALL.items()]
|
|
sugs.sort(key=lambda t: t[1].value, reverse=True)
|
|
|
|
for sug in sugs:
|
|
if limit <= 0 or len(res) < limit:
|
|
cached_sug = self.suggestions_cache.get(sug[0])
|
|
|
|
if cached_sug:
|
|
res.append(cached_sug)
|
|
else:
|
|
app_json = flatpak.search(cli_version, sug[0], app_id=True)
|
|
|
|
if app_json:
|
|
model = PackageSuggestion(self._map_to_model(app_json[0], False, None), sug[1])
|
|
self.suggestions_cache.add(sug[0], model)
|
|
res.append(model)
|
|
else:
|
|
break
|
|
|
|
res.sort(key=lambda s: s.priority.value, reverse=True)
|
|
return res
|
|
|
|
def is_default_enabled(self) -> bool:
|
|
return True
|
|
|
|
def launch(self, pkg: SoftwarePackage):
|
|
flatpak.run(str(pkg.id))
|
|
|
|
def get_screenshots(self, pkg: SoftwarePackage) -> List[str]:
|
|
screenshots_url = '{}/apps/{}'.format(FLATHUB_API_URL, pkg.id)
|
|
urls = []
|
|
try:
|
|
res = self.http_client.get_json(screenshots_url)
|
|
|
|
if res and res.get('screenshots'):
|
|
for s in res['screenshots']:
|
|
if s.get('imgDesktopUrl'):
|
|
urls.append(s['imgDesktopUrl'])
|
|
|
|
except Exception as e:
|
|
if e.__class__.__name__ == 'JSONDecodeError':
|
|
self.context.logger.error("Could not decode json from '{}'".format(screenshots_url))
|
|
else:
|
|
traceback.print_exc()
|
|
|
|
return urls
|