2020-02-16 17:46:52 +01:00
|
|
|
#ifndef _TD_CLIENT_H
|
|
|
|
#define _TD_CLIENT_H
|
|
|
|
|
2020-02-23 14:02:47 +01:00
|
|
|
#include "account-data.h"
|
2020-05-02 12:44:07 +02:00
|
|
|
#include "transceiver.h"
|
2020-05-15 19:46:07 +02:00
|
|
|
#include "client-utils.h"
|
2020-02-22 11:42:04 +01:00
|
|
|
#include <purple.h>
|
2020-02-16 17:46:52 +01:00
|
|
|
|
2020-05-22 21:21:50 +02:00
|
|
|
enum class BasicGroupMembership: uint8_t {
|
|
|
|
Invalid,
|
|
|
|
Creator,
|
|
|
|
NonCreator,
|
|
|
|
};
|
|
|
|
|
2020-02-16 17:46:52 +01:00
|
|
|
class PurpleTdClient {
|
|
|
|
public:
|
2020-05-06 18:17:05 +02:00
|
|
|
PurpleTdClient(PurpleAccount *acct, ITransceiverBackend *testBackend);
|
2020-02-16 17:46:52 +01:00
|
|
|
~PurpleTdClient();
|
|
|
|
|
2020-02-17 23:30:24 +01:00
|
|
|
static void setLogLevel(int level);
|
2020-05-10 12:05:55 +02:00
|
|
|
int sendMessage(const char *buddyName, const char *message);
|
2020-05-22 18:20:29 +02:00
|
|
|
void sendTyping(const char *buddyName, bool isTyping);
|
|
|
|
|
2020-05-20 21:31:08 +02:00
|
|
|
void addContact(const std::string &purpleName, const std::string &alias, const std::string &groupName);
|
2020-05-20 13:33:47 +02:00
|
|
|
void renameContact(const char *buddyName, const char *newAlias);
|
2020-05-22 18:20:29 +02:00
|
|
|
void removeContactAndPrivateChat(const std::string &buddyName);
|
|
|
|
void getUsers(const char *username, std::vector<const td::td_api::user *> &users);
|
|
|
|
|
2020-05-10 12:05:55 +02:00
|
|
|
bool joinChat(const char *chatName);
|
2020-05-22 14:48:17 +02:00
|
|
|
void joinChatByLink(const char *inviteLink);
|
|
|
|
void createGroup(const char *name, int type, const std::vector<std::string> &basicGroupMembers);
|
2020-05-22 21:21:50 +02:00
|
|
|
BasicGroupMembership getBasicGroupMembership(const char *purpleChatName);
|
|
|
|
void leaveGroup(const std::string &purpleChatName, bool deleteSupergroup);
|
2020-05-22 18:20:29 +02:00
|
|
|
int sendGroupMessage(int purpleChatId, const char *message);
|
2020-05-25 23:21:04 +02:00
|
|
|
|
|
|
|
void setTwoStepAuth(const char *oldPassword, const char *newPassword, const char *hint,
|
|
|
|
const char *email);
|
2020-02-16 17:46:52 +01:00
|
|
|
private:
|
2020-02-22 14:58:32 +01:00
|
|
|
using TdObjectPtr = td::td_api::object_ptr<td::td_api::Object>;
|
|
|
|
using ResponseCb = void (PurpleTdClient::*)(uint64_t requestId, TdObjectPtr object);
|
2020-02-16 17:46:52 +01:00
|
|
|
|
2020-05-10 16:32:13 +02:00
|
|
|
void processUpdate(td::td_api::Object &object);
|
|
|
|
void processAuthorizationState(td::td_api::AuthorizationState &authState);
|
2020-05-02 12:44:07 +02:00
|
|
|
|
|
|
|
// Login sequence start
|
2020-05-20 18:31:37 +02:00
|
|
|
bool addProxy();
|
|
|
|
void addProxyResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
|
|
|
void getProxiesResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
|
|
|
void removeOldProxies();
|
2020-05-02 13:40:48 +02:00
|
|
|
void sendTdlibParameters();
|
|
|
|
void sendPhoneNumber();
|
2020-05-14 14:42:05 +02:00
|
|
|
void requestAuthCode(const td::td_api::authenticationCodeInfo *authCodeInfo);
|
2020-05-25 23:53:21 +02:00
|
|
|
void requestPassword(const td::td_api::authorizationStateWaitPassword &pwInfo);
|
2020-05-14 14:42:05 +02:00
|
|
|
void registerUser();
|
2020-02-22 14:58:32 +01:00
|
|
|
static void requestCodeEntered(PurpleTdClient *self, const gchar *code);
|
|
|
|
static void requestCodeCancelled(PurpleTdClient *self);
|
2020-05-25 23:53:21 +02:00
|
|
|
static void passwordEntered(PurpleTdClient *self, const gchar *code);
|
|
|
|
static void passwordCancelled(PurpleTdClient *self);
|
2020-05-22 22:06:02 +02:00
|
|
|
static void displayNameEntered(PurpleTdClient *self, const gchar *name);
|
|
|
|
static void displayNameCancelled(PurpleTdClient *self);
|
2020-02-22 15:53:07 +01:00
|
|
|
void authResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-05-12 16:00:07 +02:00
|
|
|
void notifyAuthError(const td::td_api::object_ptr<td::td_api::Object> &response);
|
2020-02-22 15:53:07 +01:00
|
|
|
void connectionReady();
|
2020-05-02 13:40:48 +02:00
|
|
|
void setPurpleConnectionInProgress();
|
|
|
|
void setPurpleConnectionUpdating();
|
2020-05-13 13:14:38 +02:00
|
|
|
void onLoggedIn();
|
2020-03-25 16:49:26 +01:00
|
|
|
void getContactsResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-02-22 19:03:14 +01:00
|
|
|
void getChatsResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-05-02 12:35:31 +02:00
|
|
|
void requestMissingPrivateChats();
|
|
|
|
void loginCreatePrivateChatResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-02-29 15:30:24 +01:00
|
|
|
// List of chats is requested after connection is ready, and when response is received,
|
|
|
|
// then we report to libpurple that we are connected
|
2020-05-02 13:40:48 +02:00
|
|
|
void updatePurpleChatListAndReportConnected();
|
2020-05-02 12:35:31 +02:00
|
|
|
// Login sequence end
|
|
|
|
|
2020-05-17 14:19:59 +02:00
|
|
|
void showMessage(const td::td_api::chat &chat, int64_t messageId);
|
2020-05-13 19:15:15 +02:00
|
|
|
void showTextMessage(const td::td_api::chat &chat, const TgMessageInfo &message,const td::td_api::messageText &text);
|
|
|
|
void showPhotoMessage(const td::td_api::chat &chat, const TgMessageInfo &message, const td::td_api::messagePhoto &photo);
|
2020-05-27 22:14:35 +02:00
|
|
|
void showFileMessage(const td::td_api::chat &chat, const TgMessageInfo &message,
|
|
|
|
td::td_api::object_ptr<td::td_api::file> file,
|
|
|
|
td::td_api::object_ptr<td::td_api::formattedText> caption,
|
|
|
|
const std::string &fileDescription);
|
2020-05-13 19:15:15 +02:00
|
|
|
void showSticker(const td::td_api::chat &chat, const TgMessageInfo &message, td::td_api::messageSticker &sticker);
|
2020-02-27 21:16:12 +01:00
|
|
|
void onIncomingMessage(td::td_api::object_ptr<td::td_api::message> message);
|
2020-05-17 14:19:59 +02:00
|
|
|
void findMessageResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-05-08 17:01:12 +02:00
|
|
|
|
2020-02-27 22:27:56 +01:00
|
|
|
void updateUserStatus(uint32_t userId, td::td_api::object_ptr<td::td_api::UserStatus> status);
|
2020-03-08 23:27:58 +01:00
|
|
|
void updateUser(td::td_api::object_ptr<td::td_api::user> user);
|
2020-05-09 14:07:21 +02:00
|
|
|
void updateGroup(td::td_api::object_ptr<td::td_api::basicGroup> group);
|
|
|
|
void updateSupergroup(td::td_api::object_ptr<td::td_api::supergroup> group);
|
2020-05-20 21:31:08 +02:00
|
|
|
void updateChat(const td::td_api::chat *chat);
|
2020-05-11 19:35:27 +02:00
|
|
|
void requestBasicGroupMembers(int32_t groupId);
|
|
|
|
void groupInfoResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-05-09 14:07:21 +02:00
|
|
|
|
2020-05-20 21:31:08 +02:00
|
|
|
void addContactById(int32_t userId, const std::string &phoneNumber, const std::string &alias,
|
|
|
|
const std::string &groupName);
|
2020-05-08 19:50:55 +02:00
|
|
|
void addChat(td::td_api::object_ptr<td::td_api::chat> chat);
|
2020-03-15 21:47:47 +01:00
|
|
|
void handleUserChatAction(const td::td_api::updateUserChatAction &updateChatAction);
|
2020-05-02 13:40:48 +02:00
|
|
|
void showUserChatAction(int32_t userId, bool isTyping);
|
2020-03-23 22:56:16 +01:00
|
|
|
void importContactResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-03-21 14:32:33 +01:00
|
|
|
void addContactResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-05-02 12:35:31 +02:00
|
|
|
void addContactCreatePrivateChatResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-05-20 21:31:08 +02:00
|
|
|
void notifyFailedContact(const std::string &errorMessage);
|
2020-05-12 19:37:59 +02:00
|
|
|
void joinChatByLinkResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-05-22 21:21:50 +02:00
|
|
|
void deleteSupergroupResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-02-22 13:23:01 +01:00
|
|
|
|
2020-05-27 20:21:00 +02:00
|
|
|
void showFile(const td::td_api::chat &chat, const TgMessageInfo &message,
|
2020-05-27 22:14:35 +02:00
|
|
|
const td::td_api::file &file, const char *caption, const std::string &fileDesc,
|
2020-05-27 20:21:00 +02:00
|
|
|
td::td_api::object_ptr<td::td_api::file> thumbnail,
|
|
|
|
FileDownloadCb downloadCallback);
|
2020-05-27 00:51:35 +02:00
|
|
|
void downloadFile(int32_t fileId, int64_t chatId, const TgMessageInfo &message,
|
2020-05-27 22:14:35 +02:00
|
|
|
const std::string &fileDescription,
|
2020-05-27 00:51:35 +02:00
|
|
|
td::td_api::object_ptr<td::td_api::file> thumbnail,
|
2020-05-27 20:21:00 +02:00
|
|
|
FileDownloadCb callback);
|
2020-05-27 00:51:35 +02:00
|
|
|
void requestDownload(const char *sender, const td::td_api::file &file,
|
2020-05-27 22:14:35 +02:00
|
|
|
const std::string &fileDesc, const td::td_api::chat &chat,
|
2020-05-27 20:21:00 +02:00
|
|
|
const TgMessageInfo &message, FileDownloadCb callback);
|
2020-05-27 00:51:35 +02:00
|
|
|
static void startDownload(void *user_data);
|
|
|
|
void downloadResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
2020-05-15 19:31:03 +02:00
|
|
|
void showDownloadedImage(int64_t chatId, const TgMessageInfo &message,
|
2020-05-27 20:21:00 +02:00
|
|
|
const std::string &filePath, const char *caption,
|
2020-05-27 22:14:35 +02:00
|
|
|
const std::string &fileDesc,
|
2020-05-27 20:21:00 +02:00
|
|
|
td::td_api::object_ptr<td::td_api::file> thumbnail);
|
2020-05-13 19:15:15 +02:00
|
|
|
void showDownloadedInlineFile(int64_t chatId, const TgMessageInfo &message,
|
2020-05-27 22:14:35 +02:00
|
|
|
const std::string &filePath, const char *caption,
|
|
|
|
const std::string &fileDescription,
|
|
|
|
td::td_api::object_ptr<td::td_api::file> thumbnail);
|
2020-05-13 19:15:15 +02:00
|
|
|
void showDownloadedSticker(int64_t chatId, const TgMessageInfo &message,
|
2020-05-27 20:21:00 +02:00
|
|
|
const std::string &filePath, const char *caption,
|
2020-05-27 22:14:35 +02:00
|
|
|
const std::string &fileDescription,
|
2020-05-12 13:01:18 +02:00
|
|
|
td::td_api::object_ptr<td::td_api::file> thumbnail);
|
2020-05-08 17:01:12 +02:00
|
|
|
|
2020-05-13 22:22:55 +02:00
|
|
|
bool sendMessage(int64_t chatId, const char *message);
|
2020-05-16 00:16:06 +02:00
|
|
|
void sendMessageResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
|
|
|
void removeTempFile(int64_t messageId);
|
2020-05-13 22:22:55 +02:00
|
|
|
|
2020-05-25 23:21:04 +02:00
|
|
|
void setTwoStepAuthResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
|
|
|
void requestRecoveryEmailConfirmation(const std::string &emailInfo);
|
|
|
|
static void verifyRecoveryEmail(PurpleTdClient *self, const char *code);
|
|
|
|
void verifyRecoveryEmailResponse(uint64_t requestId, td::td_api::object_ptr<td::td_api::Object> object);
|
|
|
|
|
2020-05-11 22:56:31 +02:00
|
|
|
PurpleAccount *m_account;
|
|
|
|
TdTransceiver m_transceiver;
|
|
|
|
TdAccountData m_data;
|
|
|
|
int32_t m_lastAuthState = 0;
|
2020-05-13 13:14:38 +02:00
|
|
|
bool m_connectionReady = false;
|
2020-05-11 22:56:31 +02:00
|
|
|
std::vector<int32_t> m_usersForNewPrivateChats;
|
2020-05-20 18:31:37 +02:00
|
|
|
bool m_isProxyAdded = false;
|
|
|
|
td::td_api::object_ptr<td::td_api::proxy> m_addedProxy;
|
|
|
|
td::td_api::object_ptr<td::td_api::proxies> m_proxies;
|
2020-02-16 17:46:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|