squawk/ui/widgets/info/omemo/omemo.cpp

122 lines
4.3 KiB
C++
Raw Normal View History

// Squawk messenger.
// Copyright (C) 2019 Yury Gubich <blue@macaw.me>
//
// 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 3 of the License, or
// (at your option) any later version.
//
// 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 "omemo.h"
#include "ui_omemo.h"
2023-01-07 14:30:22 +00:00
#include <random>
constexpr uint8_t fingerprintLength = 32;
2023-01-07 14:30:22 +00:00
UI::Omemo::Omemo(QWidget* parent):
2023-01-03 15:27:03 +00:00
QWidget(parent),
m_ui(new Ui::Omemo()),
2023-01-07 14:30:22 +00:00
keysDelegate(),
unusedKeysDelegate(),
2023-01-03 15:27:03 +00:00
keysModel(),
2023-01-15 18:17:38 +00:00
unusedKeysModel(),
contextMenu(new QMenu())
2023-01-03 15:27:03 +00:00
{
m_ui->setupUi(this);
2023-01-07 14:30:22 +00:00
m_ui->keysView->setItemDelegate(&keysDelegate);
2023-01-03 15:27:03 +00:00
m_ui->keysView->setModel(&keysModel);
2023-01-07 14:30:22 +00:00
m_ui->unusedKeysView->setItemDelegate(&unusedKeysDelegate);
2023-01-03 15:27:03 +00:00
m_ui->unusedKeysView->setModel(&unusedKeysModel);
2023-01-15 18:17:38 +00:00
m_ui->keysView->setContextMenuPolicy(Qt::CustomContextMenu);
connect(m_ui->keysView, &QWidget::customContextMenuRequested, this, &Omemo::onActiveKeysContextMenu);
2023-01-03 15:27:03 +00:00
}
UI::Omemo::~Omemo()
2023-01-03 15:27:03 +00:00
{
2023-01-15 18:17:38 +00:00
contextMenu->deleteLater();
2023-01-03 15:27:03 +00:00
}
void UI::Omemo::generateMockData() {
2023-01-07 14:30:22 +00:00
std::random_device rd;
std::uniform_int_distribution<char> dist(CHAR_MIN, CHAR_MAX);
2023-01-03 15:27:03 +00:00
for (int i = 0; i < 5; ++i) {
2023-01-07 14:30:22 +00:00
QByteArray fp(fingerprintLength, 0);
for (int i = 0; i < fingerprintLength; ++i) {
fp[i] = dist(rd);
}
2023-01-03 15:27:03 +00:00
Shared::KeyInfo info;
info.id = i;
if (i % 3 == 0)
info.label = QString("test_") + std::to_string(i).c_str();
2023-01-07 14:30:22 +00:00
info.fingerPrint = fp;
if (i % 2 == 0)
info.lastInteraction = QDateTime::currentDateTime();
2023-01-03 15:27:03 +00:00
keysModel.addKey(info);
}
}
2023-01-15 18:17:38 +00:00
void UI::Omemo::setData(const std::list<Shared::KeyInfo>& keys) {
keysModel.clear();
unusedKeysModel.clear();
for (const Shared::KeyInfo& key : keys) {
keysModel.addKey(key);
}
}
const QString UI::Omemo::title() const {
return m_ui->OMEMOHeading->text();}
void UI::Omemo::onActiveKeysContextMenu(const QPoint& pos) {
2023-01-15 18:17:38 +00:00
contextMenu->clear();
QModelIndex index = m_ui->keysView->indexAt(pos);
if (index.isValid()) {
2023-02-01 15:56:00 +00:00
QVariant dirtyV = index.data(Models::Keys::Dirty);
2023-01-15 18:17:38 +00:00
if (dirtyV.isValid() && dirtyV.toBool()) {
QAction* rev = contextMenu->addAction(Shared::icon("clean"), tr("Revert changes"));
2023-02-01 15:56:00 +00:00
connect(rev, &QAction::triggered, std::bind(&Models::Keys::revertKey, &keysModel, index.row()));
2023-01-15 18:17:38 +00:00
}
2023-02-01 15:56:00 +00:00
QVariant levelV = index.data(Models::Keys::TrustLevel);
2023-01-15 18:17:38 +00:00
if (levelV.isValid()) {
Shared::TrustLevel level = static_cast<Shared::TrustLevel>(levelV.toUInt());
if (level == Shared::TrustLevel::undecided ||
level == Shared::TrustLevel::automaticallyDistrusted ||
level == Shared::TrustLevel::manuallyDistrusted
) {
QAction* rev = contextMenu->addAction(Shared::icon("favorite"), tr("Trust"));
connect(rev, &QAction::triggered,
2023-02-01 15:56:00 +00:00
std::bind(&Models::Keys::setTrustLevel, &keysModel,
2023-01-15 18:17:38 +00:00
index.row(), Shared::TrustLevel::manuallyTrusted
)
);
}
if (level == Shared::TrustLevel::undecided ||
level == Shared::TrustLevel::automaticallyTrusted ||
level == Shared::TrustLevel::manuallyTrusted ||
level == Shared::TrustLevel::authenticated
) {
QAction* rev = contextMenu->addAction(Shared::icon("unfavorite"), tr("Distrust"));
connect(rev, &QAction::triggered,
2023-02-01 15:56:00 +00:00
std::bind(&Models::Keys::setTrustLevel, &keysModel,
2023-01-15 18:17:38 +00:00
index.row(), Shared::TrustLevel::manuallyDistrusted
)
);
}
}
}
contextMenu->popup(m_ui->keysView->viewport()->mapToGlobal(pos));
}