207 lines
7.0 KiB
Python
207 lines
7.0 KiB
Python
import logging
|
|
import os
|
|
import webbrowser
|
|
|
|
from gotify_tray.database import Settings
|
|
from gotify_tray.gotify import GotifyMessageModel
|
|
from gotify_tray.gui.models import MessagesModelItem
|
|
from . import MessageWidget
|
|
from gotify_tray.utils import verify_server
|
|
from gotify_tray.tasks import ExportSettingsTask, ImportSettingsTask
|
|
from PyQt6 import QtCore, QtGui, QtWidgets
|
|
|
|
from ..designs.widget_settings import Ui_Dialog
|
|
|
|
|
|
logger = logging.getLogger("gotify-tray")
|
|
settings = Settings("gotify-tray")
|
|
|
|
|
|
class SettingsDialog(QtWidgets.QDialog, Ui_Dialog):
|
|
quit_requested = QtCore.pyqtSignal()
|
|
|
|
def __init__(self):
|
|
super(SettingsDialog, self).__init__()
|
|
self.setupUi(self)
|
|
self.setWindowTitle("Settings")
|
|
|
|
self.settings_changed = False
|
|
self.changes_applied = False
|
|
self.server_changed = False
|
|
|
|
self.initUI()
|
|
|
|
self.link_callbacks()
|
|
|
|
def initUI(self):
|
|
self.buttonBox.button(
|
|
QtWidgets.QDialogButtonBox.StandardButton.Apply
|
|
).setEnabled(False)
|
|
|
|
# Notifications
|
|
self.spin_priority.setValue(
|
|
settings.value("tray/notifications/priority", type=int)
|
|
)
|
|
|
|
self.spin_duration.setValue(
|
|
settings.value("tray/notifications/duration_ms", type=int)
|
|
)
|
|
|
|
self.cb_notify.setChecked(
|
|
settings.value("message/check_missed/notify", type=bool)
|
|
)
|
|
|
|
# Logging
|
|
self.combo_logging.addItems(
|
|
[
|
|
logging.getLevelName(logging.ERROR),
|
|
logging.getLevelName(logging.WARNING),
|
|
logging.getLevelName(logging.INFO),
|
|
logging.getLevelName(logging.DEBUG),
|
|
"Disabled",
|
|
]
|
|
)
|
|
self.combo_logging.setCurrentText(settings.value("logging/level", type=str))
|
|
|
|
# Fonts
|
|
self.message_widget = MessageWidget(
|
|
MessagesModelItem(
|
|
GotifyMessageModel(
|
|
{
|
|
"date": "2021-01-01T11:11:00.928224+01:00",
|
|
"message": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin luctus.",
|
|
"title": "Title",
|
|
}
|
|
)
|
|
)
|
|
)
|
|
self.layout_fonts_message.addWidget(self.message_widget)
|
|
|
|
def change_server_info_callback(self):
|
|
self.server_changed = verify_server(force_new=True, enable_import=False)
|
|
|
|
def settings_changed_callback(self, *args, **kwargs):
|
|
self.settings_changed = True
|
|
self.buttonBox.button(
|
|
QtWidgets.QDialogButtonBox.StandardButton.Apply
|
|
).setEnabled(True)
|
|
|
|
def change_font_callback(self, name: str):
|
|
label: QtWidgets.QLabel = getattr(self.message_widget, "label_" + name)
|
|
|
|
font, accepted = QtWidgets.QFontDialog.getFont(
|
|
label.font(), self, f"Select a {name} font"
|
|
)
|
|
|
|
if accepted:
|
|
self.settings_changed_callback()
|
|
label.setFont(font)
|
|
|
|
def export_callback(self):
|
|
fname = QtWidgets.QFileDialog.getSaveFileName(
|
|
self, "Export Settings", settings.value("export/path", type=str), "*",
|
|
)[0]
|
|
if fname and os.path.exists(os.path.dirname(fname)):
|
|
self.export_settings_task = ExportSettingsTask(fname)
|
|
self.export_settings_task.start()
|
|
settings.setValue("export/path", fname)
|
|
|
|
def import_success_callback(self):
|
|
response = QtWidgets.QMessageBox.information(
|
|
self, "Restart to apply settings", "Restart to apply settings"
|
|
)
|
|
if response == QtWidgets.QMessageBox.StandardButton.Ok:
|
|
self.quit_requested.emit()
|
|
|
|
def import_callback(self):
|
|
fname = QtWidgets.QFileDialog.getOpenFileName(
|
|
self, "Import Settings", settings.value("export/path", type=str), "*",
|
|
)[0]
|
|
if fname and os.path.exists(fname):
|
|
self.import_settings_task = ImportSettingsTask(fname)
|
|
self.import_settings_task.success.connect(self.import_success_callback)
|
|
self.import_settings_task.start()
|
|
|
|
def reset_callback(self):
|
|
response = QtWidgets.QMessageBox.warning(
|
|
self,
|
|
"Are you sure?",
|
|
"Reset all settings?",
|
|
QtWidgets.QMessageBox.StandardButton.Ok
|
|
| QtWidgets.QMessageBox.StandardButton.Cancel,
|
|
defaultButton=QtWidgets.QMessageBox.StandardButton.Cancel,
|
|
)
|
|
if response == QtWidgets.QMessageBox.StandardButton.Ok:
|
|
settings.clear()
|
|
self.quit_requested.emit()
|
|
|
|
def link_callbacks(self):
|
|
self.buttonBox.button(
|
|
QtWidgets.QDialogButtonBox.StandardButton.Apply
|
|
).clicked.connect(self.apply_settings)
|
|
|
|
# Notifications
|
|
self.spin_priority.valueChanged.connect(self.settings_changed_callback)
|
|
self.spin_duration.valueChanged.connect(self.settings_changed_callback)
|
|
self.cb_notify.stateChanged.connect(self.settings_changed_callback)
|
|
|
|
# Server info
|
|
self.pb_change_server_info.clicked.connect(self.change_server_info_callback)
|
|
|
|
# Logging
|
|
self.combo_logging.currentTextChanged.connect(self.settings_changed_callback)
|
|
self.pb_open_log.clicked.connect(
|
|
lambda: webbrowser.open(logger.root.handlers[0].baseFilename)
|
|
)
|
|
|
|
# Fonts
|
|
self.pb_font_message_title.clicked.connect(
|
|
lambda: self.change_font_callback("title")
|
|
)
|
|
self.pb_font_message_date.clicked.connect(
|
|
lambda: self.change_font_callback("date")
|
|
)
|
|
self.pb_font_message_content.clicked.connect(
|
|
lambda: self.change_font_callback("message")
|
|
)
|
|
|
|
# Advanced
|
|
self.pb_export.clicked.connect(self.export_callback)
|
|
self.pb_import.clicked.connect(self.import_callback)
|
|
self.pb_reset.clicked.connect(self.reset_callback)
|
|
|
|
def apply_settings(self):
|
|
# Priority
|
|
settings.setValue("tray/notifications/priority", self.spin_priority.value())
|
|
settings.setValue("tray/notifications/duration_ms", self.spin_duration.value())
|
|
settings.setValue("message/check_missed/notify", self.cb_notify.isChecked())
|
|
|
|
# Logging
|
|
selected_level = self.combo_logging.currentText()
|
|
settings.setValue("logging/level", selected_level)
|
|
if selected_level == "Disabled":
|
|
logging.disable(logging.CRITICAL)
|
|
else:
|
|
logging.disable(logging.NOTSET)
|
|
logger.setLevel(selected_level)
|
|
|
|
# Fonts
|
|
settings.setValue(
|
|
"MessageWidget/font/title",
|
|
self.message_widget.label_title.font().toString(),
|
|
)
|
|
settings.setValue(
|
|
"MessageWidget/font/date", self.message_widget.label_date.font().toString()
|
|
)
|
|
settings.setValue(
|
|
"MessageWidget/font/message",
|
|
self.message_widget.label_message.font().toString(),
|
|
)
|
|
|
|
self.settings_changed = False
|
|
self.buttonBox.button(
|
|
QtWidgets.QDialogButtonBox.StandardButton.Apply
|
|
).setEnabled(False)
|
|
|
|
self.changes_applied = True
|