mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 02:24:16 +02:00
installing, uninstalling and launching
This commit is contained in:
@@ -2,19 +2,25 @@ from typing import List
|
||||
|
||||
from bauh.api.abstract.model import SoftwarePackage
|
||||
from bauh.commons import resource
|
||||
from bauh.gems.appimage import ROOT_DIR
|
||||
from bauh.gems.appimage import ROOT_DIR, INSTALLATION_PATH
|
||||
|
||||
CACHED_ATTRS = {'name', 'description', 'version', 'icon_path', 'author'}
|
||||
|
||||
|
||||
class AppImage(SoftwarePackage):
|
||||
|
||||
def __init__(self, name: str = None, description: str = None, github: str = None, source: str = None, version: str = None,
|
||||
url_download: str = None, url_icon: str = None, license: str = None, pictures: List[str] = None):
|
||||
url_download: str = None, url_icon: str = None, license: str = None, author: str = None,
|
||||
pictures: List[str] = None, icon_path: str = None, installed: bool = False):
|
||||
super(AppImage, self).__init__(id=name, name=name, version=version, latest_version=version,
|
||||
icon_url=url_icon, license=license, description=description)
|
||||
icon_url=url_icon, license=license, description=description,
|
||||
installed=installed)
|
||||
self.source = source
|
||||
self.github = github
|
||||
self.pictures = pictures
|
||||
self.url_download = url_download
|
||||
self.icon_path = icon_path
|
||||
self.author = author
|
||||
|
||||
def can_be_installed(self):
|
||||
return not self.installed and self.url_download
|
||||
@@ -44,17 +50,31 @@ class AppImage(SoftwarePackage):
|
||||
return True
|
||||
|
||||
def get_data_to_cache(self) -> dict:
|
||||
# TODO
|
||||
pass
|
||||
data = {}
|
||||
|
||||
for a in CACHED_ATTRS:
|
||||
val = getattr(self, a)
|
||||
if val:
|
||||
data[a] = val
|
||||
|
||||
return data
|
||||
|
||||
def fill_cached_data(self, data: dict):
|
||||
# TODO
|
||||
pass
|
||||
for a in CACHED_ATTRS:
|
||||
val = data.get(a)
|
||||
|
||||
def can_be_run(self) -> str:
|
||||
# TODO
|
||||
return False
|
||||
if val:
|
||||
setattr(self, a, val)
|
||||
|
||||
def can_be_run(self) -> bool:
|
||||
return self.installed
|
||||
|
||||
def get_publisher(self) -> str:
|
||||
# TODO
|
||||
pass
|
||||
return self.author
|
||||
|
||||
def get_disk_cache_path(self) -> str:
|
||||
if self.name:
|
||||
return INSTALLATION_PATH + self.name.lower()
|
||||
|
||||
def get_disk_icon_path(self):
|
||||
return self.icon_path
|
||||
|
||||
Reference in New Issue
Block a user