Add keychain dialog and settings for unsecure backend usage

- Introduced KeychainDialog for managing keychain access during app store sign-in.
- Added settings for enabling/disabling unsecure backend usage in SettingsManager.
- Updated AppsWidget to initialize keychain dialog based on settings.
- Enhanced error messages and UI adjustments in various components.
This commit is contained in:
uncor3
2025-11-03 14:14:45 -08:00
parent c6867578b8
commit b1adde58dd
18 changed files with 352 additions and 51 deletions
+135
View File
@@ -0,0 +1,135 @@
#include "keychaindialog.h"
#include "settingsmanager.h"
#include <QApplication>
#include <QCheckBox>
#include <QLabel>
#include <QMediaPlayer>
#include <QPushButton>
#include <QVBoxLayout>
#include <QVideoWidget>
KeychainDialog::KeychainDialog(QWidget *parent)
: QDialog(parent), m_player(nullptr), m_videoWidget(nullptr),
m_mainLayout(nullptr), m_okButton(nullptr), m_titleLabel(nullptr),
m_descriptionLabel(nullptr), m_dontShowAgainCheckbox(nullptr)
{
setupUI();
setupVideo();
}
KeychainDialog::~KeychainDialog()
{
if (m_player) {
m_player->stop();
}
}
void KeychainDialog::setupUI()
{
setWindowTitle("Keychain Access Required");
setModal(true);
setMinimumSize(600, 450);
resize(700, 500);
m_mainLayout = new QVBoxLayout(this);
m_mainLayout->setContentsMargins(20, 20, 20, 20);
m_mainLayout->setSpacing(15);
// Title label
m_titleLabel = new QLabel("Keychain Access Required");
m_titleLabel->setAlignment(Qt::AlignCenter);
m_titleLabel->setStyleSheet(
"font-size: 18px; font-weight: bold; margin-bottom: 10px;");
m_mainLayout->addWidget(m_titleLabel);
// Description label
m_descriptionLabel = new QLabel(
"In order to sign in to App Store we use the keychain backend to "
"safely store and retrieve your credentials. Please click on \"Always "
"Allow\" when prompted. "
"This is a security feature to protect your Apple ID credentials. You "
"can disable this in Settings.");
m_descriptionLabel->setAlignment(Qt::AlignCenter);
m_descriptionLabel->setWordWrap(true);
m_mainLayout->addWidget(m_descriptionLabel);
// Video widget
m_videoWidget = new QVideoWidget();
m_videoWidget->setSizePolicy(QSizePolicy::Expanding,
QSizePolicy::Expanding);
m_videoWidget->setAspectRatioMode(
Qt::AspectRatioMode::KeepAspectRatioByExpanding);
m_videoWidget->setStyleSheet(
"QVideoWidget { background-color: transparent; }");
m_videoWidget->setMinimumHeight(250);
m_mainLayout->addWidget(m_videoWidget, 1);
m_dontShowAgainCheckbox = new QCheckBox("Don't show this again");
m_mainLayout->addWidget(m_dontShowAgainCheckbox, 0, Qt::AlignCenter);
QHBoxLayout *buttonsLayout = new QHBoxLayout();
m_skipSigningInButton = new QPushButton("Skip For Now");
m_skipSigningInButton->setFixedHeight(40);
m_okButton = new QPushButton("OK, I understand");
m_okButton->setDefault(true);
m_okButton->setFixedHeight(40);
buttonsLayout->addWidget(m_skipSigningInButton);
buttonsLayout->addWidget(m_okButton);
m_mainLayout->addLayout(buttonsLayout, Qt::AlignCenter);
connect(m_okButton, &QPushButton::clicked, this,
&KeychainDialog::onOkClicked);
connect(m_skipSigningInButton, &QPushButton::clicked, this,
&KeychainDialog::onSkipSigningInClicked);
}
void KeychainDialog::setupVideo()
{
m_player = new QMediaPlayer(this);
m_player->setVideoOutput(m_videoWidget);
m_player->setSource(QUrl("qrc:/resources/keychain.mp4"));
// Loop the video
connect(m_player, &QMediaPlayer::mediaStatusChanged, this,
[this](QMediaPlayer::MediaStatus status) {
if (status == QMediaPlayer::EndOfMedia) {
m_player->setPosition(0);
m_player->play();
}
});
// Auto-play when ready
connect(m_player, &QMediaPlayer::mediaStatusChanged, this,
[this](QMediaPlayer::MediaStatus status) {
if (status == QMediaPlayer::LoadedMedia) {
m_player->play();
}
});
}
void KeychainDialog::onOkClicked()
{
if (m_dontShowAgainCheckbox && m_dontShowAgainCheckbox->isChecked()) {
SettingsManager::sharedInstance()->setShowKeychainDialog(false);
}
if (m_player) {
m_player->stop();
}
accept();
}
void KeychainDialog::onSkipSigningInClicked()
{
if (m_dontShowAgainCheckbox && m_dontShowAgainCheckbox->isChecked()) {
SettingsManager::sharedInstance()->setShowKeychainDialog(false);
}
if (m_player) {
m_player->stop();
}
reject();
}