2022-09-03 11:39:42 +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/>.
|
|
|
|
|
|
|
|
#ifndef CORE_OMEMOHANDLER_H
|
|
|
|
#define CORE_OMEMOHANDLER_H
|
|
|
|
|
|
|
|
#include <QXmppOmemoStorage.h>
|
2022-12-14 23:08:08 +00:00
|
|
|
#include <cache.h>
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(QXmppOmemoStorage::OwnDevice);
|
2022-12-19 15:43:24 +00:00
|
|
|
Q_DECLARE_METATYPE(QXmppOmemoStorage::Device);
|
2022-09-03 11:39:42 +00:00
|
|
|
|
|
|
|
namespace Core {
|
2022-12-14 23:08:08 +00:00
|
|
|
class Account;
|
2022-09-03 11:39:42 +00:00
|
|
|
|
|
|
|
class OmemoHandler : public QXmppOmemoStorage
|
|
|
|
{
|
|
|
|
public:
|
2022-12-28 22:41:59 +00:00
|
|
|
typedef std::pair<QDateTime, QByteArray> SignedPreKeyPair;
|
|
|
|
|
2022-12-14 23:08:08 +00:00
|
|
|
OmemoHandler(Account* account);
|
2022-09-03 11:39:42 +00:00
|
|
|
~OmemoHandler() override;
|
|
|
|
|
2023-01-29 17:26:54 +00:00
|
|
|
QXmppTask<OmemoData> allData() override;
|
2022-09-03 11:39:42 +00:00
|
|
|
|
2023-01-29 17:26:54 +00:00
|
|
|
QXmppTask<void> setOwnDevice(const std::optional<OwnDevice> &device) override;
|
2022-09-03 11:39:42 +00:00
|
|
|
|
2023-01-29 17:26:54 +00:00
|
|
|
QXmppTask<void> addSignedPreKeyPair(uint32_t keyId, const QXmppOmemoStorage::SignedPreKeyPair &keyPair) override;
|
|
|
|
QXmppTask<void> removeSignedPreKeyPair(uint32_t keyId) override;
|
2022-09-03 11:39:42 +00:00
|
|
|
|
2023-01-29 17:26:54 +00:00
|
|
|
QXmppTask<void> addPreKeyPairs(const QHash<uint32_t, QByteArray> &keyPairs) override;
|
|
|
|
QXmppTask<void> removePreKeyPair(uint32_t keyId) override;
|
2022-09-03 11:39:42 +00:00
|
|
|
|
2023-01-29 17:26:54 +00:00
|
|
|
QXmppTask<void> addDevice(const QString &jid, uint32_t deviceId, const Device &device) override;
|
|
|
|
QXmppTask<void> removeDevice(const QString &jid, uint32_t deviceId) override;
|
|
|
|
QXmppTask<void> removeDevices(const QString &jid) override;
|
2022-09-03 11:39:42 +00:00
|
|
|
|
2023-01-29 17:26:54 +00:00
|
|
|
QXmppTask<void> resetAll() override;
|
2022-09-03 11:39:42 +00:00
|
|
|
|
2022-12-26 22:01:01 +00:00
|
|
|
bool hasOwnDevice();
|
|
|
|
|
2022-12-14 23:08:08 +00:00
|
|
|
private:
|
|
|
|
Account* acc;
|
|
|
|
std::optional<OwnDevice> ownDevice;
|
|
|
|
DataBase db;
|
|
|
|
DataBase::Cache<QString, QVariant>* meta;
|
|
|
|
DataBase::Cache<QString, QHash<uint32_t, Device>>* devices;
|
|
|
|
DataBase::Cache<uint32_t, QByteArray>* preKeyPairs;
|
2022-12-28 22:41:59 +00:00
|
|
|
DataBase::Cache<uint32_t, SignedPreKeyPair>* signedPreKeyPairs;
|
2022-09-03 11:39:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2022-12-14 23:08:08 +00:00
|
|
|
|
|
|
|
QDataStream& operator << (QDataStream &out, const QXmppOmemoStorage::Device& device);
|
2022-12-19 15:43:24 +00:00
|
|
|
QDataStream& operator >> (QDataStream &in, QXmppOmemoStorage::Device& device);
|
|
|
|
|
|
|
|
QDataStream& operator << (QDataStream &out, const QXmppOmemoStorage::OwnDevice& device);
|
|
|
|
QDataStream& operator >> (QDataStream &in, QXmppOmemoStorage::OwnDevice& device);
|
2022-12-14 23:08:08 +00:00
|
|
|
|
2022-09-03 11:39:42 +00:00
|
|
|
#endif // CORE_OMEMOHANDLER_H
|