mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 21:44:16 +02:00
142 lines
4.7 KiB
Python
142 lines
4.7 KiB
Python
import datetime
|
|
from typing import List, Set
|
|
|
|
from bauh.api.abstract.model import SoftwarePackage
|
|
from bauh.commons import resource
|
|
from bauh.gems.arch import ROOT_DIR, ARCH_CACHE_PATH
|
|
from bauh.view.util.translation import I18n
|
|
|
|
CACHED_ATTRS = {'command', 'icon_path', 'repository', 'maintainer', 'desktop_entry', 'categories'}
|
|
|
|
|
|
class ArchPackage(SoftwarePackage):
|
|
|
|
def __init__(self, name: str = None, version: str = None, latest_version: str = None, description: str = None,
|
|
package_base: str = None, votes: int = None, popularity: float = None,
|
|
first_submitted: datetime.datetime = None, last_modified: datetime.datetime = None,
|
|
maintainer: str = None, url_download: str = None, pkgbuild: str = None, repository: str = None,
|
|
desktop_entry: str = None, installed: bool = False, srcinfo: dict = None, dependencies: Set[str] = None,
|
|
i18n: I18n = None):
|
|
|
|
super(ArchPackage, self).__init__(name=name, version=version, latest_version=latest_version, description=description, installed=installed)
|
|
self.package_base = package_base
|
|
self.votes = votes
|
|
self.popularity = popularity
|
|
self.maintainer = maintainer if maintainer else (repository if repository != 'arch' else None)
|
|
self.url_download = url_download
|
|
self.first_submitted = first_submitted
|
|
self.last_modified = last_modified
|
|
self.pkgbuild = pkgbuild
|
|
self.repository = repository
|
|
self.command = None
|
|
self.icon_path = None
|
|
self.downgrade_enabled = False
|
|
self.desktop_entry = desktop_entry
|
|
self.src_info = srcinfo
|
|
self.dependencies = dependencies
|
|
self.i18n = i18n
|
|
|
|
@staticmethod
|
|
def disk_cache_path(pkgname: str):
|
|
return ARCH_CACHE_PATH + '/installed/' + pkgname
|
|
|
|
def get_pkg_build_url(self):
|
|
if self.package_base:
|
|
return 'https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=' + self.package_base
|
|
|
|
def has_history(self):
|
|
return self.installed and self.repository == 'arch'
|
|
|
|
def has_info(self):
|
|
return True
|
|
|
|
def can_be_installed(self) -> bool:
|
|
if super(ArchPackage, self).can_be_installed():
|
|
return bool(self.url_download) if self.repository == 'arch' else True
|
|
|
|
def can_be_downgraded(self):
|
|
return self.installed and self.downgrade_enabled and self.repository == 'arch'
|
|
|
|
def get_type(self):
|
|
return 'arch' if self.repository == 'arch' else 'arch_repo'
|
|
|
|
def get_update_type(self):
|
|
return 'Arch - {}'.format('AUR' if self.repository == 'arch' else 'Repository')
|
|
|
|
def get_default_icon_path(self) -> str:
|
|
return self.get_type_icon_path()
|
|
|
|
def get_disk_icon_path(self) -> str:
|
|
return self.icon_path
|
|
|
|
def get_type_icon_path(self):
|
|
return resource.get_path('img/{}.svg'.format('arch' if self.get_type() == 'arch' else 'repo'), ROOT_DIR)
|
|
|
|
def is_application(self):
|
|
return self.can_be_run()
|
|
|
|
def get_base_name(self) -> str:
|
|
return self.package_base if self.package_base else self.name
|
|
|
|
def supports_disk_cache(self):
|
|
return True
|
|
|
|
def get_disk_cache_path(self) -> str:
|
|
if self.name:
|
|
return self.disk_cache_path(self.name)
|
|
|
|
def get_data_to_cache(self) -> dict:
|
|
cache = {}
|
|
|
|
# required attrs to cache
|
|
for a in CACHED_ATTRS:
|
|
val = getattr(self, a)
|
|
|
|
if val:
|
|
cache[a] = val
|
|
|
|
return cache
|
|
|
|
def fill_cached_data(self, data: dict):
|
|
if data:
|
|
for a in CACHED_ATTRS:
|
|
val = data.get(a)
|
|
if val:
|
|
setattr(self, a, val)
|
|
|
|
if a == 'icon_path':
|
|
self.icon_url = val
|
|
|
|
def can_be_run(self) -> bool:
|
|
# only returns if there is a desktop entry set for the application to avoid running command-line applications
|
|
return bool(self.desktop_entry) and bool(self.command)
|
|
|
|
def get_publisher(self):
|
|
return self.maintainer
|
|
|
|
def set_icon(self, paths: List[str]):
|
|
self.icon_path = paths[0]
|
|
|
|
if len(paths) > 1:
|
|
for path in paths:
|
|
if '/' in path:
|
|
self.icon_path = path
|
|
break
|
|
|
|
self.icon_url = self.icon_path
|
|
|
|
def has_screenshots(self) -> bool:
|
|
return False
|
|
|
|
def get_name_tooltip(self) -> str:
|
|
return '{} ( {}: {} )'.format(self.name, self.i18n['repository'], self.repository)
|
|
|
|
def supports_backup(self) -> bool:
|
|
return True
|
|
|
|
def __str__(self):
|
|
return self.__repr__()
|
|
|
|
def __repr__(self):
|
|
return '{} (name={}, command={}, icon_path={})'.format(self.__class__.__name__, self.name, self.command, self.icon_path)
|