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 21:17:13 +03:00
# include "tdlibreceiver.h"
2020-11-22 06:58:47 +03:00
# define DEBUG_MODULE TDLibReceiver
# include "debuglog.h"
2020-10-03 21:09:04 +03:00
2020-09-27 17:11:14 +03:00
namespace {
const QString ID ( " id " ) ;
const QString LIST ( " list " ) ;
const QString CHAT_ID ( " chat_id " ) ;
2020-11-15 05:55:14 +03:00
const QString USER_ID ( " user_id " ) ;
2020-12-06 07:38:03 +03:00
const QString OLD_MESSAGE_ID ( " old_message_id " ) ;
2020-11-15 05:55:14 +03:00
const QString MESSAGE_ID ( " message_id " ) ;
const QString MESSAGE_IDS ( " message_ids " ) ;
const QString MESSAGE ( " message " ) ;
const QString MESSAGES ( " messages " ) ;
const QString TITLE ( " title " ) ;
const QString NAME ( " name " ) ;
const QString VALUE ( " value " ) ;
2020-09-27 17:11:14 +03:00
const QString POSITION ( " position " ) ;
const QString POSITIONS ( " positions " ) ;
2020-11-15 07:11:10 +03:00
const QString PHOTO ( " photo " ) ;
2020-09-27 17:11:14 +03:00
const QString ORDER ( " order " ) ;
2021-01-06 12:42:12 +03:00
const QString IS_PINNED ( " is_pinned " ) ;
2020-10-04 04:27:49 +03:00
const QString BASIC_GROUP ( " basic_group " ) ;
const QString SUPERGROUP ( " supergroup " ) ;
2020-09-27 17:11:14 +03:00
const QString LAST_MESSAGE ( " last_message " ) ;
2020-11-15 05:55:14 +03:00
const QString TOTAL_COUNT ( " total_count " ) ;
2020-09-27 17:11:14 +03:00
const QString UNREAD_COUNT ( " unread_count " ) ;
2020-12-31 02:59:05 +03:00
const QString TEXT ( " text " ) ;
2020-09-27 17:11:14 +03:00
const QString LAST_READ_INBOX_MESSAGE_ID ( " last_read_inbox_message_id " ) ;
const QString LAST_READ_OUTBOX_MESSAGE_ID ( " last_read_outbox_message_id " ) ;
2020-11-26 00:09:47 +03:00
const QString SECRET_CHAT ( " secret_chat " ) ;
2021-01-31 23:08:39 +03:00
const QString INTERACTION_INFO ( " interaction_info " ) ;
2020-09-27 17:11:14 +03:00
const QString TYPE ( " @type " ) ;
2020-10-19 13:20:02 +03:00
const QString EXTRA ( " @extra " ) ;
2020-09-27 17:11:14 +03:00
const QString TYPE_CHAT_POSITION ( " chatPosition " ) ;
const QString TYPE_CHAT_LIST_MAIN ( " chatListMain " ) ;
}
static QString getChatPositionOrder ( const QVariantMap & position )
{
if ( position . value ( TYPE ) . toString ( ) = = TYPE_CHAT_POSITION & &
position . value ( LIST ) . toMap ( ) . value ( TYPE ) = = TYPE_CHAT_LIST_MAIN ) {
return position . value ( ORDER ) . toString ( ) ;
}
return QString ( ) ;
}
static QString findChatPositionOrder ( const QVariantList & positions )
{
const int n = positions . count ( ) ;
for ( int i = 0 ; i < n ; i + + ) {
const QString order ( getChatPositionOrder ( positions . at ( i ) . toMap ( ) ) ) ;
if ( ! order . isEmpty ( ) ) {
return order ;
}
}
return QString ( ) ;
}
2020-08-10 21:17:13 +03:00
TDLibReceiver : : TDLibReceiver ( void * tdLibClient , QObject * parent ) : QThread ( parent )
{
this - > tdLibClient = tdLibClient ;
this - > isActive = true ;
2020-09-27 17:11:14 +03:00
handlers . insert ( " updateOption " , & TDLibReceiver : : processUpdateOption ) ;
handlers . insert ( " updateAuthorizationState " , & TDLibReceiver : : processUpdateAuthorizationState ) ;
handlers . insert ( " updateConnectionState " , & TDLibReceiver : : processUpdateConnectionState ) ;
handlers . insert ( " updateUser " , & TDLibReceiver : : processUpdateUser ) ;
handlers . insert ( " updateUserStatus " , & TDLibReceiver : : processUpdateUserStatus ) ;
handlers . insert ( " updateFile " , & TDLibReceiver : : processUpdateFile ) ;
handlers . insert ( " file " , & TDLibReceiver : : processFile ) ;
handlers . insert ( " updateNewChat " , & TDLibReceiver : : processUpdateNewChat ) ;
handlers . insert ( " updateUnreadMessageCount " , & TDLibReceiver : : processUpdateUnreadMessageCount ) ;
handlers . insert ( " updateUnreadChatCount " , & TDLibReceiver : : processUpdateUnreadChatCount ) ;
handlers . insert ( " updateChatLastMessage " , & TDLibReceiver : : processUpdateChatLastMessage ) ;
handlers . insert ( " updateChatOrder " , & TDLibReceiver : : processUpdateChatOrder ) ;
handlers . insert ( " updateChatPosition " , & TDLibReceiver : : processUpdateChatPosition ) ;
handlers . insert ( " updateChatReadInbox " , & TDLibReceiver : : processUpdateChatReadInbox ) ;
handlers . insert ( " updateChatReadOutbox " , & TDLibReceiver : : processUpdateChatReadOutbox ) ;
handlers . insert ( " updateBasicGroup " , & TDLibReceiver : : processUpdateBasicGroup ) ;
handlers . insert ( " updateSupergroup " , & TDLibReceiver : : processUpdateSuperGroup ) ;
handlers . insert ( " updateChatOnlineMemberCount " , & TDLibReceiver : : processChatOnlineMemberCountUpdated ) ;
handlers . insert ( " messages " , & TDLibReceiver : : processMessages ) ;
2021-12-06 00:06:05 +03:00
handlers . insert ( " sponsoredMessages " , & TDLibReceiver : : processSponsoredMessages ) ;
2020-09-27 17:11:14 +03:00
handlers . insert ( " updateNewMessage " , & TDLibReceiver : : processUpdateNewMessage ) ;
handlers . insert ( " message " , & TDLibReceiver : : processMessage ) ;
handlers . insert ( " updateMessageSendSucceeded " , & TDLibReceiver : : processMessageSendSucceeded ) ;
handlers . insert ( " updateActiveNotifications " , & TDLibReceiver : : processUpdateActiveNotifications ) ;
handlers . insert ( " updateNotificationGroup " , & TDLibReceiver : : processUpdateNotificationGroup ) ;
handlers . insert ( " updateChatNotificationSettings " , & TDLibReceiver : : processUpdateChatNotificationSettings ) ;
handlers . insert ( " updateMessageContent " , & TDLibReceiver : : processUpdateMessageContent ) ;
handlers . insert ( " updateDeleteMessages " , & TDLibReceiver : : processUpdateDeleteMessages ) ;
2020-10-01 13:50:29 +03:00
handlers . insert ( " chats " , & TDLibReceiver : : processChats ) ;
2020-10-19 13:20:02 +03:00
handlers . insert ( " chat " , & TDLibReceiver : : processChat ) ;
2020-10-06 00:08:47 +03:00
handlers . insert ( " updateRecentStickers " , & TDLibReceiver : : processUpdateRecentStickers ) ;
handlers . insert ( " stickers " , & TDLibReceiver : : processStickers ) ;
handlers . insert ( " updateInstalledStickerSets " , & TDLibReceiver : : processUpdateInstalledStickerSets ) ;
handlers . insert ( " stickerSets " , & TDLibReceiver : : processStickerSets ) ;
2020-10-15 00:25:56 +03:00
handlers . insert ( " stickerSet " , & TDLibReceiver : : processStickerSet ) ;
2020-10-19 13:20:02 +03:00
handlers . insert ( " chatMembers " , & TDLibReceiver : : processChatMembers ) ;
handlers . insert ( " userFullInfo " , & TDLibReceiver : : processUserFullInfo ) ;
handlers . insert ( " updateUserFullInfo " , & TDLibReceiver : : processUpdateUserFullInfo ) ;
handlers . insert ( " basicGroupFullInfo " , & TDLibReceiver : : processBasicGroupFullInfo ) ;
handlers . insert ( " updateBasicGroupFullInfo " , & TDLibReceiver : : processUpdateBasicGroupFullInfo ) ;
handlers . insert ( " supergroupFullInfo " , & TDLibReceiver : : processSupergroupFullInfo ) ;
handlers . insert ( " updateSupergroupFullInfo " , & TDLibReceiver : : processUpdateSupergroupFullInfo ) ;
2020-12-17 01:54:17 +03:00
handlers . insert ( " chatPhotos " , & TDLibReceiver : : processUserProfilePhotos ) ;
2020-10-19 13:20:02 +03:00
handlers . insert ( " updateChatPermissions " , & TDLibReceiver : : processUpdateChatPermissions ) ;
2020-11-15 07:11:10 +03:00
handlers . insert ( " updateChatPhoto " , & TDLibReceiver : : processUpdateChatPhoto ) ;
2020-10-19 13:20:02 +03:00
handlers . insert ( " updateChatTitle " , & TDLibReceiver : : processUpdateChatTitle ) ;
2020-11-17 14:18:46 +03:00
handlers . insert ( " updateChatPinnedMessage " , & TDLibReceiver : : processUpdateChatPinnedMessage ) ;
2020-12-26 00:38:13 +03:00
handlers . insert ( " updateMessageIsPinned " , & TDLibReceiver : : processUpdateMessageIsPinned ) ;
2020-10-23 11:29:50 +03:00
handlers . insert ( " users " , & TDLibReceiver : : processUsers ) ;
2020-11-10 01:22:24 +03:00
handlers . insert ( " error " , & TDLibReceiver : : processError ) ;
2020-11-15 05:33:40 +03:00
handlers . insert ( " ok " , & TDLibReceiver : : nop ) ;
2020-11-25 02:23:38 +03:00
handlers . insert ( " secretChat " , & TDLibReceiver : : processSecretChat ) ;
handlers . insert ( " updateSecretChat " , & TDLibReceiver : : processUpdateSecretChat ) ;
2020-11-27 00:18:51 +03:00
handlers . insert ( " importedContacts " , & TDLibReceiver : : processImportedContacts ) ;
2020-12-27 02:01:59 +03:00
handlers . insert ( " updateMessageEdited " , & TDLibReceiver : : processUpdateMessageEdited ) ;
2020-12-31 02:19:36 +03:00
handlers . insert ( " updateChatIsMarkedAsUnread " , & TDLibReceiver : : processUpdateChatIsMarkedAsUnread ) ;
2020-12-31 02:59:05 +03:00
handlers . insert ( " updateChatDraftMessage " , & TDLibReceiver : : processUpdateChatDraftMessage ) ;
2021-01-10 04:06:41 +03:00
handlers . insert ( " inlineQueryResults " , & TDLibReceiver : : processInlineQueryResults ) ;
handlers . insert ( " callbackQueryAnswer " , & TDLibReceiver : : processCallbackQueryAnswer ) ;
2021-01-25 01:46:30 +03:00
handlers . insert ( " userPrivacySettingRules " , & TDLibReceiver : : processUserPrivacySettingRules ) ;
handlers . insert ( " updateUserPrivacySettingRules " , & TDLibReceiver : : processUpdateUserPrivacySettingRules ) ;
2021-01-31 23:08:39 +03:00
handlers . insert ( " updateMessageInteractionInfo " , & TDLibReceiver : : processUpdateMessageInteractionInfo ) ;
2021-02-20 02:14:43 +03:00
handlers . insert ( " sessions " , & TDLibReceiver : : processSessions ) ;
2020-08-10 21:17:13 +03:00
}
2020-10-24 02:05:49 +03:00
void TDLibReceiver : : setActive ( bool active )
2020-08-10 21:17:13 +03:00
{
2020-08-12 11:50:01 +03:00
if ( active ) {
2020-09-27 17:11:14 +03:00
LOG ( " Activating receiver loop... " ) ;
2020-08-12 11:50:01 +03:00
} else {
2020-09-27 17:11:14 +03:00
LOG ( " Deactivating receiver loop, this may take a while... " ) ;
2020-08-12 11:50:01 +03:00
}
2020-08-10 21:17:13 +03:00
this - > isActive = active ;
}
void TDLibReceiver : : receiverLoop ( )
{
2020-09-27 17:11:14 +03:00
LOG ( " Starting receiver loop " ) ;
2020-12-17 01:54:17 +03:00
const double WAIT_TIMEOUT = 5.0 ;
2020-08-10 21:17:13 +03:00
while ( this - > isActive ) {
const char * result = td_json_client_receive ( this - > tdLibClient , WAIT_TIMEOUT ) ;
if ( result ) {
2020-08-11 00:37:25 +03:00
QJsonDocument receivedJsonDocument = QJsonDocument : : fromJson ( QByteArray ( result ) ) ;
2020-10-03 21:09:04 +03:00
VERBOSE ( " Raw result: " < < receivedJsonDocument . toJson ( QJsonDocument : : Indented ) . constData ( ) ) ;
2020-08-12 11:50:01 +03:00
processReceivedDocument ( receivedJsonDocument ) ;
2020-08-10 21:17:13 +03:00
}
}
2020-09-27 17:11:14 +03:00
LOG ( " Stopping receiver loop " ) ;
2020-08-10 21:17:13 +03:00
}
2020-08-11 00:37:25 +03:00
2020-08-12 11:50:01 +03:00
void TDLibReceiver : : processReceivedDocument ( const QJsonDocument & receivedJsonDocument )
2020-08-11 00:37:25 +03:00
{
QVariantMap receivedInformation = receivedJsonDocument . object ( ) . toVariantMap ( ) ;
2020-11-15 05:55:14 +03:00
QString objectTypeName = receivedInformation . value ( TYPE ) . toString ( ) ;
2020-08-11 00:37:25 +03:00
2020-09-27 17:11:14 +03:00
Handler handler = handlers . value ( objectTypeName ) ;
if ( handler ) {
( this - > * handler ) ( receivedInformation ) ;
} else {
LOG ( " Unhandled object type " < < objectTypeName ) ;
}
2020-08-11 00:37:25 +03:00
}
2020-08-12 11:50:01 +03:00
void TDLibReceiver : : processUpdateOption ( const QVariantMap & receivedInformation )
2020-08-11 00:37:25 +03:00
{
2020-11-15 05:55:14 +03:00
const QString currentOption = receivedInformation . value ( NAME ) . toString ( ) ;
const QVariant value = receivedInformation . value ( VALUE ) . toMap ( ) . value ( VALUE ) ;
2020-08-11 00:37:25 +03:00
if ( currentOption = = " version " ) {
2020-11-15 05:55:14 +03:00
QString detectedVersion = value . toString ( ) ;
2020-09-27 17:11:14 +03:00
LOG ( " TD Lib version detected: " < < detectedVersion ) ;
2020-08-11 00:37:25 +03:00
emit versionDetected ( detectedVersion ) ;
2020-08-13 00:51:09 +03:00
} else {
2020-11-15 05:55:14 +03:00
LOG ( " Option updated: " < < currentOption < < value ) ;
emit optionUpdated ( currentOption , value ) ;
2020-08-11 00:37:25 +03:00
}
}
2020-08-12 11:50:01 +03:00
void TDLibReceiver : : processUpdateAuthorizationState ( const QVariantMap & receivedInformation )
2020-08-11 00:37:25 +03:00
{
2020-11-15 05:55:14 +03:00
QString authorizationState = receivedInformation . value ( " authorization_state " ) . toMap ( ) . value ( TYPE ) . toString ( ) ;
2020-09-27 17:11:14 +03:00
LOG ( " Authorization state changed: " < < authorizationState ) ;
2020-10-01 01:55:26 +03:00
emit authorizationStateChanged ( authorizationState , receivedInformation ) ;
2020-08-11 00:37:25 +03:00
}
2020-08-13 01:20:28 +03:00
void TDLibReceiver : : processUpdateConnectionState ( const QVariantMap & receivedInformation )
{
2020-11-15 05:55:14 +03:00
QString connectionState = receivedInformation . value ( " state " ) . toMap ( ) . value ( TYPE ) . toString ( ) ;
2020-09-27 17:11:14 +03:00
LOG ( " Connection state changed: " < < connectionState ) ;
2020-08-13 01:20:28 +03:00
emit connectionStateChanged ( connectionState ) ;
}
2020-08-13 18:08:14 +03:00
void TDLibReceiver : : processUpdateUser ( const QVariantMap & receivedInformation )
{
QVariantMap userInformation = receivedInformation . value ( " user " ) . toMap ( ) ;
2020-11-15 05:55:14 +03:00
VERBOSE ( " User was updated: " < < userInformation . value ( " username " ) . toString ( ) < < userInformation . value ( " first_name " ) . toString ( ) < < userInformation . value ( " last_name " ) . toString ( ) ) ;
2020-08-13 18:08:14 +03:00
emit userUpdated ( userInformation ) ;
}
2020-08-14 11:33:42 +03:00
2020-08-22 15:06:26 +03:00
void TDLibReceiver : : processUpdateUserStatus ( const QVariantMap & receivedInformation )
{
2020-11-15 05:55:14 +03:00
const QString userId = receivedInformation . value ( USER_ID ) . toString ( ) ;
2020-08-22 15:06:26 +03:00
QVariantMap userStatusInformation = receivedInformation . value ( " status " ) . toMap ( ) ;
2020-11-15 05:55:14 +03:00
VERBOSE ( " User status was updated: " < < receivedInformation . value ( USER_ID ) . toString ( ) < < userStatusInformation . value ( TYPE ) . toString ( ) ) ;
2020-08-22 15:06:26 +03:00
emit userStatusUpdated ( userId , userStatusInformation ) ;
}
2020-08-14 11:33:42 +03:00
void TDLibReceiver : : processUpdateFile ( const QVariantMap & receivedInformation )
{
2020-11-15 05:55:14 +03:00
const QVariantMap fileInformation = receivedInformation . value ( " file " ) . toMap ( ) ;
2020-09-27 17:11:14 +03:00
LOG ( " File was updated: " < < fileInformation . value ( ID ) . toString ( ) ) ;
2020-08-14 11:33:42 +03:00
emit fileUpdated ( fileInformation ) ;
}
2020-08-16 18:38:51 +03:00
2020-08-25 00:02:08 +03:00
void TDLibReceiver : : processFile ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
LOG ( " File was updated: " < < receivedInformation . value ( ID ) . toString ( ) ) ;
2020-08-25 00:02:08 +03:00
emit fileUpdated ( receivedInformation ) ;
}
2020-08-16 18:38:51 +03:00
void TDLibReceiver : : processUpdateNewChat ( const QVariantMap & receivedInformation )
{
2020-11-15 05:55:14 +03:00
const QVariantMap chatInformation = receivedInformation . value ( " chat " ) . toMap ( ) ;
LOG ( " New chat discovered: " < < chatInformation . value ( ID ) . toString ( ) < < chatInformation . value ( TITLE ) . toString ( ) ) ;
2020-08-16 18:38:51 +03:00
emit newChatDiscovered ( chatInformation ) ;
}
2020-08-17 00:31:20 +03:00
void TDLibReceiver : : processUpdateUnreadMessageCount ( const QVariantMap & receivedInformation )
{
QVariantMap messageCountInformation ;
2020-11-15 05:55:14 +03:00
messageCountInformation . insert ( " chat_list_type " , receivedInformation . value ( " chat_list " ) . toMap ( ) . value ( TYPE ) ) ;
messageCountInformation . insert ( UNREAD_COUNT , receivedInformation . value ( UNREAD_COUNT ) ) ;
2020-08-17 00:31:20 +03:00
messageCountInformation . insert ( " unread_unmuted_count " , receivedInformation . value ( " unread_unmuted_count " ) ) ;
2020-11-15 05:55:14 +03:00
LOG ( " Unread message count updated: " < < messageCountInformation . value ( " chat_list_type " ) . toString ( ) < < messageCountInformation . value ( UNREAD_COUNT ) . toString ( ) ) ;
2020-08-17 00:31:20 +03:00
emit unreadMessageCountUpdated ( messageCountInformation ) ;
}
void TDLibReceiver : : processUpdateUnreadChatCount ( const QVariantMap & receivedInformation )
{
QVariantMap chatCountInformation ;
2020-11-15 05:55:14 +03:00
chatCountInformation . insert ( " chat_list_type " , receivedInformation . value ( " chat_list " ) . toMap ( ) . value ( TYPE ) ) ;
2020-08-17 00:31:20 +03:00
chatCountInformation . insert ( " marked_as_unread_count " , receivedInformation . value ( " marked_as_unread_count " ) ) ;
chatCountInformation . insert ( " marked_as_unread_unmuted_count " , receivedInformation . value ( " marked_as_unread_unmuted_count " ) ) ;
2020-11-15 05:55:14 +03:00
chatCountInformation . insert ( TOTAL_COUNT , receivedInformation . value ( TOTAL_COUNT ) ) ;
chatCountInformation . insert ( UNREAD_COUNT , receivedInformation . value ( UNREAD_COUNT ) ) ;
2020-08-17 00:31:20 +03:00
chatCountInformation . insert ( " unread_unmuted_count " , receivedInformation . value ( " unread_unmuted_count " ) ) ;
2020-11-15 05:55:14 +03:00
LOG ( " Unread chat count updated: " < < chatCountInformation . value ( " chat_list_type " ) . toString ( ) < < chatCountInformation . value ( UNREAD_COUNT ) . toString ( ) ) ;
2020-08-17 00:31:20 +03:00
emit unreadChatCountUpdated ( chatCountInformation ) ;
}
2020-08-20 01:24:24 +03:00
void TDLibReceiver : : processUpdateChatLastMessage ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
const QString chat_id ( receivedInformation . value ( CHAT_ID ) . toString ( ) ) ;
2020-09-28 21:47:03 +03:00
QString order ;
if ( receivedInformation . contains ( POSITIONS ) ) {
order = findChatPositionOrder ( receivedInformation . value ( POSITIONS ) . toList ( ) ) ;
} else {
order = receivedInformation . value ( ORDER ) . toString ( ) ;
}
2020-09-27 17:11:14 +03:00
const QVariantMap lastMessage = receivedInformation . value ( LAST_MESSAGE ) . toMap ( ) ;
2020-11-15 05:55:14 +03:00
LOG ( " Last message of chat " < < chat_id < < " updated, order " < < order < < " type " < < lastMessage . value ( TYPE ) . toString ( ) ) ;
2020-09-27 17:11:14 +03:00
emit chatLastMessageUpdated ( chat_id , order , lastMessage ) ;
2020-08-20 01:24:24 +03:00
}
void TDLibReceiver : : processUpdateChatOrder ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
const QString chat_id ( receivedInformation . value ( CHAT_ID ) . toString ( ) ) ;
const QString order ( receivedInformation . value ( ORDER ) . toString ( ) ) ;
LOG ( " Chat order updated for ID " < < chat_id < < " to " < < order ) ;
emit chatOrderUpdated ( chat_id , order ) ;
}
void TDLibReceiver : : processUpdateChatPosition ( const QVariantMap & receivedInformation )
{
const QString chat_id ( receivedInformation . value ( CHAT_ID ) . toString ( ) ) ;
2021-01-06 12:42:12 +03:00
QVariantMap positionMap = receivedInformation . value ( POSITION ) . toMap ( ) ;
2021-01-06 18:54:23 +03:00
QString updateForChatList = positionMap . value ( LIST ) . toMap ( ) . value ( TYPE ) . toString ( ) ;
2021-01-06 12:42:12 +03:00
const QString order ( positionMap . value ( ORDER ) . toString ( ) ) ;
bool is_pinned = positionMap . value ( IS_PINNED ) . toBool ( ) ;
2021-01-06 18:54:23 +03:00
// We are only processing main chat list updates at the moment...
if ( updateForChatList = = " chatListMain " ) {
LOG ( " Chat position updated for ID " < < chat_id < < " new order " < < order < < " is pinned " < < is_pinned ) ;
emit chatOrderUpdated ( chat_id , order ) ;
emit chatPinnedUpdated ( chat_id . toLongLong ( ) , is_pinned ) ;
} else {
LOG ( " Received chat position update for uninteresting list " < < updateForChatList < < " ID " < < chat_id < < " new order " < < order < < " is pinned " < < is_pinned ) ;
}
2020-08-20 01:24:24 +03:00
}
2020-08-21 00:56:21 +03:00
void TDLibReceiver : : processUpdateChatReadInbox ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
const QString chat_id ( receivedInformation . value ( CHAT_ID ) . toString ( ) ) ;
const QString unread_count ( receivedInformation . value ( UNREAD_COUNT ) . toString ( ) ) ;
LOG ( " Chat read information updated for " < < chat_id < < " unread count: " < < unread_count ) ;
emit chatReadInboxUpdated ( chat_id , receivedInformation . value ( LAST_READ_INBOX_MESSAGE_ID ) . toString ( ) , unread_count . toInt ( ) ) ;
2020-08-21 00:56:21 +03:00
}
2020-08-21 19:03:51 +03:00
2020-08-30 20:04:16 +03:00
void TDLibReceiver : : processUpdateChatReadOutbox ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
const QString chat_id ( receivedInformation . value ( CHAT_ID ) . toString ( ) ) ;
const QString last_read_outbox_message_id ( receivedInformation . value ( LAST_READ_OUTBOX_MESSAGE_ID ) . toString ( ) ) ;
LOG ( " Sent messages read information updated for " < < chat_id < < " last read message ID: " < < last_read_outbox_message_id ) ;
emit chatReadOutboxUpdated ( chat_id , last_read_outbox_message_id ) ;
2020-08-30 20:04:16 +03:00
}
2020-08-21 19:03:51 +03:00
void TDLibReceiver : : processUpdateBasicGroup ( const QVariantMap & receivedInformation )
{
2020-10-04 04:27:49 +03:00
const QVariantMap basicGroup ( receivedInformation . value ( BASIC_GROUP ) . toMap ( ) ) ;
const qlonglong basicGroupId = basicGroup . value ( ID ) . toLongLong ( ) ;
2020-09-27 17:11:14 +03:00
LOG ( " Basic group information updated for " < < basicGroupId ) ;
2020-10-04 04:27:49 +03:00
emit basicGroupUpdated ( basicGroupId , basicGroup ) ;
2020-08-21 19:03:51 +03:00
}
void TDLibReceiver : : processUpdateSuperGroup ( const QVariantMap & receivedInformation )
{
2020-10-04 04:27:49 +03:00
const QVariantMap supergroup ( receivedInformation . value ( SUPERGROUP ) . toMap ( ) ) ;
const qlonglong superGroupId = supergroup . value ( ID ) . toLongLong ( ) ;
2020-09-27 17:11:14 +03:00
LOG ( " Super group information updated for " < < superGroupId ) ;
2020-10-04 04:27:49 +03:00
emit superGroupUpdated ( superGroupId , supergroup ) ;
2020-08-21 19:03:51 +03:00
}
void TDLibReceiver : : processChatOnlineMemberCountUpdated ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
const QString chatId = receivedInformation . value ( CHAT_ID ) . toString ( ) ;
LOG ( " Online member count updated for chat " < < chatId ) ;
2020-08-21 19:03:51 +03:00
emit chatOnlineMemberCountUpdated ( chatId , receivedInformation . value ( " online_member_count " ) . toInt ( ) ) ;
}
2020-08-22 18:30:02 +03:00
void TDLibReceiver : : processMessages ( const QVariantMap & receivedInformation )
{
2020-11-15 05:55:14 +03:00
LOG ( " Received new messages, amount: " < < receivedInformation . value ( TOTAL_COUNT ) . toString ( ) ) ;
emit messagesReceived ( receivedInformation . value ( MESSAGES ) . toList ( ) , receivedInformation . value ( TOTAL_COUNT ) . toInt ( ) ) ;
2020-08-22 18:30:02 +03:00
}
2020-08-23 00:49:02 +03:00
2021-12-06 00:06:05 +03:00
void TDLibReceiver : : processSponsoredMessages ( const QVariantMap & receivedInformation )
{
2021-12-06 05:29:40 +03:00
const qlonglong chatId = receivedInformation . value ( EXTRA ) . toLongLong ( ) ; // See TDLibWrapper::getChatSponsoredMessages
LOG ( " Received sponsored messages for chat " < < chatId ) ;
emit sponsoredMessagesReceived ( chatId , receivedInformation . value ( MESSAGES ) . toList ( ) ) ;
2021-12-06 00:06:05 +03:00
}
2020-08-23 00:49:02 +03:00
void TDLibReceiver : : processUpdateNewMessage ( const QVariantMap & receivedInformation )
{
2020-11-15 05:55:14 +03:00
const QVariantMap message = receivedInformation . value ( MESSAGE ) . toMap ( ) ;
2020-12-06 07:38:03 +03:00
const qlonglong chatId = message . value ( CHAT_ID ) . toLongLong ( ) ;
LOG ( " Received new message for chat " < < chatId ) ;
2020-11-15 05:55:14 +03:00
emit newMessageReceived ( chatId , message ) ;
2020-08-23 00:49:02 +03:00
}
2020-08-25 17:42:46 +03:00
void TDLibReceiver : : processMessage ( const QVariantMap & receivedInformation )
{
2020-12-30 19:11:01 +03:00
const qlonglong chatId = receivedInformation . value ( CHAT_ID ) . toLongLong ( ) ;
const qlonglong messageId = receivedInformation . value ( ID ) . toLongLong ( ) ;
2020-09-27 17:11:14 +03:00
LOG ( " Received message " < < chatId < < messageId ) ;
2020-12-30 19:11:01 +03:00
emit messageInformation ( chatId , messageId , receivedInformation ) ;
2020-08-25 17:42:46 +03:00
}
2020-08-31 00:52:22 +03:00
void TDLibReceiver : : processMessageSendSucceeded ( const QVariantMap & receivedInformation )
{
2020-12-06 07:38:03 +03:00
const qlonglong oldMessageId = receivedInformation . value ( OLD_MESSAGE_ID ) . toLongLong ( ) ;
2020-11-15 05:55:14 +03:00
const QVariantMap message = receivedInformation . value ( MESSAGE ) . toMap ( ) ;
2020-12-06 07:38:03 +03:00
const qlonglong messageId = message . value ( ID ) . toLongLong ( ) ;
LOG ( " Message send succeeded " < < messageId < < oldMessageId ) ;
2020-08-31 00:52:22 +03:00
emit messageSendSucceeded ( messageId , oldMessageId , message ) ;
}
2020-09-02 23:49:15 +03:00
void TDLibReceiver : : processUpdateActiveNotifications ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
LOG ( " Received active notification groups " ) ;
2020-09-02 23:49:15 +03:00
emit activeNotificationsUpdated ( receivedInformation . value ( " groups " ) . toList ( ) ) ;
}
void TDLibReceiver : : processUpdateNotificationGroup ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
LOG ( " Received updated notification group " ) ;
2020-09-02 23:49:15 +03:00
emit notificationGroupUpdated ( receivedInformation ) ;
}
void TDLibReceiver : : processUpdateNotification ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
LOG ( " Received notification update " ) ;
2020-09-02 23:49:15 +03:00
emit notificationUpdated ( receivedInformation ) ;
}
2020-09-16 21:43:36 +03:00
void TDLibReceiver : : processUpdateChatNotificationSettings ( const QVariantMap & receivedInformation )
{
2020-09-27 17:11:14 +03:00
const QString chatId = receivedInformation . value ( CHAT_ID ) . toString ( ) ;
LOG ( " Received new notification settings for chat " < < chatId ) ;
2020-09-16 21:43:36 +03:00
emit chatNotificationSettingsUpdated ( chatId , receivedInformation . value ( " notification_settings " ) . toMap ( ) ) ;
}
2020-09-19 21:33:51 +03:00
void TDLibReceiver : : processUpdateMessageContent ( const QVariantMap & receivedInformation )
{
2020-12-06 07:38:03 +03:00
const qlonglong chatId = receivedInformation . value ( CHAT_ID ) . toLongLong ( ) ;
const qlonglong messageId = receivedInformation . value ( MESSAGE_ID ) . toLongLong ( ) ;
LOG ( " Message content updated " < < chatId < < messageId ) ;
2020-09-19 21:33:51 +03:00
emit messageContentUpdated ( chatId , messageId , receivedInformation . value ( " new_content " ) . toMap ( ) ) ;
}
2020-09-20 01:13:42 +03:00
void TDLibReceiver : : processUpdateDeleteMessages ( const QVariantMap & receivedInformation )
{
2020-12-06 07:38:03 +03:00
const qlonglong chatId = receivedInformation . value ( CHAT_ID ) . toLongLong ( ) ;
2020-11-15 05:55:14 +03:00
const QVariantList messageIds = receivedInformation . value ( MESSAGE_IDS ) . toList ( ) ;
2020-12-06 07:38:03 +03:00
QList < qlonglong > ids ;
const int n = messageIds . size ( ) ;
ids . reserve ( n ) ;
for ( int i = 0 ; i < n ; i + + ) {
ids . append ( messageIds . at ( i ) . toLongLong ( ) ) ;
}
LOG ( n < < " messages were deleted from chat " < < chatId ) ;
emit messagesDeleted ( chatId , ids ) ;
2020-09-20 01:13:42 +03:00
}
2020-10-01 13:50:29 +03:00
void TDLibReceiver : : processChats ( const QVariantMap & receivedInformation )
{
emit chats ( receivedInformation ) ;
}
2020-10-06 00:08:47 +03:00
2020-10-19 13:20:02 +03:00
void TDLibReceiver : : processChat ( const QVariantMap & receivedInformation )
{
emit chat ( receivedInformation ) ;
}
2020-10-06 00:08:47 +03:00
void TDLibReceiver : : processUpdateRecentStickers ( const QVariantMap & receivedInformation )
{
LOG ( " Recent stickers updated " ) ;
emit recentStickersUpdated ( receivedInformation . value ( " sticker_ids " ) . toList ( ) ) ;
}
void TDLibReceiver : : processStickers ( const QVariantMap & receivedInformation )
{
LOG ( " Received some stickers... " ) ;
emit stickers ( receivedInformation . value ( " stickers " ) . toList ( ) ) ;
}
void TDLibReceiver : : processUpdateInstalledStickerSets ( const QVariantMap & receivedInformation )
{
LOG ( " Recent sticker sets updated " ) ;
emit installedStickerSetsUpdated ( receivedInformation . value ( " sticker_set_ids " ) . toList ( ) ) ;
}
void TDLibReceiver : : processStickerSets ( const QVariantMap & receivedInformation )
{
LOG ( " Received some sticker sets... " ) ;
2020-10-12 23:44:21 +03:00
emit stickerSets ( receivedInformation . value ( " sets " ) . toList ( ) ) ;
2020-10-06 00:08:47 +03:00
}
2020-10-15 00:25:56 +03:00
void TDLibReceiver : : processStickerSet ( const QVariantMap & receivedInformation )
{
LOG ( " Received a sticker set... " ) ;
emit stickerSet ( receivedInformation ) ;
}
2020-10-19 13:20:02 +03:00
void TDLibReceiver : : processChatMembers ( const QVariantMap & receivedInformation )
{
LOG ( " Received super group members " ) ;
const QString extra = receivedInformation . value ( EXTRA ) . toString ( ) ;
2020-11-15 05:55:14 +03:00
emit chatMembers ( extra , receivedInformation . value ( " members " ) . toList ( ) , receivedInformation . value ( TOTAL_COUNT ) . toInt ( ) ) ;
2020-10-19 13:20:02 +03:00
}
void TDLibReceiver : : processUserFullInfo ( const QVariantMap & receivedInformation )
{
LOG ( " Received UserFullInfo " ) ;
emit userFullInfo ( receivedInformation ) ;
}
void TDLibReceiver : : processUpdateUserFullInfo ( const QVariantMap & receivedInformation )
{
LOG ( " Received UserFullInfoUpdate " ) ;
2020-11-15 05:55:14 +03:00
emit userFullInfoUpdated ( receivedInformation . value ( USER_ID ) . toString ( ) , receivedInformation . value ( " user_full_info " ) . toMap ( ) ) ;
2020-10-19 13:20:02 +03:00
}
void TDLibReceiver : : processBasicGroupFullInfo ( const QVariantMap & receivedInformation )
{
LOG ( " Received BasicGroupFullInfo " ) ;
const QString groupId = receivedInformation . value ( EXTRA ) . toString ( ) ;
emit basicGroupFullInfo ( groupId , receivedInformation ) ;
}
void TDLibReceiver : : processUpdateBasicGroupFullInfo ( const QVariantMap & receivedInformation )
{
LOG ( " Received BasicGroupFullInfoUpdate " ) ;
const QString groupId = receivedInformation . value ( " basic_group_id " ) . toString ( ) ;
emit basicGroupFullInfoUpdated ( groupId , receivedInformation . value ( " basic_group_full_info " ) . toMap ( ) ) ;
}
void TDLibReceiver : : processSupergroupFullInfo ( const QVariantMap & receivedInformation )
{
LOG ( " Received SuperGroupFullInfoUpdate " ) ;
const QString groupId = receivedInformation . value ( EXTRA ) . toString ( ) ;
emit supergroupFullInfo ( groupId , receivedInformation ) ;
}
void TDLibReceiver : : processUpdateSupergroupFullInfo ( const QVariantMap & receivedInformation )
{
LOG ( " Received SuperGroupFullInfoUpdate " ) ;
const QString groupId = receivedInformation . value ( " supergroup_id " ) . toString ( ) ;
emit supergroupFullInfoUpdated ( groupId , receivedInformation . value ( " supergroup_full_info " ) . toMap ( ) ) ;
}
void TDLibReceiver : : processUserProfilePhotos ( const QVariantMap & receivedInformation )
{
const QString extra = receivedInformation . value ( EXTRA ) . toString ( ) ;
2020-11-15 05:55:14 +03:00
emit userProfilePhotos ( extra , receivedInformation . value ( " photos " ) . toList ( ) , receivedInformation . value ( TOTAL_COUNT ) . toInt ( ) ) ;
2020-10-19 13:20:02 +03:00
}
void TDLibReceiver : : processUpdateChatPermissions ( const QVariantMap & receivedInformation )
{
2020-11-15 05:55:14 +03:00
emit chatPermissionsUpdated ( receivedInformation . value ( CHAT_ID ) . toString ( ) , receivedInformation . value ( " permissions " ) . toMap ( ) ) ;
2020-10-19 13:20:02 +03:00
}
2020-11-15 07:11:10 +03:00
void TDLibReceiver : : processUpdateChatPhoto ( const QVariantMap & receivedInformation )
{
const qlonglong chatId = receivedInformation . value ( CHAT_ID ) . toLongLong ( ) ;
LOG ( " Photo updated for chat " < < chatId ) ;
emit chatPhotoUpdated ( chatId , receivedInformation . value ( PHOTO ) . toMap ( ) ) ;
}
2020-10-19 13:20:02 +03:00
void TDLibReceiver : : processUpdateChatTitle ( const QVariantMap & receivedInformation )
{
LOG ( " Received UpdateChatTitle " ) ;
2020-11-15 05:55:14 +03:00
emit chatTitleUpdated ( receivedInformation . value ( CHAT_ID ) . toString ( ) , receivedInformation . value ( TITLE ) . toString ( ) ) ;
2020-10-19 13:20:02 +03:00
}
2020-10-23 11:29:50 +03:00
2020-11-17 14:18:46 +03:00
void TDLibReceiver : : processUpdateChatPinnedMessage ( const QVariantMap & receivedInformation )
{
LOG ( " Received UpdateChatPinnedMessage " ) ;
emit chatPinnedMessageUpdated ( receivedInformation . value ( CHAT_ID ) . toLongLong ( ) , receivedInformation . value ( " pinned_message_id " ) . toLongLong ( ) ) ;
}
2020-12-26 00:38:13 +03:00
void TDLibReceiver : : processUpdateMessageIsPinned ( const QVariantMap & receivedInformation )
{
LOG ( " Received UpdateMessageIsPinned " ) ;
emit messageIsPinnedUpdated ( receivedInformation . value ( CHAT_ID ) . toLongLong ( ) , receivedInformation . value ( MESSAGE_ID ) . toLongLong ( ) , receivedInformation . value ( " is_pinned " ) . toBool ( ) ) ;
}
2020-10-23 11:29:50 +03:00
void TDLibReceiver : : processUsers ( const QVariantMap & receivedInformation )
{
LOG ( " Received Users " ) ;
2020-11-15 05:55:14 +03:00
emit usersReceived ( receivedInformation . value ( EXTRA ) . toString ( ) , receivedInformation . value ( " user_ids " ) . toList ( ) , receivedInformation . value ( TOTAL_COUNT ) . toInt ( ) ) ;
2020-10-23 11:29:50 +03:00
}
2020-11-10 01:22:24 +03:00
void TDLibReceiver : : processError ( const QVariantMap & receivedInformation )
{
LOG ( " Received an error " ) ;
2020-12-25 17:33:53 +03:00
emit errorReceived ( receivedInformation . value ( " code " ) . toInt ( ) , receivedInformation . value ( MESSAGE ) . toString ( ) , receivedInformation . value ( EXTRA ) . toString ( ) ) ;
2020-11-10 01:22:24 +03:00
}
2020-11-15 05:33:40 +03:00
2021-01-27 01:26:40 +03:00
void TDLibReceiver : : nop ( const QVariantMap & receivedInformation )
2020-11-15 05:33:40 +03:00
{
2021-01-27 01:26:40 +03:00
LOG ( " Received an OK " ) ;
if ( receivedInformation . contains ( EXTRA ) ) {
emit okReceived ( receivedInformation . value ( EXTRA ) . toString ( ) ) ;
}
2020-11-15 05:33:40 +03:00
}
2020-11-25 02:23:38 +03:00
void TDLibReceiver : : processSecretChat ( const QVariantMap & receivedInformation )
{
LOG ( " Received a secret chat " ) ;
2020-11-27 21:42:39 +03:00
emit secretChat ( receivedInformation . value ( ID ) . toLongLong ( ) , receivedInformation ) ;
2020-11-25 02:23:38 +03:00
}
void TDLibReceiver : : processUpdateSecretChat ( const QVariantMap & receivedInformation )
{
LOG ( " A secret chat was updated " ) ;
2020-11-26 00:09:47 +03:00
QVariantMap updatedSecretChat = receivedInformation . value ( SECRET_CHAT ) . toMap ( ) ;
2020-11-27 21:42:39 +03:00
emit secretChatUpdated ( updatedSecretChat . value ( ID ) . toLongLong ( ) , updatedSecretChat ) ;
2020-11-25 02:23:38 +03:00
}
2020-11-27 00:18:51 +03:00
2020-12-27 02:01:59 +03:00
void TDLibReceiver : : processUpdateMessageEdited ( const QVariantMap & receivedInformation )
{
const qlonglong chatId = receivedInformation . value ( CHAT_ID ) . toLongLong ( ) ;
const qlonglong messageId = receivedInformation . value ( MESSAGE_ID ) . toLongLong ( ) ;
LOG ( " Message was edited " < < chatId < < messageId ) ;
emit messageEditedUpdated ( chatId , messageId , receivedInformation . value ( " reply_markup " ) . toMap ( ) ) ;
}
2020-11-27 00:18:51 +03:00
void TDLibReceiver : : processImportedContacts ( const QVariantMap & receivedInformation )
{
LOG ( " Contacts were imported " ) ;
emit contactsImported ( receivedInformation . value ( " importer_count " ) . toList ( ) , receivedInformation . value ( " user_ids " ) . toList ( ) ) ;
}
2020-12-31 02:19:36 +03:00
void TDLibReceiver : : processUpdateChatIsMarkedAsUnread ( const QVariantMap & receivedInformation )
{
LOG ( " The unread state of a chat was updated " ) ;
emit chatIsMarkedAsUnreadUpdated ( receivedInformation . value ( CHAT_ID ) . toLongLong ( ) , receivedInformation . value ( " is_marked_as_unread " ) . toBool ( ) ) ;
}
2020-12-31 02:59:05 +03:00
void TDLibReceiver : : processUpdateChatDraftMessage ( const QVariantMap & receivedInformation )
{
LOG ( " Draft message was updated " ) ;
emit chatDraftMessageUpdated ( receivedInformation . value ( CHAT_ID ) . toLongLong ( ) , receivedInformation . value ( " draft_message " ) . toMap ( ) , findChatPositionOrder ( receivedInformation . value ( POSITIONS ) . toList ( ) ) ) ;
}
2021-01-10 04:06:41 +03:00
void TDLibReceiver : : processInlineQueryResults ( const QVariantMap & receivedInformation )
{
LOG ( " Inline Query results " ) ;
emit inlineQueryResults ( receivedInformation . value ( " inline_query_id " ) . toString ( ) , receivedInformation . value ( " next_offset " ) . toString ( ) , receivedInformation . value ( " results " ) . toList ( ) , receivedInformation . value ( " switch_pm_text " ) . toString ( ) , receivedInformation . value ( " switch_pm_parameter " ) . toString ( ) , receivedInformation . value ( EXTRA ) . toString ( ) ) ;
}
void TDLibReceiver : : processCallbackQueryAnswer ( const QVariantMap & receivedInformation )
{
LOG ( " Callback Query answer " ) ;
emit callbackQueryAnswer ( receivedInformation . value ( TEXT ) . toString ( ) , receivedInformation . value ( " alert " ) . toBool ( ) , receivedInformation . value ( " url " ) . toString ( ) ) ;
}
2021-01-25 01:46:30 +03:00
void TDLibReceiver : : processUserPrivacySettingRules ( const QVariantMap & receivedInformation )
{
LOG ( " User privacy setting rules " ) ;
emit userPrivacySettingRules ( receivedInformation ) ;
}
void TDLibReceiver : : processUpdateUserPrivacySettingRules ( const QVariantMap & receivedInformation )
{
LOG ( " User privacy setting rules updated " ) ;
emit userPrivacySettingRulesUpdated ( receivedInformation ) ;
}
2021-01-31 23:08:39 +03:00
void TDLibReceiver : : processUpdateMessageInteractionInfo ( const QVariantMap & receivedInformation )
{
const qlonglong chatId = receivedInformation . value ( CHAT_ID ) . toLongLong ( ) ;
const qlonglong messageId = receivedInformation . value ( MESSAGE_ID ) . toLongLong ( ) ;
LOG ( " Message interaction info updated " < < chatId < < messageId ) ;
emit messageInteractionInfoUpdated ( chatId , messageId , receivedInformation . value ( INTERACTION_INFO ) . toMap ( ) ) ;
}
2021-02-20 02:14:43 +03:00
void TDLibReceiver : : processSessions ( const QVariantMap & receivedInformation )
{
QVariantList sessions = receivedInformation . value ( " sessions " ) . toList ( ) ;
emit sessionsReceived ( sessions ) ;
}