2020-08-13 11:15:26 +03:00
|
|
|
/*
|
2020-10-19 20:34:47 +03:00
|
|
|
Copyright (C) 2020 Sebastian J. Wolf and other contributors
|
2020-08-13 11:15:26 +03:00
|
|
|
|
|
|
|
This file is part of Fernschreiber.
|
|
|
|
|
2020-08-13 18:08:14 +03:00
|
|
|
Fernschreiber is free software: you can redistribute it and/or modify
|
2020-08-13 11:15:26 +03:00
|
|
|
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.
|
|
|
|
|
2020-08-13 18:08:14 +03:00
|
|
|
Fernschreiber is distributed in the hope that it will be useful,
|
2020-08-13 11:15:26 +03:00
|
|
|
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 Fernschreiber. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-08-10 15:17:29 +03:00
|
|
|
#ifndef TDLIBWRAPPER_H
|
|
|
|
#define TDLIBWRAPPER_H
|
|
|
|
|
2020-08-10 21:17:13 +03:00
|
|
|
#include <QCoreApplication>
|
2020-08-10 15:17:29 +03:00
|
|
|
#include <td/telegram/td_json_client.h>
|
2020-08-10 21:17:13 +03:00
|
|
|
#include "tdlibreceiver.h"
|
2020-09-15 00:43:21 +03:00
|
|
|
#include "dbusadaptor.h"
|
|
|
|
#include "dbusinterface.h"
|
2020-10-18 19:57:01 +03:00
|
|
|
#include "emojisearchworker.h"
|
2020-11-08 23:13:04 +03:00
|
|
|
#include "appsettings.h"
|
2020-11-23 01:32:00 +03:00
|
|
|
#include "mceinterface.h"
|
2020-08-10 15:17:29 +03:00
|
|
|
|
|
|
|
class TDLibWrapper : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-11-23 01:32:00 +03:00
|
|
|
explicit TDLibWrapper(AppSettings *appSettings, MceInterface *mceInterface, QObject *parent = nullptr);
|
2020-08-10 15:17:29 +03:00
|
|
|
~TDLibWrapper();
|
|
|
|
|
2020-08-13 00:51:09 +03:00
|
|
|
enum AuthorizationState {
|
|
|
|
Closed,
|
|
|
|
Closing,
|
|
|
|
LoggingOut,
|
2020-08-13 11:15:26 +03:00
|
|
|
AuthorizationReady,
|
2020-08-13 00:51:09 +03:00
|
|
|
WaitCode,
|
|
|
|
WaitEncryptionKey,
|
|
|
|
WaitOtherDeviceConfirmation,
|
|
|
|
WaitPassword,
|
|
|
|
WaitPhoneNumber,
|
|
|
|
WaitRegistration,
|
|
|
|
WaitTdlibParameters
|
|
|
|
};
|
2020-08-13 11:15:26 +03:00
|
|
|
Q_ENUM(AuthorizationState)
|
2020-08-13 00:51:09 +03:00
|
|
|
|
2020-08-13 01:20:28 +03:00
|
|
|
enum ConnectionState {
|
|
|
|
Connecting,
|
|
|
|
ConnectingToProxy,
|
2020-08-13 11:15:26 +03:00
|
|
|
ConnectionReady,
|
2020-08-13 01:20:28 +03:00
|
|
|
Updating,
|
|
|
|
WaitingForNetwork
|
|
|
|
};
|
2020-08-13 11:15:26 +03:00
|
|
|
Q_ENUM(ConnectionState)
|
2020-08-13 01:20:28 +03:00
|
|
|
|
2020-10-04 04:27:49 +03:00
|
|
|
enum ChatType {
|
|
|
|
ChatTypeUnknown,
|
|
|
|
ChatTypePrivate,
|
|
|
|
ChatTypeBasicGroup,
|
|
|
|
ChatTypeSupergroup,
|
|
|
|
ChatTypeSecret
|
|
|
|
};
|
|
|
|
Q_ENUM(ChatType)
|
|
|
|
|
|
|
|
enum ChatMemberStatus {
|
|
|
|
ChatMemberStatusUnknown,
|
|
|
|
ChatMemberStatusCreator,
|
|
|
|
ChatMemberStatusAdministrator,
|
|
|
|
ChatMemberStatusMember,
|
|
|
|
ChatMemberStatusRestricted,
|
|
|
|
ChatMemberStatusLeft,
|
|
|
|
ChatMemberStatusBanned
|
|
|
|
};
|
|
|
|
Q_ENUM(ChatMemberStatus)
|
|
|
|
|
2020-11-26 00:09:47 +03:00
|
|
|
enum SecretChatState {
|
|
|
|
SecretChatStateUnknown,
|
|
|
|
SecretChatStateClosed,
|
|
|
|
SecretChatStatePending,
|
|
|
|
SecretChatStateReady,
|
|
|
|
};
|
|
|
|
Q_ENUM(SecretChatState)
|
|
|
|
|
2020-10-04 04:27:49 +03:00
|
|
|
class Group {
|
|
|
|
public:
|
|
|
|
Group(qlonglong id) : groupId(id) { }
|
|
|
|
ChatMemberStatus chatMemberStatus() const;
|
|
|
|
public:
|
|
|
|
const qlonglong groupId;
|
|
|
|
QVariantMap groupInfo;
|
|
|
|
};
|
|
|
|
|
2020-08-12 11:50:01 +03:00
|
|
|
Q_INVOKABLE QString getVersion();
|
2020-08-13 00:51:09 +03:00
|
|
|
Q_INVOKABLE TDLibWrapper::AuthorizationState getAuthorizationState();
|
2020-10-01 01:55:26 +03:00
|
|
|
Q_INVOKABLE QVariantMap getAuthorizationStateData();
|
2020-08-13 01:20:28 +03:00
|
|
|
Q_INVOKABLE TDLibWrapper::ConnectionState getConnectionState();
|
2020-08-14 11:33:42 +03:00
|
|
|
Q_INVOKABLE QVariantMap getUserInformation();
|
2020-08-16 18:38:51 +03:00
|
|
|
Q_INVOKABLE QVariantMap getUserInformation(const QString &userId);
|
2020-11-20 20:30:33 +03:00
|
|
|
Q_INVOKABLE bool hasUserInformation(const QString &userId);
|
2020-11-04 00:21:01 +03:00
|
|
|
Q_INVOKABLE QVariantMap getUserInformationByName(const QString &userName);
|
2020-08-17 00:31:20 +03:00
|
|
|
Q_INVOKABLE QVariantMap getUnreadMessageInformation();
|
|
|
|
Q_INVOKABLE QVariantMap getUnreadChatInformation();
|
2020-10-04 04:27:49 +03:00
|
|
|
Q_INVOKABLE QVariantMap getBasicGroup(qlonglong groupId) const;
|
|
|
|
Q_INVOKABLE QVariantMap getSuperGroup(qlonglong groupId) const;
|
2020-09-15 22:17:44 +03:00
|
|
|
Q_INVOKABLE QVariantMap getChat(const QString &chatId);
|
2020-11-26 00:09:47 +03:00
|
|
|
Q_INVOKABLE QVariantMap getSecretChatFromCache(const QString &secretChatId);
|
2020-11-04 01:39:09 +03:00
|
|
|
Q_INVOKABLE QString getOptionString(const QString &optionName);
|
2020-08-28 12:43:51 +03:00
|
|
|
Q_INVOKABLE void copyFileToDownloads(const QString &filePath);
|
2020-08-28 17:18:33 +03:00
|
|
|
Q_INVOKABLE void openFileOnDevice(const QString &filePath);
|
2020-10-24 02:05:49 +03:00
|
|
|
Q_INVOKABLE void controlScreenSaver(bool enabled);
|
2020-11-10 01:22:24 +03:00
|
|
|
Q_INVOKABLE bool getJoinChatRequested();
|
|
|
|
Q_INVOKABLE void registerJoinChat();
|
2020-08-14 11:33:42 +03:00
|
|
|
|
2020-09-15 00:43:21 +03:00
|
|
|
DBusAdaptor *getDBusAdaptor();
|
|
|
|
|
2020-08-14 11:33:42 +03:00
|
|
|
// Direct TDLib functions
|
|
|
|
Q_INVOKABLE void sendRequest(const QVariantMap &requestObject);
|
2020-08-13 11:15:26 +03:00
|
|
|
Q_INVOKABLE void setAuthenticationPhoneNumber(const QString &phoneNumber);
|
2020-08-13 16:35:43 +03:00
|
|
|
Q_INVOKABLE void setAuthenticationCode(const QString &authenticationCode);
|
2020-09-16 23:36:43 +03:00
|
|
|
Q_INVOKABLE void setAuthenticationPassword(const QString &authenticationPassword);
|
2020-10-01 01:55:26 +03:00
|
|
|
Q_INVOKABLE void registerUser(const QString &firstName, const QString &lastName);
|
2020-08-13 23:32:35 +03:00
|
|
|
Q_INVOKABLE void getChats();
|
2020-11-08 07:00:13 +03:00
|
|
|
Q_INVOKABLE void downloadFile(int fileId);
|
2020-08-21 15:47:08 +03:00
|
|
|
Q_INVOKABLE void openChat(const QString &chatId);
|
|
|
|
Q_INVOKABLE void closeChat(const QString &chatId);
|
2020-11-07 22:29:44 +03:00
|
|
|
Q_INVOKABLE void joinChat(const QString &chatId);
|
2020-10-19 13:20:02 +03:00
|
|
|
Q_INVOKABLE void leaveChat(const QString &chatId);
|
2020-11-15 07:11:10 +03:00
|
|
|
Q_INVOKABLE void getChatHistory(qlonglong chatId, const qlonglong &fromMessageId = 0, int offset = 0, int limit = 50, bool onlyLocal = false);
|
2020-10-24 02:05:49 +03:00
|
|
|
Q_INVOKABLE void viewMessage(const QString &chatId, const QString &messageId, bool force);
|
2020-11-17 22:25:57 +03:00
|
|
|
Q_INVOKABLE void pinMessage(const QString &chatId, const QString &messageId, bool disableNotification = false);
|
2020-11-18 16:22:08 +03:00
|
|
|
Q_INVOKABLE void unpinMessage(const QString &chatId);
|
2020-08-28 18:40:25 +03:00
|
|
|
Q_INVOKABLE void sendTextMessage(const QString &chatId, const QString &message, const QString &replyToMessageId = "0");
|
2020-09-27 14:49:06 +03:00
|
|
|
Q_INVOKABLE void sendPhotoMessage(const QString &chatId, const QString &filePath, const QString &message, const QString &replyToMessageId = "0");
|
2020-09-28 00:24:22 +03:00
|
|
|
Q_INVOKABLE void sendVideoMessage(const QString &chatId, const QString &filePath, const QString &message, const QString &replyToMessageId = "0");
|
|
|
|
Q_INVOKABLE void sendDocumentMessage(const QString &chatId, const QString &filePath, const QString &message, const QString &replyToMessageId = "0");
|
2020-10-16 00:43:55 +03:00
|
|
|
Q_INVOKABLE void sendStickerMessage(const QString &chatId, const QString &fileId, const QString &replyToMessageId = "0");
|
2020-10-23 11:29:50 +03:00
|
|
|
Q_INVOKABLE void sendPollMessage(const QString &chatId, const QString &question, const QVariantList &options, const bool &anonymous, const int &correctOption, const bool &multiple, const QString &replyToMessageId = "0");
|
2020-11-15 01:50:12 +03:00
|
|
|
Q_INVOKABLE void forwardMessages(const QString &chatId, const QString &fromChatId, const QVariantList &messageIds, const bool sendCopy, const bool removeCaption);
|
2020-08-25 17:42:46 +03:00
|
|
|
Q_INVOKABLE void getMessage(const QString &chatId, const QString &messageId);
|
2020-10-24 02:05:49 +03:00
|
|
|
Q_INVOKABLE void setOptionInteger(const QString &optionName, int optionValue);
|
2020-11-24 01:15:17 +03:00
|
|
|
Q_INVOKABLE void setOptionBoolean(const QString &optionName, bool optionValue);
|
2020-09-16 01:15:43 +03:00
|
|
|
Q_INVOKABLE void setChatNotificationSettings(const QString &chatId, const QVariantMap ¬ificationSettings);
|
2020-09-19 21:33:51 +03:00
|
|
|
Q_INVOKABLE void editMessageText(const QString &chatId, const QString &messageId, const QString &message);
|
2020-09-20 01:13:42 +03:00
|
|
|
Q_INVOKABLE void deleteMessages(const QString &chatId, const QVariantList messageIds);
|
2020-10-24 02:05:49 +03:00
|
|
|
Q_INVOKABLE void getMapThumbnailFile(const QString &chatId, double latitude, double longitude, int width, int height);
|
2020-10-06 00:08:47 +03:00
|
|
|
Q_INVOKABLE void getRecentStickers();
|
|
|
|
Q_INVOKABLE void getInstalledStickerSets();
|
2020-10-15 00:25:56 +03:00
|
|
|
Q_INVOKABLE void getStickerSet(const QString &setId);
|
2020-10-24 02:05:49 +03:00
|
|
|
Q_INVOKABLE void getSupergroupMembers(const QString &groupId, int limit, int offset);
|
|
|
|
Q_INVOKABLE void getGroupFullInfo(const QString &groupId, bool isSuperGroup);
|
2020-10-19 13:20:02 +03:00
|
|
|
Q_INVOKABLE void getUserFullInfo(const QString &userId);
|
|
|
|
Q_INVOKABLE void createPrivateChat(const QString &userId);
|
2020-11-24 18:13:16 +03:00
|
|
|
Q_INVOKABLE void createNewSecretChat(const QString &userId);
|
2020-11-05 02:02:27 +03:00
|
|
|
Q_INVOKABLE void createSupergroupChat(const QString &supergroupId);
|
|
|
|
Q_INVOKABLE void createBasicGroupChat(const QString &basicGroupId);
|
2020-10-24 02:05:49 +03:00
|
|
|
Q_INVOKABLE void getGroupsInCommon(const QString &userId, int limit, int offset);
|
|
|
|
Q_INVOKABLE void getUserProfilePhotos(const QString &userId, int limit, int offset);
|
2020-10-19 13:20:02 +03:00
|
|
|
Q_INVOKABLE void setChatPermissions(const QString &chatId, const QVariantMap &chatPermissions);
|
2020-10-24 02:05:49 +03:00
|
|
|
Q_INVOKABLE void setChatSlowModeDelay(const QString &chatId, int delay);
|
2020-10-19 13:20:02 +03:00
|
|
|
Q_INVOKABLE void setChatDescription(const QString &chatId, const QString &description);
|
|
|
|
Q_INVOKABLE void setChatTitle(const QString &chatId, const QString &title);
|
|
|
|
Q_INVOKABLE void setBio(const QString &bio);
|
2020-10-24 02:05:49 +03:00
|
|
|
Q_INVOKABLE void toggleSupergroupIsAllHistoryAvailable(const QString &groupId, bool isAllHistoryAvailable);
|
2020-10-23 11:29:50 +03:00
|
|
|
Q_INVOKABLE void setPollAnswer(const QString &chatId, const qlonglong &messageId, QVariantList optionIds);
|
|
|
|
Q_INVOKABLE void stopPoll(const QString &chatId, const qlonglong &messageId);
|
|
|
|
Q_INVOKABLE void getPollVoters(const QString &chatId, const qlonglong &messageId, const int &optionId, const int &limit, const int &offset, const QString &extra);
|
2020-11-04 01:39:09 +03:00
|
|
|
Q_INVOKABLE void searchPublicChat(const QString &userName);
|
|
|
|
Q_INVOKABLE void joinChatByInviteLink(const QString &inviteLink);
|
2020-11-08 23:13:04 +03:00
|
|
|
Q_INVOKABLE void getDeepLinkInfo(const QString &link);
|
2020-11-20 20:30:33 +03:00
|
|
|
Q_INVOKABLE void getContacts();
|
2020-11-25 02:23:38 +03:00
|
|
|
Q_INVOKABLE void getSecretChat(const QString &secretChatId);
|
2020-11-26 18:11:12 +03:00
|
|
|
Q_INVOKABLE void closeSecretChat(const QString &secretChatId);
|
2020-11-27 00:18:51 +03:00
|
|
|
Q_INVOKABLE void importContacts(const QVariantList &contacts);
|
2020-08-12 11:50:01 +03:00
|
|
|
|
2020-10-18 19:57:01 +03:00
|
|
|
// Others (candidates for extraction ;))
|
|
|
|
Q_INVOKABLE void searchEmoji(const QString &queryString);
|
2020-11-08 23:13:04 +03:00
|
|
|
Q_INVOKABLE void initializeOpenWith();
|
|
|
|
Q_INVOKABLE void removeOpenWith();
|
2020-10-18 19:57:01 +03:00
|
|
|
|
2020-10-04 04:27:49 +03:00
|
|
|
public:
|
|
|
|
const Group* getGroup(qlonglong groupId) const;
|
2020-10-31 22:18:12 +03:00
|
|
|
static ChatType chatTypeFromString(const QString &type);
|
2020-10-04 04:27:49 +03:00
|
|
|
static ChatMemberStatus chatMemberStatusFromString(const QString &status);
|
2020-11-26 00:09:47 +03:00
|
|
|
static SecretChatState secretChatStateFromString(const QString &state);
|
2020-10-04 04:27:49 +03:00
|
|
|
|
2020-08-10 15:17:29 +03:00
|
|
|
signals:
|
2020-08-12 11:50:01 +03:00
|
|
|
void versionDetected(const QString &version);
|
2020-08-20 01:24:24 +03:00
|
|
|
void ownUserIdFound(const QString &ownUserId);
|
2020-10-01 01:55:26 +03:00
|
|
|
void authorizationStateChanged(const TDLibWrapper::AuthorizationState &authorizationState, const QVariantMap &authorizationStateData);
|
2020-08-13 00:51:09 +03:00
|
|
|
void optionUpdated(const QString &optionName, const QVariant &optionValue);
|
2020-08-13 01:20:28 +03:00
|
|
|
void connectionStateChanged(const TDLibWrapper::ConnectionState &connectionState);
|
2020-10-24 02:05:49 +03:00
|
|
|
void fileUpdated(int fileId, const QVariantMap &fileInformation);
|
2020-08-19 10:55:13 +03:00
|
|
|
void newChatDiscovered(const QString &chatId, const QVariantMap &chatInformation);
|
2020-08-17 00:31:20 +03:00
|
|
|
void unreadMessageCountUpdated(const QVariantMap &messageCountInformation);
|
|
|
|
void unreadChatCountUpdated(const QVariantMap &chatCountInformation);
|
2020-08-20 15:58:32 +03:00
|
|
|
void chatLastMessageUpdated(const QString &chatId, const QString &order, const QVariantMap &lastMessage);
|
2020-08-20 01:24:24 +03:00
|
|
|
void chatOrderUpdated(const QString &chatId, const QString &order);
|
2020-10-24 02:05:49 +03:00
|
|
|
void chatReadInboxUpdated(const QString &chatId, const QString &lastReadInboxMessageId, int unreadCount);
|
2020-08-30 20:04:16 +03:00
|
|
|
void chatReadOutboxUpdated(const QString &chatId, const QString &lastReadOutboxMessageId);
|
2020-08-21 19:03:51 +03:00
|
|
|
void userUpdated(const QString &userId, const QVariantMap &userInformation);
|
2020-10-04 04:27:49 +03:00
|
|
|
void basicGroupUpdated(qlonglong groupId);
|
|
|
|
void superGroupUpdated(qlonglong groupId);
|
2020-10-24 02:05:49 +03:00
|
|
|
void chatOnlineMemberCountUpdated(const QString &chatId, int onlineMemberCount);
|
|
|
|
void messagesReceived(const QVariantList &messages, int totalCount);
|
2020-08-23 00:49:02 +03:00
|
|
|
void newMessageReceived(const QString &chatId, const QVariantMap &message);
|
2020-08-25 00:02:08 +03:00
|
|
|
void copyToDownloadsSuccessful(const QString &fileName, const QString &filePath);
|
|
|
|
void copyToDownloadsError(const QString &fileName, const QString &filePath);
|
2020-08-25 17:42:46 +03:00
|
|
|
void receivedMessage(const QString &messageId, const QVariantMap &message);
|
2020-08-31 00:52:22 +03:00
|
|
|
void messageSendSucceeded(const QString &messageId, const QString &oldMessageId, const QVariantMap &message);
|
2020-09-02 23:49:15 +03:00
|
|
|
void activeNotificationsUpdated(const QVariantList notificationGroups);
|
|
|
|
void notificationGroupUpdated(const QVariantMap notificationGroupUpdate);
|
|
|
|
void notificationUpdated(const QVariantMap updatedNotification);
|
2020-09-16 21:43:36 +03:00
|
|
|
void chatNotificationSettingsUpdated(const QString &chatId, const QVariantMap chatNotificationSettings);
|
2020-09-19 21:33:51 +03:00
|
|
|
void messageContentUpdated(const QString &chatId, const QString &messageId, const QVariantMap &newContent);
|
2020-09-20 01:13:42 +03:00
|
|
|
void messagesDeleted(const QString &chatId, const QVariantList &messageIds);
|
2020-10-01 13:50:29 +03:00
|
|
|
void chatsReceived(const QVariantMap &chats);
|
2020-10-19 13:20:02 +03:00
|
|
|
void chatReceived(const QVariantMap &chat);
|
2020-11-25 02:23:38 +03:00
|
|
|
void secretChatReceived(const QString &secretChatId, const QVariantMap &secretChat);
|
|
|
|
void secretChatUpdated(const QString &secretChatId, const QVariantMap &secretChat);
|
2020-10-06 00:08:47 +03:00
|
|
|
void recentStickersUpdated(const QVariantList &stickerIds);
|
|
|
|
void stickersReceived(const QVariantList &stickers);
|
|
|
|
void installedStickerSetsUpdated(const QVariantList &stickerSetIds);
|
|
|
|
void stickerSetsReceived(const QVariantList &stickerSets);
|
2020-10-15 00:25:56 +03:00
|
|
|
void stickerSetReceived(const QVariantMap &stickerSet);
|
2020-10-18 19:57:01 +03:00
|
|
|
void emojiSearchSuccessful(const QVariantList &result);
|
2020-10-24 02:05:49 +03:00
|
|
|
void chatMembersReceived(const QString &extra, const QVariantList &members, int totalMembers);
|
2020-10-19 13:20:02 +03:00
|
|
|
void userFullInfoReceived(const QVariantMap &userFullInfo);
|
|
|
|
void userFullInfoUpdated(const QString &userId, const QVariantMap &userFullInfo);
|
|
|
|
void basicGroupFullInfoReceived(const QString &groupId, const QVariantMap &groupFullInfo);
|
|
|
|
void supergroupFullInfoReceived(const QString &groupId, const QVariantMap &groupFullInfo);
|
|
|
|
void basicGroupFullInfoUpdated(const QString &groupId, const QVariantMap &groupFullInfo);
|
|
|
|
void supergroupFullInfoUpdated(const QString &groupId, const QVariantMap &groupFullInfo);
|
2020-10-24 02:05:49 +03:00
|
|
|
void userProfilePhotosReceived(const QString &extra, const QVariantList &photos, int totalPhotos);
|
2020-10-19 13:20:02 +03:00
|
|
|
void chatPermissionsUpdated(const QString &chatId, const QVariantMap &permissions);
|
2020-11-15 07:11:10 +03:00
|
|
|
void chatPhotoUpdated(qlonglong chatId, const QVariantMap &photo);
|
2020-10-19 13:20:02 +03:00
|
|
|
void chatTitleUpdated(const QString &chatId, const QString &title);
|
2020-11-17 14:18:46 +03:00
|
|
|
void chatPinnedMessageUpdated(qlonglong chatId, qlonglong pinnedMessageId);
|
2020-10-24 20:28:20 +03:00
|
|
|
void usersReceived(const QString &extra, const QVariantList &userIds, int totalUsers);
|
2020-11-10 01:22:24 +03:00
|
|
|
void errorReceived(const int code, const QString &message);
|
2020-11-27 00:18:51 +03:00
|
|
|
void contactsImported(const QVariantList &importerCount, const QVariantList &userIds);
|
2020-08-10 15:17:29 +03:00
|
|
|
|
|
|
|
public slots:
|
2020-08-12 11:50:01 +03:00
|
|
|
void handleVersionDetected(const QString &version);
|
2020-10-01 01:55:26 +03:00
|
|
|
void handleAuthorizationStateChanged(const QString &authorizationState, const QVariantMap authorizationStateData);
|
2020-08-13 00:51:09 +03:00
|
|
|
void handleOptionUpdated(const QString &optionName, const QVariant &optionValue);
|
2020-08-13 01:20:28 +03:00
|
|
|
void handleConnectionStateChanged(const QString &connectionState);
|
2020-08-13 18:08:14 +03:00
|
|
|
void handleUserUpdated(const QVariantMap &userInformation);
|
2020-08-22 15:06:26 +03:00
|
|
|
void handleUserStatusUpdated(const QString &userId, const QVariantMap &userStatusInformation);
|
2020-08-16 18:38:51 +03:00
|
|
|
void handleFileUpdated(const QVariantMap &fileInformation);
|
|
|
|
void handleNewChatDiscovered(const QVariantMap &chatInformation);
|
2020-11-05 02:02:27 +03:00
|
|
|
void handleChatReceived(const QVariantMap &chatInformation);
|
2020-08-17 00:31:20 +03:00
|
|
|
void handleUnreadMessageCountUpdated(const QVariantMap &messageCountInformation);
|
|
|
|
void handleUnreadChatCountUpdated(const QVariantMap &chatCountInformation);
|
2020-10-04 04:27:49 +03:00
|
|
|
void handleBasicGroupUpdated(qlonglong groupId, const QVariantMap &groupInformation);
|
|
|
|
void handleSuperGroupUpdated(qlonglong groupId, const QVariantMap &groupInformation);
|
2020-10-06 00:08:47 +03:00
|
|
|
void handleStickerSets(const QVariantList &stickerSets);
|
2020-10-18 19:57:01 +03:00
|
|
|
void handleEmojiSearchCompleted(const QString &queryString, const QVariantList &resultList);
|
2020-11-08 23:13:04 +03:00
|
|
|
void handleOpenWithChanged();
|
2020-11-26 00:09:47 +03:00
|
|
|
void handleSecretChatReceived(const QString &secretChatId, const QVariantMap &secretChat);
|
|
|
|
void handleSecretChatUpdated(const QString &secretChatId, const QVariantMap &secretChat);
|
2020-11-24 01:15:17 +03:00
|
|
|
void handleStorageOptimizerChanged();
|
2020-08-21 19:03:51 +03:00
|
|
|
|
2020-10-04 04:27:49 +03:00
|
|
|
private:
|
2020-11-24 01:15:17 +03:00
|
|
|
void setOption(const QString &name, const QString &type, const QVariant &value);
|
2020-10-04 04:27:49 +03:00
|
|
|
void setInitialParameters();
|
|
|
|
void setEncryptionKey();
|
|
|
|
void setLogVerbosityLevel();
|
|
|
|
const Group *updateGroup(qlonglong groupId, const QVariantMap &groupInfo, QHash<qlonglong,Group*> *groups);
|
|
|
|
|
2020-08-10 15:17:29 +03:00
|
|
|
private:
|
|
|
|
void *tdLibClient;
|
2020-11-08 23:13:04 +03:00
|
|
|
AppSettings *appSettings;
|
2020-11-23 01:32:00 +03:00
|
|
|
MceInterface *mceInterface;
|
2020-08-10 21:17:13 +03:00
|
|
|
TDLibReceiver *tdLibReceiver;
|
2020-09-15 00:43:21 +03:00
|
|
|
DBusInterface *dbusInterface;
|
2020-08-12 11:50:01 +03:00
|
|
|
QString version;
|
2020-08-13 00:51:09 +03:00
|
|
|
TDLibWrapper::AuthorizationState authorizationState;
|
2020-10-01 01:55:26 +03:00
|
|
|
QVariantMap authorizationStateData;
|
2020-08-13 01:20:28 +03:00
|
|
|
TDLibWrapper::ConnectionState connectionState;
|
2020-08-13 00:51:09 +03:00
|
|
|
QVariantMap options;
|
2020-08-13 18:08:14 +03:00
|
|
|
QVariantMap userInformation;
|
2020-08-20 01:24:24 +03:00
|
|
|
QVariantMap allUsers;
|
2020-11-04 00:21:01 +03:00
|
|
|
QVariantMap allUserNames;
|
2020-08-16 18:38:51 +03:00
|
|
|
QVariantMap chats;
|
2020-11-26 00:09:47 +03:00
|
|
|
QVariantMap secretChats;
|
2020-08-17 00:31:20 +03:00
|
|
|
QVariantMap unreadMessageInformation;
|
|
|
|
QVariantMap unreadChatInformation;
|
2020-10-04 04:27:49 +03:00
|
|
|
QHash<qlonglong,Group*> basicGroups;
|
|
|
|
QHash<qlonglong,Group*> superGroups;
|
2020-10-18 19:57:01 +03:00
|
|
|
EmojiSearchWorker emojiSearchWorker;
|
|
|
|
|
2020-11-05 02:02:27 +03:00
|
|
|
QString activeChatSearchName;
|
2020-11-10 01:22:24 +03:00
|
|
|
bool joinChatRequested;
|
2020-11-05 02:02:27 +03:00
|
|
|
|
2020-08-10 15:17:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TDLIBWRAPPER_H
|