feather/src/dialog/ViewOnlyDialog.cpp

88 lines
2.9 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2024-01-01 17:07:58 +00:00
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
2021-06-27 14:33:18 +00:00
#include "ViewOnlyDialog.h"
#include "ui_ViewOnlyDialog.h"
#include <QFileDialog>
#include <QMessageBox>
#include "utils/Utils.h"
2023-12-07 11:09:23 +00:00
#include "WalletManager.h"
#include "qrcode/QrCode.h"
2023-12-30 14:45:54 +00:00
#include "dialog/PasswordSetDialog.h"
#include "dialog/QrCodeDialog.h"
ViewOnlyDialog::ViewOnlyDialog(Wallet *wallet, QWidget *parent)
2021-10-22 17:19:56 +00:00
: WindowModalDialog(parent)
2021-05-18 15:59:18 +00:00
, ui(new Ui::ViewOnlyDialog)
, m_wallet(wallet)
{
ui->setupUi(this);
ui->label_restoreHeight->setText(QString::number(m_wallet->getWalletCreationHeight()));
ui->label_primaryAddress->setText(m_wallet->address(0, 0));
ui->label_secretViewKey->setText(m_wallet->getSecretViewKey());
2023-01-09 02:17:25 +00:00
connect(ui->btn_Copy, &QPushButton::clicked, this, &ViewOnlyDialog::copyToClipboard);
connect(ui->btn_Save, &QPushButton::clicked, this, &ViewOnlyDialog::onWriteViewOnlyWallet);
connect(ui->btn_transmitOverUR, &QPushButton::clicked, [this] {
QrCode qr(this->toJsonString(), QrCode::Version::AUTO, QrCode::ErrorCorrectionLevel::HIGH);
QrCodeDialog dialog{this, &qr, "View-Only details"};
dialog.exec();
});
if (m_wallet->viewOnly()) {
ui->btn_Save->setEnabled(false);
ui->btn_Save->setToolTip("Wallet is already view-only");
}
this->adjustSize();
}
void ViewOnlyDialog::onWriteViewOnlyWallet(){
2023-12-30 14:49:51 +00:00
QDir walletDir = QDir(Utils::defaultWalletDir());
QString fn = QFileDialog::getSaveFileName(this, "Save .keys wallet file", walletDir.filePath(QString("%1_view_only").arg(m_wallet->walletName())), "Monero wallet (*.keys)");
2023-12-30 14:45:54 +00:00
if (fn.isEmpty()) {
return;
}
if (!fn.endsWith(".keys")) {
fn += ".keys";
}
PasswordSetDialog dialog("Set a password for the view-only wallet", this);
dialog.exec();
QString password = dialog.password();
m_wallet->createViewOnly(fn, password);
QMessageBox::information(this, "Information", "View-only wallet successfully written to disk.");
}
QString ViewOnlyDialog::toString() {
QString text;
text += QString("Secret view key: %1\n").arg(ui->label_secretViewKey->text());
text += QString("Address: %1\n").arg(ui->label_primaryAddress->text());
text += QString("Restore height: %1\n").arg(ui->label_restoreHeight->text());
text += QString("Wallet name: %1\n").arg(m_wallet->walletName());
return text;
}
QString ViewOnlyDialog::toJsonString() {
QVariantMap data;
data["version"] = 0,
data["primaryAddress"] = m_wallet->address(0, 0);
data["privateViewKey"] = m_wallet->getSecretViewKey();
data["restoreHeight"] = m_wallet->getWalletCreationHeight();
data["walletName"] = m_wallet->walletName();
auto obj = QJsonDocument::fromVariant(data);
return obj.toJson(QJsonDocument::Compact);
}
void ViewOnlyDialog::copyToClipboard() {
Utils::copyToClipboard(this->toString());
}
2021-06-27 12:13:05 +00:00
ViewOnlyDialog::~ViewOnlyDialog() = default;