mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 00:24:15 +02:00
### Features
- Applications search
- Now when you right-click a selected application you can:
- retrieve its information
- retrieve its commit history
- downgrade
- install and uninstall it
- "About" window available when right-clicking the tray icon.
### Improvements
- Performance and memory usage
- Adding tooltips to toolbar buttons
- "Update ?" column renamed to "Upgrade ?"
- Management panel title renamed
- Showing runtime apps when no app is available
- Allowing to specify a custom app translation with the environment variable **FPAKMAN_LOCALE**
- Adding expiration time for cached app data. Default to 1 hour. The environment variable **FPAKMAN_CACHE_EXPIRATION** can change this value.
- Now the application accepts arguments related to environment variables as well. Check 'README.md'.
- Minor GUI improvements
- Notifying only new updates
- New icon
- Progress bar
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
import io
|
|
import os
|
|
import subprocess
|
|
|
|
from PyQt5.QtWidgets import QInputDialog, QLineEdit
|
|
|
|
from fpakman.view.qt.dialog import show_error
|
|
|
|
|
|
def is_root():
|
|
return os.getuid() == 0
|
|
|
|
|
|
def ask_root_password(locale_keys: dict):
|
|
|
|
dialog_pwd = QInputDialog()
|
|
dialog_pwd.setInputMode(QInputDialog.TextInput)
|
|
dialog_pwd.setTextEchoMode(QLineEdit.Password)
|
|
dialog_pwd.setWindowTitle(locale_keys['popup.root.title'])
|
|
dialog_pwd.setLabelText(locale_keys['popup.root.password'] + ':')
|
|
dialog_pwd.setCancelButtonText(locale_keys['popup.button.cancel'])
|
|
dialog_pwd.resize(400, 200)
|
|
|
|
ok = dialog_pwd.exec_()
|
|
|
|
if ok:
|
|
if not validate_password(dialog_pwd.textValue()):
|
|
show_error(title=locale_keys['popup.root.bad_password.title'],
|
|
body=locale_keys['popup.root.bad_password.body'])
|
|
ok = False
|
|
|
|
return dialog_pwd.textValue(), ok
|
|
|
|
|
|
def validate_password(password: str) -> bool:
|
|
proc = subprocess.Popen('sudo -k && echo {} | sudo -S whoami'.format(password),
|
|
shell=True,
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.DEVNULL,
|
|
bufsize=-1)
|
|
stream = os._wrap_close(io.TextIOWrapper(proc.stdout), proc)
|
|
res = stream.read()
|
|
stream.close()
|
|
|
|
return bool(res.strip())
|