forked from blue/squawk
77 lines
2.6 KiB
C++
77 lines
2.6 KiB
C++
/*
|
|
* 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_MESSAGEHANDLER_H
|
|
#define CORE_MESSAGEHANDLER_H
|
|
|
|
#include <QObject>
|
|
|
|
#include <deque>
|
|
#include <map>
|
|
|
|
#include <QXmppMessage.h>
|
|
#include <QXmppHttpUploadIq.h>
|
|
|
|
#include <shared/message.h>
|
|
|
|
namespace Core {
|
|
|
|
/**
|
|
* @todo write docs
|
|
*/
|
|
|
|
class Account;
|
|
|
|
class MessageHandler : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MessageHandler(Account* account);
|
|
|
|
public:
|
|
void sendMessage(Shared::Message data);
|
|
void sendMessage(const Shared::Message& data, const QString& path);
|
|
void initializeMessage(Shared::Message& target, const QXmppMessage& source, bool outgoing = false, bool forwarded = false, bool guessing = false) const;
|
|
|
|
public slots:
|
|
void onMessageReceived(const QXmppMessage& message);
|
|
void onCarbonMessageReceived(const QXmppMessage& message);
|
|
void onCarbonMessageSent(const QXmppMessage& message);
|
|
void onReceiptReceived(const QString& jid, const QString& id);
|
|
void onUploadSlotReceived(const QXmppHttpUploadSlotIq& slot);
|
|
void onUploadSlotRequestFailed(const QXmppHttpUploadRequestIq& request);
|
|
void onFileUploaded(const QString& messageId, const QString& url);
|
|
void onFileUploadError(const QString& messageId, const QString& errMsg);
|
|
|
|
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);
|
|
|
|
private:
|
|
Account* acc;
|
|
std::map<QString, QString> pendingStateMessages;
|
|
std::map<QString, Shared::Message> pendingMessages;
|
|
std::deque<std::pair<QString, Shared::Message>> uploadingSlotsQueue;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // CORE_MESSAGEHANDLER_H
|