2019-08-14 14:54:46 +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/>.
|
|
|
|
*/
|
|
|
|
|
2019-03-29 14:54:34 +00:00
|
|
|
#ifndef CORE_ACCOUNT_H
|
|
|
|
#define CORE_ACCOUNT_H
|
|
|
|
|
2019-10-16 19:38:35 +00:00
|
|
|
#include <QObject>
|
|
|
|
#include <QCryptographicHash>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QMimeDatabase>
|
|
|
|
#include <QStandardPaths>
|
|
|
|
#include <QDir>
|
2020-05-21 15:42:40 +00:00
|
|
|
#include <QTimer>
|
2019-10-16 19:38:35 +00:00
|
|
|
|
2019-04-03 21:23:51 +00:00
|
|
|
#include <map>
|
2019-04-06 10:14:32 +00:00
|
|
|
#include <set>
|
2019-03-29 14:54:34 +00:00
|
|
|
|
2019-06-28 15:15:30 +00:00
|
|
|
#include <QXmppRosterManager.h>
|
|
|
|
#include <QXmppCarbonManager.h>
|
2019-11-12 13:38:01 +00:00
|
|
|
#include <QXmppDiscoveryManager.h>
|
2019-06-28 15:15:30 +00:00
|
|
|
#include <QXmppMamManager.h>
|
2019-07-11 08:51:52 +00:00
|
|
|
#include <QXmppMucManager.h>
|
2019-06-28 15:15:30 +00:00
|
|
|
#include <QXmppClient.h>
|
2019-07-11 08:51:52 +00:00
|
|
|
#include <QXmppBookmarkManager.h>
|
|
|
|
#include <QXmppBookmarkSet.h>
|
2019-11-09 14:04:27 +00:00
|
|
|
#include <QXmppUploadRequestManager.h>
|
2019-10-15 19:25:40 +00:00
|
|
|
#include <QXmppVCardIq.h>
|
|
|
|
#include <QXmppVCardManager.h>
|
2020-03-27 20:59:30 +00:00
|
|
|
#include <QXmppMessageReceiptManager.h>
|
|
|
|
|
2021-05-11 17:29:08 +00:00
|
|
|
#include "shared/shared.h"
|
2019-04-17 20:08:56 +00:00
|
|
|
#include "contact.h"
|
2019-08-21 09:35:07 +00:00
|
|
|
#include "conference.h"
|
2019-11-09 14:04:27 +00:00
|
|
|
#include "networkaccess.h"
|
2019-03-29 14:54:34 +00:00
|
|
|
|
2020-04-28 20:35:52 +00:00
|
|
|
#include "handlers/messagehandler.h"
|
2020-06-14 21:23:43 +00:00
|
|
|
#include "handlers/rosterhandler.h"
|
2020-04-28 20:35:52 +00:00
|
|
|
|
2019-03-29 14:54:34 +00:00
|
|
|
namespace Core
|
|
|
|
{
|
|
|
|
|
|
|
|
class Account : public QObject
|
|
|
|
{
|
2019-03-31 21:05:09 +00:00
|
|
|
Q_OBJECT
|
2020-04-28 20:35:52 +00:00
|
|
|
friend class MessageHandler;
|
2020-06-14 21:23:43 +00:00
|
|
|
friend class RosterHandler;
|
2019-03-29 14:54:34 +00:00
|
|
|
public:
|
2020-04-04 16:40:32 +00:00
|
|
|
Account(
|
|
|
|
const QString& p_login,
|
|
|
|
const QString& p_server,
|
|
|
|
const QString& p_password,
|
|
|
|
const QString& p_name,
|
|
|
|
NetworkAccess* p_net,
|
|
|
|
QObject* parent = 0);
|
2019-03-29 14:54:34 +00:00
|
|
|
~Account();
|
|
|
|
|
2019-03-31 21:05:09 +00:00
|
|
|
Shared::ConnectionState getState() const;
|
|
|
|
QString getName() const;
|
2019-04-02 21:58:43 +00:00
|
|
|
QString getLogin() const;
|
|
|
|
QString getServer() const;
|
|
|
|
QString getPassword() const;
|
2019-04-07 20:14:15 +00:00
|
|
|
QString getResource() const;
|
2019-10-16 19:38:35 +00:00
|
|
|
QString getAvatarPath() const;
|
2019-04-07 20:14:15 +00:00
|
|
|
Shared::Availability getAvailability() const;
|
2020-04-04 16:40:32 +00:00
|
|
|
Shared::AccountPassword getPasswordType() const;
|
2019-04-07 20:14:15 +00:00
|
|
|
|
|
|
|
void setName(const QString& p_name);
|
|
|
|
void setLogin(const QString& p_login);
|
|
|
|
void setServer(const QString& p_server);
|
|
|
|
void setPassword(const QString& p_password);
|
|
|
|
void setResource(const QString& p_resource);
|
|
|
|
void setAvailability(Shared::Availability avail);
|
2020-04-04 16:40:32 +00:00
|
|
|
void setPasswordType(Shared::AccountPassword pt);
|
2019-04-09 22:01:25 +00:00
|
|
|
QString getFullJid() const;
|
2020-04-28 20:35:52 +00:00
|
|
|
void sendMessage(const Shared::Message& data);
|
2019-04-21 19:17:04 +00:00
|
|
|
void requestArchive(const QString& jid, int count, const QString& before);
|
2019-06-12 17:18:18 +00:00
|
|
|
void subscribeToContact(const QString& jid, const QString& reason);
|
|
|
|
void unsubscribeFromContact(const QString& jid, const QString& reason);
|
2019-06-14 16:36:04 +00:00
|
|
|
void removeContactRequest(const QString& jid);
|
|
|
|
void addContactRequest(const QString& jid, const QString& name, const QSet<QString>& groups);
|
2019-09-28 14:30:16 +00:00
|
|
|
void addContactToGroupRequest(const QString& jid, const QString& groupName);
|
|
|
|
void removeContactFromGroupRequest(const QString& jid, const QString& groupName);
|
2019-10-01 08:47:40 +00:00
|
|
|
void renameContactRequest(const QString& jid, const QString& newName);
|
2021-04-28 20:26:19 +00:00
|
|
|
void requestChangeMessage(const QString& jid, const QString& messageId, const QMap<QString, QVariant>& data);
|
2019-03-31 21:05:09 +00:00
|
|
|
|
2019-08-29 14:19:35 +00:00
|
|
|
void setRoomJoined(const QString& jid, bool joined);
|
|
|
|
void setRoomAutoJoin(const QString& jid, bool joined);
|
2019-09-03 20:28:58 +00:00
|
|
|
void removeRoomRequest(const QString& jid);
|
2019-09-04 16:38:52 +00:00
|
|
|
void addRoomRequest(const QString& jid, const QString& nick, const QString& password, bool autoJoin);
|
2019-10-24 09:42:38 +00:00
|
|
|
void uploadVCard(const Shared::VCard& card);
|
2021-05-22 22:03:14 +00:00
|
|
|
void resendMessage(const QString& jid, const QString& id);
|
2019-08-29 14:19:35 +00:00
|
|
|
|
2019-12-30 20:22:04 +00:00
|
|
|
public slots:
|
2020-05-21 15:42:40 +00:00
|
|
|
void connect();
|
|
|
|
void disconnect();
|
|
|
|
void reconnect();
|
2019-12-30 20:22:04 +00:00
|
|
|
void requestVCard(const QString& jid);
|
|
|
|
|
2019-03-31 21:05:09 +00:00
|
|
|
signals:
|
2019-10-16 19:38:35 +00:00
|
|
|
void changed(const QMap<QString, QVariant>& data);
|
2020-04-03 22:28:15 +00:00
|
|
|
void connectionStateChanged(Shared::ConnectionState);
|
|
|
|
void availabilityChanged(Shared::Availability);
|
2019-04-03 21:23:51 +00:00
|
|
|
void addGroup(const QString& name);
|
|
|
|
void removeGroup(const QString& name);
|
2019-07-11 08:51:52 +00:00
|
|
|
void addRoom(const QString& jid, const QMap<QString, QVariant>& data);
|
|
|
|
void changeRoom(const QString& jid, const QMap<QString, QVariant>& data);
|
|
|
|
void removeRoom(const QString& jid);
|
2019-04-07 20:14:15 +00:00
|
|
|
void addContact(const QString& jid, const QString& group, const QMap<QString, QVariant>& data);
|
2019-04-06 10:14:32 +00:00
|
|
|
void removeContact(const QString& jid);
|
|
|
|
void removeContact(const QString& jid, const QString& group);
|
2019-04-07 20:14:15 +00:00
|
|
|
void changeContact(const QString& jid, const QMap<QString, QVariant>& data);
|
2019-04-07 14:02:41 +00:00
|
|
|
void addPresence(const QString& jid, const QString& name, const QMap<QString, QVariant>& data);
|
|
|
|
void removePresence(const QString& jid, const QString& name);
|
2019-04-11 14:58:59 +00:00
|
|
|
void message(const Shared::Message& data);
|
2020-03-25 15:28:36 +00:00
|
|
|
void changeMessage(const QString& jid, const QString& id, const QMap<QString, QVariant>& data);
|
2020-08-21 20:57:48 +00:00
|
|
|
void responseArchive(const QString& jid, const std::list<Shared::Message>& list, bool last);
|
2019-05-24 14:46:34 +00:00
|
|
|
void error(const QString& text);
|
2019-09-01 19:46:12 +00:00
|
|
|
void addRoomParticipant(const QString& jid, const QString& nickName, const QMap<QString, QVariant>& data);
|
|
|
|
void changeRoomParticipant(const QString& jid, const QString& nickName, const QMap<QString, QVariant>& data);
|
|
|
|
void removeRoomParticipant(const QString& jid, const QString& nickName);
|
2019-10-19 19:34:25 +00:00
|
|
|
void receivedVCard(const QString& jid, const Shared::VCard& card);
|
2019-11-09 14:04:27 +00:00
|
|
|
void uploadFile(const QFileInfo& file, const QUrl& set, const QUrl& get, QMap<QString, QString> headers);
|
2021-04-18 12:49:20 +00:00
|
|
|
void uploadFileError(const QString& jid, const QString& messageId, const QString& error);
|
2019-03-31 21:05:09 +00:00
|
|
|
|
2019-03-29 14:54:34 +00:00
|
|
|
private:
|
2019-03-30 20:13:13 +00:00
|
|
|
QString name;
|
2020-06-20 22:26:30 +00:00
|
|
|
std::map<QString, QString> archiveQueries;
|
2019-03-29 14:54:34 +00:00
|
|
|
QXmppClient client;
|
2019-04-07 20:14:15 +00:00
|
|
|
QXmppConfiguration config;
|
|
|
|
QXmppPresence presence;
|
2019-03-31 21:05:09 +00:00
|
|
|
Shared::ConnectionState state;
|
2019-04-12 15:22:10 +00:00
|
|
|
QXmppCarbonManager* cm;
|
2019-04-13 20:38:20 +00:00
|
|
|
QXmppMamManager* am;
|
2019-07-11 08:51:52 +00:00
|
|
|
QXmppMucManager* mm;
|
|
|
|
QXmppBookmarkManager* bm;
|
2019-11-02 20:50:25 +00:00
|
|
|
QXmppRosterManager* rm;
|
|
|
|
QXmppVCardManager* vm;
|
2019-11-09 14:04:27 +00:00
|
|
|
QXmppUploadRequestManager* um;
|
2019-11-12 13:38:01 +00:00
|
|
|
QXmppDiscoveryManager* dm;
|
2020-03-27 20:59:30 +00:00
|
|
|
QXmppMessageReceiptManager* rcpm;
|
2020-05-21 15:42:40 +00:00
|
|
|
bool reconnectScheduled;
|
|
|
|
QTimer* reconnectTimer;
|
2019-03-31 21:05:09 +00:00
|
|
|
|
2019-10-15 19:25:40 +00:00
|
|
|
std::set<QString> pendingVCardRequests;
|
2019-06-18 15:08:03 +00:00
|
|
|
|
2019-10-16 19:38:35 +00:00
|
|
|
QString avatarHash;
|
|
|
|
QString avatarType;
|
|
|
|
bool ownVCardRequestInProgress;
|
2019-11-09 14:04:27 +00:00
|
|
|
NetworkAccess* network;
|
2020-04-04 16:40:32 +00:00
|
|
|
Shared::AccountPassword passwordType;
|
2019-06-18 15:08:03 +00:00
|
|
|
|
2020-04-28 20:35:52 +00:00
|
|
|
MessageHandler* mh;
|
2020-06-14 21:23:43 +00:00
|
|
|
RosterHandler* rh;
|
2020-04-28 20:35:52 +00:00
|
|
|
|
2019-03-31 21:05:09 +00:00
|
|
|
private slots:
|
2020-05-21 15:42:40 +00:00
|
|
|
void onClientStateChange(QXmppClient::State state);
|
2019-05-15 17:36:37 +00:00
|
|
|
void onClientError(QXmppClient::Error err);
|
2019-04-19 09:12:12 +00:00
|
|
|
|
2019-04-07 14:02:41 +00:00
|
|
|
void onPresenceReceived(const QXmppPresence& presence);
|
2020-06-14 21:23:43 +00:00
|
|
|
void onContactNeedHistory(const QString& before, const QString& after, const QDateTime& at);
|
|
|
|
|
2019-04-13 20:38:20 +00:00
|
|
|
void onMamMessageReceived(const QString& bareJid, const QXmppMessage& message);
|
|
|
|
void onMamResultsReceived(const QString &queryId, const QXmppResultSetReply &resultSetReply, bool complete);
|
2020-06-14 21:23:43 +00:00
|
|
|
|
2019-06-28 15:15:30 +00:00
|
|
|
void onMamLog(QXmppLogger::MessageType type, const QString &msg);
|
2019-10-15 19:25:40 +00:00
|
|
|
|
|
|
|
void onVCardReceived(const QXmppVCardIq& card);
|
2019-10-16 19:38:35 +00:00
|
|
|
void onOwnVCardReceived(const QXmppVCardIq& card);
|
2020-04-28 20:35:52 +00:00
|
|
|
|
2019-11-12 13:38:01 +00:00
|
|
|
void onDiscoveryItemsReceived (const QXmppDiscoveryIq& items);
|
|
|
|
void onDiscoveryInfoReceived (const QXmppDiscoveryIq& info);
|
2020-08-21 20:57:48 +00:00
|
|
|
void onContactHistoryResponse(const std::list<Shared::Message>& list, bool last);
|
2019-04-06 10:14:32 +00:00
|
|
|
|
|
|
|
private:
|
2020-08-07 23:33:03 +00:00
|
|
|
void handleDisconnection();
|
2020-06-20 22:26:30 +00:00
|
|
|
void onReconnectTimer();
|
2019-03-29 14:54:34 +00:00
|
|
|
};
|
|
|
|
|
2019-11-05 18:55:21 +00:00
|
|
|
void initializeVCard(Shared::VCard& vCard, const QXmppVCardIq& card);
|
|
|
|
void initializeQXmppVCard(QXmppVCardIq& card, const Shared::VCard& vCard);
|
2019-03-29 14:54:34 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 08:51:52 +00:00
|
|
|
|
2019-03-29 14:54:34 +00:00
|
|
|
#endif // CORE_ACCOUNT_H
|