mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
129 lines
4.0 KiB
Python
129 lines
4.0 KiB
Python
import glob
|
|
import os
|
|
from pathlib import Path
|
|
from typing import List
|
|
|
|
from bauh.api.abstract.model import SoftwarePackage
|
|
from bauh.commons import resource
|
|
from bauh.gems.web import ROOT_DIR
|
|
|
|
|
|
class WebApplication(SoftwarePackage):
|
|
|
|
def __init__(self, id: str = None, url: str = None, name: str = None, description: str = None, icon_url: str = None,
|
|
installation_dir: str = None, desktop_entry: str = None, installed: bool = False, version: str = None,
|
|
categories: List[str] = None, custom_icon: str = None, preset_options: List[str] = None, save_icon: bool = True):
|
|
super(WebApplication, self).__init__(id=id if id else url, name=name, description=description,
|
|
icon_url=icon_url, installed=installed, version=version,
|
|
categories=categories)
|
|
self.url = url
|
|
self.installation_dir = installation_dir
|
|
self.desktop_entry = desktop_entry
|
|
self.set_custom_icon(custom_icon)
|
|
self.preset_options = preset_options
|
|
self.save_icon = save_icon # if the icon_url should be used instead of the one retrieved by nativefier
|
|
|
|
def set_version(self, version: str):
|
|
self.version = str(version) if version else None
|
|
self.latest_version = version
|
|
|
|
def has_history(self):
|
|
return False
|
|
|
|
def has_info(self):
|
|
return True
|
|
|
|
@staticmethod
|
|
def _get_cached_attrs() -> tuple:
|
|
return 'id', 'name', 'version', 'url', 'description', 'icon_url', 'installation_dir', 'desktop_entry', 'categories', 'custom_icon'
|
|
|
|
def can_be_downgraded(self):
|
|
return False
|
|
|
|
def get_exec_path(self) -> str:
|
|
if self.installation_dir:
|
|
return '{}/{}'.format(self.installation_dir, self.id)
|
|
|
|
def get_type(self):
|
|
return 'web'
|
|
|
|
def get_type_icon_path(self) -> str:
|
|
return self.get_default_icon_path()
|
|
|
|
def get_default_icon_path(self) -> str:
|
|
return resource.get_path('img/web.png', ROOT_DIR)
|
|
|
|
def get_disk_data_path(self) -> str:
|
|
return '{}/data.yml'.format(self.get_disk_cache_path())
|
|
|
|
def get_disk_icon_path(self) -> str:
|
|
if self.custom_icon:
|
|
return self.custom_icon
|
|
|
|
if self.installation_dir:
|
|
return '{}/resources/app/icon.png'.format(self.installation_dir)
|
|
|
|
def is_application(self):
|
|
return True
|
|
|
|
def supports_disk_cache(self):
|
|
return self.installed
|
|
|
|
def get_disk_cache_path(self):
|
|
return self.installation_dir
|
|
|
|
def get_data_to_cache(self) -> dict:
|
|
data = {}
|
|
|
|
for attr in self._get_cached_attrs():
|
|
if hasattr(self, attr):
|
|
val = getattr(self, attr)
|
|
|
|
if val is not None:
|
|
data[attr] = val
|
|
|
|
return data
|
|
|
|
def fill_cached_data(self, data: dict):
|
|
for attr in self._get_cached_attrs():
|
|
val = data.get(attr)
|
|
|
|
if val and hasattr(self, attr):
|
|
setattr(self, attr, val)
|
|
|
|
self.set_custom_icon(self.custom_icon)
|
|
|
|
def can_be_run(self) -> bool:
|
|
return self.installed and self.installation_dir
|
|
|
|
def is_trustable(self) -> bool:
|
|
return False
|
|
|
|
def get_publisher(self) -> str:
|
|
return 'bauh'
|
|
|
|
def has_screenshots(self) -> bool:
|
|
return False
|
|
|
|
def get_autostart_path(self) -> str:
|
|
if self.desktop_entry:
|
|
return '{}/.config/autostart/{}'.format(Path.home(), self.desktop_entry.split('/')[-1])
|
|
|
|
def set_custom_icon(self, custom_icon: str):
|
|
self.custom_icon = custom_icon
|
|
|
|
if custom_icon:
|
|
self.icon_url = custom_icon
|
|
|
|
def get_config_dir(self) -> str:
|
|
if self.installation_dir:
|
|
config_path = '{}/.config'.format(Path.home())
|
|
|
|
if os.path.exists(config_path):
|
|
config_dirs = glob.glob('{}/{}-nativefier-*'.format(config_path, self.installation_dir.split('/')[-1]))
|
|
|
|
if config_dirs:
|
|
return config_dirs[0]
|
|
|
|
|