squawk/core/handlers/messagehandler.h

88 lines
4.1 KiB
C
Raw Permalink Normal View History

2020-04-28 20:35:52 +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/>.
*/
#pragma once
2020-04-28 20:35:52 +00:00
#include <QObject>
#include <deque>
#include <map>
#include <functional>
2023-11-14 23:23:39 +00:00
#include <optional>
2020-04-28 20:35:52 +00:00
#include <QXmppMessage.h>
#include <QXmppHttpUploadIq.h>
#ifdef WITH_OMEMO
#include <QXmppE2eeExtension.h>
#endif
2020-04-28 20:35:52 +00:00
2020-06-14 21:23:43 +00:00
#include <shared/message.h>
#include <shared/messageinfo.h>
2022-02-19 18:31:49 +00:00
#include <shared/pathcheck.h>
2020-04-28 20:35:52 +00:00
namespace Core {
class Account;
class MessageHandler : public QObject {
2020-04-28 20:35:52 +00:00
Q_OBJECT
public:
MessageHandler(Account* account);
public:
2022-03-28 20:25:33 +00:00
void sendMessage(const Shared::Message& data, bool newMessage = true, QString originalId = "");
2020-04-28 20:35:52 +00:00
void initializeMessage(Shared::Message& target, const QXmppMessage& source, bool outgoing = false, bool forwarded = false, bool guessing = false) const;
void resendMessage(const QString& jid, const QString& id);
2020-04-28 20:35:52 +00:00
public slots:
void onMessageReceived(const QXmppMessage& message);
#if (QXMPP_VERSION) < QT_VERSION_CHECK(1, 5, 0)
2020-04-28 20:35:52 +00:00
void onCarbonMessageReceived(const QXmppMessage& message);
void onCarbonMessageSent(const QXmppMessage& message);
#endif
2020-04-28 20:35:52 +00:00
void onReceiptReceived(const QString& jid, const QString& id);
void onUploadSlotReceived(const QXmppHttpUploadSlotIq& slot);
void onUploadSlotRequestFailed(const QXmppHttpUploadRequestIq& request);
void onDownloadFileComplete(const std::list<Shared::MessageInfo>& msgs, const QString& path);
void onUploadFileComplete(const std::list<Shared::MessageInfo>& msgs, const QString& url, const QString& path);
void onLoadFileError(const std::list<Shared::MessageInfo>& msgs, const QString& path, bool up);
void requestChangeMessage(const QString& jid, const QString& messageId, const QMap<QString, QVariant>& data);
2020-04-28 20:35:52 +00:00
private:
bool handleChatMessage(const QXmppMessage& msg, bool outgoing = false, bool forwarded = false, bool guessing = false);
bool handleGroupMessage(const QXmppMessage& msg, bool outgoing = false, bool forwarded = false, bool guessing = false);
void logMessage(const QXmppMessage& msg, const QString& reason = "Message wasn't handled: ");
void sendMessageWithLocalUploadedFile(Shared::Message msg, const QString& url, bool newMessage = true);
2022-03-28 20:25:33 +00:00
void performSending(Shared::Message data, const QString& originalId, bool newMessage = true);
void prepareUpload(const Shared::Message& data, bool newMessage = true);
void handleUploadError(const QString& jid, const QString& messageId, const QString& errorText);
2022-03-28 20:25:33 +00:00
QXmppMessage createPacket(const Shared::Message& data, const QDateTime& time, const QString& originalId) const;
QMap<QString, QVariant> getChanges(Shared::Message& data, const QDateTime& time, bool newMessage, const QString& originalId) const;
2023-11-14 23:23:39 +00:00
std::optional<Shared::MessageInfo> getOriginalPendingMessageId(const QString& id, bool clear = true);
bool handlePendingMessageError(const QString& id, const QString& errorText);
std::pair<Shared::Message::State, QString> scheduleSending(const Shared::Message& message, const QDateTime& sendTime, const QString& originalId);
2023-11-14 23:23:39 +00:00
bool adjustPendingMessage(const QString& messageId, const QMap<QString, QVariant>& data, bool final);
2020-04-28 20:35:52 +00:00
private:
Account* acc;
std::map<QString, QString> pendingStateMessages; //key is message id, value is JID
2022-03-28 20:25:33 +00:00
std::map<QString, QString> pendingCorrectionMessages; //key is new mesage, value is originalOne
std::deque<std::pair<QString, QString>> uploadingSlotsQueue;
2020-04-28 20:35:52 +00:00
};
}