mirror of
https://github.com/nixietab/picodulce.git
synced 2025-04-04 15:38:57 +01:00
authentication done right
This commit is contained in:
parent
5dbbfd5d87
commit
00ed5f97b9
34
picodulce.py
34
picodulce.py
@ -10,6 +10,7 @@ import requests
|
|||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import time
|
import time
|
||||||
|
from authser import MinecraftAuthenticator
|
||||||
from PyQt5.QtWidgets import QApplication, QComboBox, QWidget, QInputDialog, QVBoxLayout, QListWidget, QPushButton, QMessageBox, QDialog, QHBoxLayout, QLabel, QLineEdit, QCheckBox, QTabWidget, QFrame, QSpacerItem, QSizePolicy, QMainWindow, QGridLayout, QTextEdit, QListWidget, QListWidgetItem, QMenu
|
from PyQt5.QtWidgets import QApplication, QComboBox, QWidget, QInputDialog, QVBoxLayout, QListWidget, QPushButton, QMessageBox, QDialog, QHBoxLayout, QLabel, QLineEdit, QCheckBox, QTabWidget, QFrame, QSpacerItem, QSizePolicy, QMainWindow, QGridLayout, QTextEdit, QListWidget, QListWidgetItem, QMenu
|
||||||
from PyQt5.QtGui import QFont, QIcon, QColor, QPalette, QMovie, QPixmap, QDesktopServices, QBrush
|
from PyQt5.QtGui import QFont, QIcon, QColor, QPalette, QMovie, QPixmap, QDesktopServices, QBrush
|
||||||
from PyQt5.QtCore import Qt, QObject, pyqtSignal, QThread, QUrl, QMetaObject, Q_ARG, QByteArray, QSize
|
from PyQt5.QtCore import Qt, QObject, pyqtSignal, QThread, QUrl, QMetaObject, Q_ARG, QByteArray, QSize
|
||||||
@ -51,6 +52,10 @@ class PicomcVersionSelector(QWidget):
|
|||||||
if self.config.get("IsFirstLaunch", False):
|
if self.config.get("IsFirstLaunch", False):
|
||||||
self.FirstLaunch()
|
self.FirstLaunch()
|
||||||
|
|
||||||
|
self.authenticator = MinecraftAuthenticator(self)
|
||||||
|
self.authenticator.auth_finished.connect(self._on_auth_finished)
|
||||||
|
|
||||||
|
|
||||||
def load_theme_from_file(self, file_path, app):
|
def load_theme_from_file(self, file_path, app):
|
||||||
self.theme = {}
|
self.theme = {}
|
||||||
# Check if the file exists, else load 'Dark.json'
|
# Check if the file exists, else load 'Dark.json'
|
||||||
@ -1079,19 +1084,36 @@ class PicomcVersionSelector(QWidget):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def authenticate_account(self, dialog, account_name):
|
def authenticate_account(self, dialog, account_name):
|
||||||
# Authenticate a selected account
|
# Clean up the account name
|
||||||
account_name = account_name.strip().lstrip(" * ")
|
account_name = account_name.strip().lstrip(" * ")
|
||||||
if not account_name:
|
if not account_name:
|
||||||
QMessageBox.warning(dialog, "Warning", "Please select an account to authenticate.")
|
QMessageBox.warning(dialog, "Warning", "Please select an account to authenticate.")
|
||||||
return
|
return
|
||||||
|
|
||||||
try:
|
try:
|
||||||
subprocess.run(['picomc', 'account', 'authenticate', account_name], check=True)
|
# Create authenticator instance if it doesn't exist
|
||||||
QMessageBox.information(self, "Success", f"Account '{account_name}' authenticated successfully!")
|
if self.authenticator is None:
|
||||||
except subprocess.CalledProcessError as e:
|
self.authenticator = MinecraftAuthenticator(self)
|
||||||
error_message = f"Error authenticating account '{account_name}': {e.stderr.decode()}"
|
self.authenticator.auth_finished.connect(self._on_auth_finished)
|
||||||
|
|
||||||
|
# Start authentication process
|
||||||
|
self.authenticator.authenticate(account_name)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
error_message = f"Error authenticating account '{account_name}': {str(e)}"
|
||||||
logging.error(error_message)
|
logging.error(error_message)
|
||||||
QMessageBox.critical(self, "Error", error_message)
|
QMessageBox.critical(dialog, "Error", error_message)
|
||||||
|
|
||||||
|
def _on_auth_finished(self, success):
|
||||||
|
if success:
|
||||||
|
QMessageBox.information(self, "Success", "Account authenticated successfully!")
|
||||||
|
else:
|
||||||
|
QMessageBox.critical(self, "Error", "Failed to authenticate account")
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
if self.authenticator:
|
||||||
|
self.authenticator.cleanup()
|
||||||
|
self.authenticator = None
|
||||||
|
|
||||||
def remove_account(self, dialog, username):
|
def remove_account(self, dialog, username):
|
||||||
# Remove a selected account
|
# Remove a selected account
|
||||||
|
Loading…
Reference in New Issue
Block a user