forked from blue/squawk
249 lines
8.8 KiB
C++
249 lines
8.8 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/>.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QCryptographicHash>
|
|
#include <QFile>
|
|
#include <QMimeDatabase>
|
|
#include <QStandardPaths>
|
|
#include <QDir>
|
|
#include <QTimer>
|
|
|
|
#include <map>
|
|
#include <set>
|
|
#include <list>
|
|
|
|
#include <QXmppRosterManager.h>
|
|
#if (QXMPP_VERSION) >= QT_VERSION_CHECK(1, 5, 0)
|
|
#include <QXmppCarbonManagerV2.h>
|
|
#else
|
|
#include <QXmppCarbonManager.h>
|
|
#endif
|
|
#include <QXmppDiscoveryManager.h>
|
|
#include <QXmppMamManager.h>
|
|
#include <QXmppMucManager.h>
|
|
#include <QXmppClient.h>
|
|
#include <QXmppBookmarkManager.h>
|
|
#include <QXmppBookmarkSet.h>
|
|
#include <QXmppUploadRequestManager.h>
|
|
#include <QXmppVCardManager.h>
|
|
#include <QXmppMessageReceiptManager.h>
|
|
#include <QXmppPubSubManager.h>
|
|
|
|
#include <shared/shared.h>
|
|
#include <shared/identity.h>
|
|
#include <shared/info.h>
|
|
#include <shared/clientid.h>
|
|
#include "contact.h"
|
|
#include "conference.h"
|
|
#include <core/components/networkaccess.h>
|
|
#include <core/delayManager/manager.h>
|
|
|
|
#include "handlers/messagehandler.h"
|
|
#include "handlers/rosterhandler.h"
|
|
#include "handlers/vcardhandler.h"
|
|
#include "handlers/discoveryhandler.h"
|
|
|
|
#if (QXMPP_VERSION) >= QT_VERSION_CHECK(1, 5, 0)
|
|
#include <QXmppTrustManager.h>
|
|
#ifdef WITH_OMEMO
|
|
#include <QXmppOmemoManager.h>
|
|
#include "handlers/omemohandler.h"
|
|
#endif
|
|
#include "handlers/trusthandler.h"
|
|
#endif
|
|
|
|
namespace Core {
|
|
|
|
class Account : public QObject {
|
|
Q_OBJECT
|
|
friend class MessageHandler;
|
|
friend class RosterHandler;
|
|
friend class VCardHandler;
|
|
friend class DiscoveryHandler;
|
|
#ifdef WITH_OMEMO
|
|
friend class OmemoHandler;
|
|
friend class TrustHandler;
|
|
#endif
|
|
public:
|
|
enum class Error {
|
|
authentication,
|
|
other,
|
|
none
|
|
};
|
|
|
|
Account(
|
|
const QString& p_login,
|
|
const QString& p_server,
|
|
const QString& p_password,
|
|
const QString& p_name,
|
|
bool p_active,
|
|
NetworkAccess* p_net,
|
|
QObject* parent = 0);
|
|
~Account();
|
|
|
|
Shared::ConnectionState getState() const;
|
|
QString getName() const;
|
|
QString getLogin() const;
|
|
QString getServer() const;
|
|
QString getPassword() const;
|
|
QString getResource() const;
|
|
QString getAvatarPath() const;
|
|
QString getBareJid() const;
|
|
QString getFullJid() const;
|
|
Shared::Availability getAvailability() const;
|
|
Shared::AccountPassword getPasswordType() const;
|
|
Error getLastError() const;
|
|
bool getActive() const;
|
|
|
|
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);
|
|
void setPasswordType(Shared::AccountPassword pt);
|
|
void sendMessage(const Shared::Message& data);
|
|
void setActive(bool p_active);
|
|
void requestArchive(const QString& jid, int count, const QString& before);
|
|
void subscribeToContact(const QString& jid, const QString& reason);
|
|
void unsubscribeFromContact(const QString& jid, const QString& reason);
|
|
void removeContactRequest(const QString& jid);
|
|
void addContactRequest(const QString& jid, const QString& name, const QSet<QString>& groups);
|
|
void addContactToGroupRequest(const QString& jid, const QString& groupName);
|
|
void removeContactFromGroupRequest(const QString& jid, const QString& groupName);
|
|
void renameContactRequest(const QString& jid, const QString& newName);
|
|
void requestChangeMessage(const QString& jid, const QString& messageId, const QMap<QString, QVariant>& data);
|
|
void setContactEncryption(const QString& jid, Shared::EncryptionProtocol value);
|
|
|
|
void setRoomJoined(const QString& jid, bool joined);
|
|
void setRoomAutoJoin(const QString& jid, bool joined);
|
|
void removeRoomRequest(const QString& jid);
|
|
void addRoomRequest(const QString& jid, const QString& nick, const QString& password, bool autoJoin);
|
|
void updateInfo(const Shared::Info& info);
|
|
void resendMessage(const QString& jid, const QString& id);
|
|
void replaceMessage(const QString& originalId, const Shared::Message& data);
|
|
void invalidatePassword();
|
|
|
|
void discoverInfo(const QString& address, const QString& node);
|
|
|
|
public slots:
|
|
void connect();
|
|
void disconnect();
|
|
void reconnect();
|
|
void requestInfo(const QString& jid);
|
|
|
|
signals:
|
|
void changed(const QMap<QString, QVariant>& data);
|
|
void connectionStateChanged(Shared::ConnectionState);
|
|
void availabilityChanged(Shared::Availability);
|
|
void addGroup(const QString& name);
|
|
void removeGroup(const QString& name);
|
|
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);
|
|
void addContact(const QString& jid, const QString& group, const QMap<QString, QVariant>& data);
|
|
void removeContact(const QString& jid);
|
|
void removeContact(const QString& jid, const QString& group);
|
|
void changeContact(const QString& jid, const QMap<QString, QVariant>& data);
|
|
void addPresence(const QString& jid, const QString& name, const QMap<QString, QVariant>& data);
|
|
void removePresence(const QString& jid, const QString& name);
|
|
void message(const Shared::Message& data);
|
|
void changeMessage(const QString& jid, const QString& id, const QMap<QString, QVariant>& data);
|
|
void responseArchive(const QString& jid, const std::list<Shared::Message>& list, bool last);
|
|
void error(const QString& text);
|
|
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);
|
|
void infoReady(const Shared::Info& info);
|
|
void uploadFile(const QFileInfo& file, const QUrl& set, const QUrl& get, QMap<QString, QString> headers);
|
|
void uploadFileError(const QString& jid, const QString& messageId, const QString& error);
|
|
void needPassword();
|
|
void infoDiscovered(const QString& address, const QString& node, const std::set<Shared::Identity>& identities, const std::set<QString>& features);
|
|
void pepSupportChanged(Shared::Support support);
|
|
|
|
private:
|
|
QString name;
|
|
std::map<QString, QString> archiveQueries;
|
|
QXmppClient client;
|
|
QXmppConfiguration config;
|
|
QXmppPresence presence;
|
|
Shared::ConnectionState state;
|
|
|
|
MessageHandler* mh;
|
|
RosterHandler* rh;
|
|
VCardHandler* vh;
|
|
DiscoveryHandler* dh;
|
|
#if (QXMPP_VERSION) >= QT_VERSION_CHECK(1, 5, 0)
|
|
TrustHandler* th;
|
|
#endif
|
|
#ifdef WITH_OMEMO
|
|
OmemoHandler* oh;
|
|
|
|
QXmppOmemoManager* om;
|
|
#endif
|
|
#if (QXMPP_VERSION) >= QT_VERSION_CHECK(1, 5, 0)
|
|
QXmppTrustManager* tm;
|
|
QXmppCarbonManagerV2* cm;
|
|
QXmppPubSubManager* psm;
|
|
#else
|
|
QXmppCarbonManager* cm;
|
|
#endif
|
|
QXmppMamManager* am;
|
|
QXmppMucManager* mm;
|
|
QXmppBookmarkManager* bm;
|
|
QXmppRosterManager* rm;
|
|
QXmppVCardManager* vm;
|
|
QXmppUploadRequestManager* um;
|
|
QXmppDiscoveryManager* dm;
|
|
QXmppMessageReceiptManager* rcpm;
|
|
bool reconnectScheduled;
|
|
QTimer* reconnectTimer;
|
|
|
|
NetworkAccess* network;
|
|
DelayManager::Manager* delay;
|
|
Shared::AccountPassword passwordType;
|
|
Error lastError;
|
|
Shared::Support pepSupport;
|
|
bool active;
|
|
bool notReadyPassword;
|
|
bool loadingOmemo;
|
|
|
|
private slots:
|
|
void onClientStateChange(QXmppClient::State state);
|
|
void onClientError(QXmppClient::Error err);
|
|
|
|
void onPresenceReceived(const QXmppPresence& presence);
|
|
void onContactNeedHistory(const QString& before, const QString& after, const QDateTime& at);
|
|
|
|
void onMamMessageReceived(const QString& bareJid, const QXmppMessage& message);
|
|
void onMamResultsReceived(const QString &queryId, const QXmppResultSetReply &resultSetReply, bool complete);
|
|
|
|
void onMamLog(QXmppLogger::MessageType type, const QString &msg);
|
|
|
|
void onContactHistoryResponse(const std::list<Shared::Message>& list, bool last);
|
|
|
|
private:
|
|
void handleDisconnection();
|
|
void onReconnectTimer();
|
|
void setPepSupport(Shared::Support support);
|
|
void runDiscoveryService();
|
|
};
|
|
}
|