2023-01-01 17:25:51 +00:00
|
|
|
// 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 = 24;
|
|
|
|
|
2023-01-03 15:27:03 +00:00
|
|
|
Omemo::Omemo(QWidget* parent):
|
|
|
|
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(),
|
|
|
|
unusedKeysModel()
|
|
|
|
{
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
|
|
|
generateMockData();
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
Omemo::~Omemo()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void 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;
|
2023-01-11 20:45:38 +00:00
|
|
|
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;
|
2023-01-11 20:45:38 +00:00
|
|
|
if (i % 2 == 0)
|
|
|
|
info.lastInteraction = QDateTime::currentDateTime();
|
|
|
|
|
2023-01-03 15:27:03 +00:00
|
|
|
keysModel.addKey(info);
|
|
|
|
}
|
|
|
|
}
|