2017-04-13 06:05:36 -04:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2017 Weslly Honorato <weslly@protonmail.com>
|
2017-06-09 17:40:36 -04:00
|
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2017-04-13 06:05:36 -04:00
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
|
* version 3 of the License.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "SetupTotpDialog.h"
|
|
|
|
|
#include "ui_SetupTotpDialog.h"
|
|
|
|
|
#include "totp/totp.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SetupTotpDialog::SetupTotpDialog(DatabaseWidget* parent, Entry* entry)
|
|
|
|
|
: QDialog(parent)
|
|
|
|
|
, m_ui(new Ui::SetupTotpDialog())
|
|
|
|
|
{
|
|
|
|
|
m_entry = entry;
|
|
|
|
|
m_parent = parent;
|
|
|
|
|
|
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
|
|
|
|
|
|
this->setFixedSize(this->sizeHint());
|
|
|
|
|
|
|
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(close()));
|
|
|
|
|
connect(m_ui->buttonBox, SIGNAL(accepted()), SLOT(setupTotp()));
|
2017-11-20 13:01:22 -05:00
|
|
|
|
connect(m_ui->radioDefault, SIGNAL(toggled(bool)), SLOT(toggleDefault(bool)));
|
|
|
|
|
connect(m_ui->radioSteam, SIGNAL(toggled(bool)), SLOT(toggleSteam(bool)));
|
|
|
|
|
connect(m_ui->radioCustom, SIGNAL(toggled(bool)), SLOT(toggleCustom(bool)));
|
2017-04-13 06:05:36 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SetupTotpDialog::setupTotp()
|
|
|
|
|
{
|
|
|
|
|
quint8 digits;
|
|
|
|
|
|
2017-11-20 13:01:22 -05:00
|
|
|
|
if (m_ui->radioSteam->isChecked()) {
|
2017-11-20 19:25:09 -05:00
|
|
|
|
digits = Totp::ENCODER_STEAM;
|
2017-11-20 13:01:22 -05:00
|
|
|
|
} else if (m_ui->radio8Digits->isChecked()) {
|
2017-04-13 06:05:36 -04:00
|
|
|
|
digits = 8;
|
|
|
|
|
} else {
|
|
|
|
|
digits = 6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
quint8 step = m_ui->stepSpinBox->value();
|
2017-11-20 19:25:09 -05:00
|
|
|
|
QString seed = Totp::parseOtpString(m_ui->seedEdit->text(), digits, step);
|
2017-04-13 06:05:36 -04:00
|
|
|
|
m_entry->setTotp(seed, step, digits);
|
|
|
|
|
emit m_parent->entrySelectionChanged();
|
|
|
|
|
close();
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-20 13:01:22 -05:00
|
|
|
|
void SetupTotpDialog::toggleDefault(bool status)
|
|
|
|
|
{
|
|
|
|
|
if (status) {
|
2017-11-20 19:25:09 -05:00
|
|
|
|
setStep(Totp::defaultStep);
|
|
|
|
|
setDigits(Totp::defaultDigits);
|
2017-11-20 13:01:22 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetupTotpDialog::toggleSteam(bool status)
|
|
|
|
|
{
|
|
|
|
|
if (status) {
|
2017-11-20 19:25:09 -05:00
|
|
|
|
setStep(Totp::defaultStep);
|
|
|
|
|
setDigits(Totp::ENCODER_STEAM);
|
2017-11-20 13:01:22 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-13 06:05:36 -04:00
|
|
|
|
void SetupTotpDialog::toggleCustom(bool status)
|
|
|
|
|
{
|
|
|
|
|
m_ui->digitsLabel->setEnabled(status);
|
|
|
|
|
m_ui->radio6Digits->setEnabled(status);
|
|
|
|
|
m_ui->radio8Digits->setEnabled(status);
|
|
|
|
|
|
|
|
|
|
m_ui->stepLabel->setEnabled(status);
|
|
|
|
|
m_ui->stepSpinBox->setEnabled(status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SetupTotpDialog::setSeed(QString value)
|
|
|
|
|
{
|
|
|
|
|
m_ui->seedEdit->setText(value);
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-20 13:01:22 -05:00
|
|
|
|
void SetupTotpDialog::setSettings(quint8 digits) {
|
|
|
|
|
quint8 step = m_ui->stepSpinBox->value();
|
|
|
|
|
|
2017-11-20 19:25:09 -05:00
|
|
|
|
bool isDefault = ((step == Totp::defaultStep) &&
|
|
|
|
|
(digits == Totp::defaultDigits));
|
|
|
|
|
bool isSteam = (digits == Totp::ENCODER_STEAM);
|
2017-11-20 13:01:22 -05:00
|
|
|
|
|
|
|
|
|
if (isSteam) {
|
|
|
|
|
m_ui->radioSteam->setChecked(true);
|
|
|
|
|
} else if (isDefault) {
|
|
|
|
|
m_ui->radioDefault->setChecked(true);
|
|
|
|
|
} else {
|
|
|
|
|
m_ui->radioCustom->setChecked(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-13 06:05:36 -04:00
|
|
|
|
void SetupTotpDialog::setStep(quint8 step)
|
|
|
|
|
{
|
|
|
|
|
m_ui->stepSpinBox->setValue(step);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetupTotpDialog::setDigits(quint8 digits)
|
|
|
|
|
{
|
|
|
|
|
if (digits == 8) {
|
|
|
|
|
m_ui->radio8Digits->setChecked(true);
|
|
|
|
|
m_ui->radio6Digits->setChecked(false);
|
|
|
|
|
} else {
|
|
|
|
|
m_ui->radio6Digits->setChecked(true);
|
|
|
|
|
m_ui->radio8Digits->setChecked(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetupTotpDialog::~SetupTotpDialog()
|
|
|
|
|
{
|
|
|
|
|
}
|