2020-08-13 11:15:26 +03:00
/*
Copyright ( C ) 2020 Sebastian J . Wolf
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"
TDLibReceiver : : TDLibReceiver ( void * tdLibClient , QObject * parent ) : QThread ( parent )
{
this - > tdLibClient = tdLibClient ;
this - > isActive = true ;
}
void TDLibReceiver : : setActive ( const bool & active )
{
2020-08-12 11:50:01 +03:00
if ( active ) {
qDebug ( ) < < " [TDLibReceiver] Activating receiver loop... " ;
} else {
qDebug ( ) < < " [TDLibReceiver] Deactivating receiver loop, this may take a while... " ;
}
2020-08-10 21:17:13 +03:00
this - > isActive = active ;
}
void TDLibReceiver : : receiverLoop ( )
{
qDebug ( ) < < " [TDLibReceiver] Starting receiver loop " ;
const double WAIT_TIMEOUT = 5.0 ;
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-08-30 00:06:14 +03:00
qDebug ( ) . noquote ( ) < < " [TDLibReceiver] Raw result: " < < receivedJsonDocument . toJson ( QJsonDocument : : Indented ) ;
2020-08-12 11:50:01 +03:00
processReceivedDocument ( receivedJsonDocument ) ;
2020-08-10 21:17:13 +03:00
}
}
qDebug ( ) < < " [TDLibReceiver] Stopping receiver loop " ;
}
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 ( ) ;
QString objectTypeName = receivedInformation . value ( " @type " ) . toString ( ) ;
2020-08-16 18:38:51 +03:00
if ( objectTypeName = = " updateOption " ) { this - > processUpdateOption ( receivedInformation ) ; }
if ( objectTypeName = = " updateAuthorizationState " ) { this - > processUpdateAuthorizationState ( receivedInformation ) ; }
if ( objectTypeName = = " updateConnectionState " ) { this - > processUpdateConnectionState ( receivedInformation ) ; }
if ( objectTypeName = = " updateUser " ) { this - > processUpdateUser ( receivedInformation ) ; }
2020-08-22 15:06:26 +03:00
if ( objectTypeName = = " updateUserStatus " ) { this - > processUpdateUserStatus ( receivedInformation ) ; }
2020-08-16 18:38:51 +03:00
if ( objectTypeName = = " updateFile " ) { this - > processUpdateFile ( receivedInformation ) ; }
2020-08-25 00:02:08 +03:00
if ( objectTypeName = = " file " ) { this - > processFile ( receivedInformation ) ; }
2020-08-16 18:38:51 +03:00
if ( objectTypeName = = " updateNewChat " ) { this - > processUpdateNewChat ( receivedInformation ) ; }
2020-08-17 00:31:20 +03:00
if ( objectTypeName = = " updateUnreadMessageCount " ) { this - > processUpdateUnreadMessageCount ( receivedInformation ) ; }
if ( objectTypeName = = " updateUnreadChatCount " ) { this - > processUpdateUnreadChatCount ( receivedInformation ) ; }
2020-08-20 01:24:24 +03:00
if ( objectTypeName = = " updateChatLastMessage " ) { this - > processUpdateChatLastMessage ( receivedInformation ) ; }
if ( objectTypeName = = " updateChatOrder " ) { this - > processUpdateChatOrder ( receivedInformation ) ; }
2020-08-21 00:56:21 +03:00
if ( objectTypeName = = " updateChatReadInbox " ) { this - > processUpdateChatReadInbox ( receivedInformation ) ; }
2020-08-30 20:04:16 +03:00
if ( objectTypeName = = " updateChatReadOutbox " ) { this - > processUpdateChatReadOutbox ( receivedInformation ) ; }
2020-08-21 19:03:51 +03:00
if ( objectTypeName = = " updateBasicGroup " ) { this - > processUpdateBasicGroup ( receivedInformation ) ; }
if ( objectTypeName = = " updateSupergroup " ) { this - > processUpdateSuperGroup ( receivedInformation ) ; }
if ( objectTypeName = = " updateChatOnlineMemberCount " ) { this - > processChatOnlineMemberCountUpdated ( receivedInformation ) ; }
2020-08-22 18:30:02 +03:00
if ( objectTypeName = = " messages " ) { this - > processMessages ( receivedInformation ) ; }
2020-08-23 00:49:02 +03:00
if ( objectTypeName = = " updateNewMessage " ) { this - > processUpdateNewMessage ( receivedInformation ) ; }
2020-08-25 17:42:46 +03:00
if ( objectTypeName = = " message " ) { this - > processMessage ( receivedInformation ) ; }
2020-08-31 00:52:22 +03:00
if ( objectTypeName = = " updateMessageSendSucceeded " ) { this - > processMessageSendSucceeded ( receivedInformation ) ; }
2020-09-02 23:49:15 +03:00
if ( objectTypeName = = " updateActiveNotifications " ) { this - > processUpdateActiveNotifications ( receivedInformation ) ; }
if ( objectTypeName = = " updateNotificationGroup " ) { this - > processUpdateNotificationGroup ( receivedInformation ) ; }
2020-09-16 21:43:36 +03:00
if ( objectTypeName = = " updateChatNotificationSettings " ) { this - > processUpdateChatNotificationSettings ( receivedInformation ) ; }
2020-09-19 21:33:51 +03:00
if ( objectTypeName = = " updateMessageContent " ) { this - > processUpdateMessageContent ( receivedInformation ) ; }
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
{
QString currentOption = receivedInformation . value ( " name " ) . toString ( ) ;
if ( currentOption = = " version " ) {
QString detectedVersion = receivedInformation . value ( " value " ) . toMap ( ) . value ( " value " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] TD Lib version detected: " < < detectedVersion ;
emit versionDetected ( detectedVersion ) ;
2020-08-13 00:51:09 +03:00
} else {
QVariant currentValue = receivedInformation . value ( " value " ) . toMap ( ) . value ( " value " ) ;
qDebug ( ) < < " [TDLibReceiver] Option updated: " < < currentOption < < currentValue ;
emit optionUpdated ( currentOption , currentValue ) ;
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
{
QString authorizationState = receivedInformation . value ( " authorization_state " ) . toMap ( ) . value ( " @type " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Authorization state changed: " < < authorizationState ;
emit authorizationStateChanged ( authorizationState ) ;
}
2020-08-13 01:20:28 +03:00
void TDLibReceiver : : processUpdateConnectionState ( const QVariantMap & receivedInformation )
{
QString connectionState = receivedInformation . value ( " state " ) . toMap ( ) . value ( " @type " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Connection state changed: " < < connectionState ;
emit connectionStateChanged ( connectionState ) ;
}
2020-08-13 18:08:14 +03:00
void TDLibReceiver : : processUpdateUser ( const QVariantMap & receivedInformation )
{
QVariantMap userInformation = receivedInformation . value ( " user " ) . toMap ( ) ;
2020-08-16 18:38:51 +03:00
// qDebug() << "[TDLibReceiver] 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 )
{
QString userId = receivedInformation . value ( " user_id " ) . toString ( ) ;
QVariantMap userStatusInformation = receivedInformation . value ( " status " ) . toMap ( ) ;
// qDebug() << "[TDLibReceiver] User status was updated: " << receivedInformation.value("user_id").toString() << userStatusInformation.value("@type").toString();
emit userStatusUpdated ( userId , userStatusInformation ) ;
}
2020-08-14 11:33:42 +03:00
void TDLibReceiver : : processUpdateFile ( const QVariantMap & receivedInformation )
{
QVariantMap fileInformation = receivedInformation . value ( " file " ) . toMap ( ) ;
qDebug ( ) < < " [TDLibReceiver] File was updated: " < < fileInformation . value ( " id " ) . toString ( ) ;
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 )
{
qDebug ( ) < < " [TDLibReceiver] File was updated: " < < receivedInformation . value ( " id " ) . toString ( ) ;
emit fileUpdated ( receivedInformation ) ;
}
2020-08-16 18:38:51 +03:00
void TDLibReceiver : : processUpdateNewChat ( const QVariantMap & receivedInformation )
{
QVariantMap chatInformation = receivedInformation . value ( " chat " ) . toMap ( ) ;
qDebug ( ) < < " [TDLibReceiver] New chat discovered: " < < chatInformation . value ( " id " ) . toString ( ) < < chatInformation . value ( " title " ) . toString ( ) ;
emit newChatDiscovered ( chatInformation ) ;
}
2020-08-17 00:31:20 +03:00
void TDLibReceiver : : processUpdateUnreadMessageCount ( const QVariantMap & receivedInformation )
{
QVariantMap messageCountInformation ;
messageCountInformation . insert ( " chat_list_type " , receivedInformation . value ( " chat_list " ) . toMap ( ) . value ( " @type " ) ) ;
messageCountInformation . insert ( " unread_count " , receivedInformation . value ( " unread_count " ) ) ;
messageCountInformation . insert ( " unread_unmuted_count " , receivedInformation . value ( " unread_unmuted_count " ) ) ;
qDebug ( ) < < " [TDLibReceiver] Unread message count updated: " < < messageCountInformation . value ( " chat_list_type " ) . toString ( ) < < messageCountInformation . value ( " unread_count " ) . toString ( ) ;
emit unreadMessageCountUpdated ( messageCountInformation ) ;
}
void TDLibReceiver : : processUpdateUnreadChatCount ( const QVariantMap & receivedInformation )
{
QVariantMap chatCountInformation ;
chatCountInformation . insert ( " chat_list_type " , receivedInformation . value ( " chat_list " ) . toMap ( ) . value ( " @type " ) ) ;
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 " ) ) ;
chatCountInformation . insert ( " total_count " , receivedInformation . value ( " total_count " ) ) ;
chatCountInformation . insert ( " unread_count " , receivedInformation . value ( " unread_count " ) ) ;
chatCountInformation . insert ( " unread_unmuted_count " , receivedInformation . value ( " unread_unmuted_count " ) ) ;
qDebug ( ) < < " [TDLibReceiver] Unread chat count updated: " < < chatCountInformation . value ( " chat_list_type " ) . toString ( ) < < chatCountInformation . value ( " unread_count " ) . toString ( ) ;
emit unreadChatCountUpdated ( chatCountInformation ) ;
}
2020-08-20 01:24:24 +03:00
void TDLibReceiver : : processUpdateChatLastMessage ( const QVariantMap & receivedInformation )
{
QVariantMap lastMessage = receivedInformation . value ( " last_message " ) . toMap ( ) ;
2020-08-20 15:58:32 +03:00
qDebug ( ) < < " [TDLibReceiver] Last message of chat " < < receivedInformation . value ( " chat_id " ) . toString ( ) < < " updated, order " < < receivedInformation . value ( " order " ) . toString ( ) < < " content: " < < lastMessage . value ( " content " ) . toString ( ) ;
emit chatLastMessageUpdated ( receivedInformation . value ( " chat_id " ) . toString ( ) , receivedInformation . value ( " order " ) . toString ( ) , lastMessage ) ;
2020-08-20 01:24:24 +03:00
}
void TDLibReceiver : : processUpdateChatOrder ( const QVariantMap & receivedInformation )
{
qDebug ( ) < < " [TDLibReceiver] Chat order updated for ID " < < receivedInformation . value ( " chat_id " ) . toString ( ) < < " new order: " < < receivedInformation . value ( " order " ) . toString ( ) ;
emit chatOrderUpdated ( receivedInformation . value ( " chat_id " ) . toString ( ) , receivedInformation . value ( " order " ) . toString ( ) ) ;
}
2020-08-21 00:56:21 +03:00
void TDLibReceiver : : processUpdateChatReadInbox ( const QVariantMap & receivedInformation )
{
qDebug ( ) < < " [TDLibReceiver] Chat read information updated for " < < receivedInformation . value ( " chat_id " ) . toString ( ) < < " unread count: " < < receivedInformation . value ( " unread_count " ) . toString ( ) ;
2020-08-31 22:51:52 +03:00
emit chatReadInboxUpdated ( receivedInformation . value ( " chat_id " ) . toString ( ) , receivedInformation . value ( " last_read_inbox_message_id " ) . toString ( ) , receivedInformation . value ( " 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 )
{
qDebug ( ) < < " [TDLibReceiver] Sent messages read information updated for " < < receivedInformation . value ( " chat_id " ) . toString ( ) < < " last read message ID: " < < receivedInformation . value ( " last_read_outbox_message_id " ) . toString ( ) ;
emit chatReadOutboxUpdated ( receivedInformation . value ( " chat_id " ) . toString ( ) , receivedInformation . value ( " last_read_outbox_message_id " ) . toString ( ) ) ;
}
2020-08-21 19:03:51 +03:00
void TDLibReceiver : : processUpdateBasicGroup ( const QVariantMap & receivedInformation )
{
QString basicGroupId = receivedInformation . value ( " basic_group " ) . toMap ( ) . value ( " id " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Basic group information updated for " < < basicGroupId ;
emit basicGroupUpdated ( basicGroupId , receivedInformation . value ( " basic_group " ) . toMap ( ) ) ;
}
void TDLibReceiver : : processUpdateSuperGroup ( const QVariantMap & receivedInformation )
{
QString superGroupId = receivedInformation . value ( " supergroup " ) . toMap ( ) . value ( " id " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Super group information updated for " < < superGroupId ;
emit superGroupUpdated ( superGroupId , receivedInformation . value ( " supergroup " ) . toMap ( ) ) ;
}
void TDLibReceiver : : processChatOnlineMemberCountUpdated ( const QVariantMap & receivedInformation )
{
QString chatId = receivedInformation . value ( " chat_id " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Online member count updated for chat " < < chatId ;
emit chatOnlineMemberCountUpdated ( chatId , receivedInformation . value ( " online_member_count " ) . toInt ( ) ) ;
}
2020-08-22 18:30:02 +03:00
void TDLibReceiver : : processMessages ( const QVariantMap & receivedInformation )
{
2020-08-23 00:49:02 +03:00
qDebug ( ) < < " [TDLibReceiver] Received new messages, amount: " < < receivedInformation . value ( " total_count " ) . toString ( ) ;
2020-08-22 18:30:02 +03:00
emit messagesReceived ( receivedInformation . value ( " messages " ) . toList ( ) ) ;
}
2020-08-23 00:49:02 +03:00
void TDLibReceiver : : processUpdateNewMessage ( const QVariantMap & receivedInformation )
{
QString chatId = receivedInformation . value ( " message " ) . toMap ( ) . value ( " chat_id " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Received new message for chat " < < chatId ;
emit newMessageReceived ( chatId , receivedInformation . value ( " message " ) . toMap ( ) ) ;
}
2020-08-25 17:42:46 +03:00
void TDLibReceiver : : processMessage ( const QVariantMap & receivedInformation )
{
QString chatId = receivedInformation . value ( " chat_id " ) . toString ( ) ;
QString messageId = receivedInformation . value ( " id " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Received message " < < chatId < < messageId ;
emit messageInformation ( messageId , receivedInformation ) ;
}
2020-08-31 00:52:22 +03:00
void TDLibReceiver : : processMessageSendSucceeded ( const QVariantMap & receivedInformation )
{
QString oldMessageId = receivedInformation . value ( " old_message_id " ) . toString ( ) ;
QVariantMap message = receivedInformation . value ( " message " ) . toMap ( ) ;
QString messageId = message . value ( " id " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Message send succeeded " < < messageId < < oldMessageId ;
emit messageSendSucceeded ( messageId , oldMessageId , message ) ;
}
2020-09-02 23:49:15 +03:00
void TDLibReceiver : : processUpdateActiveNotifications ( const QVariantMap & receivedInformation )
{
qDebug ( ) < < " [TDLibReceiver] Received active notification groups " ;
emit activeNotificationsUpdated ( receivedInformation . value ( " groups " ) . toList ( ) ) ;
}
void TDLibReceiver : : processUpdateNotificationGroup ( const QVariantMap & receivedInformation )
{
qDebug ( ) < < " [TDLibReceiver] Received updated notification group " ;
emit notificationGroupUpdated ( receivedInformation ) ;
}
void TDLibReceiver : : processUpdateNotification ( const QVariantMap & receivedInformation )
{
qDebug ( ) < < " [TDLibReceiver] Received notification update " ;
emit notificationUpdated ( receivedInformation ) ;
}
2020-09-16 21:43:36 +03:00
void TDLibReceiver : : processUpdateChatNotificationSettings ( const QVariantMap & receivedInformation )
{
QString chatId = receivedInformation . value ( " chat_id " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Received new notification settings for chat " < < chatId ;
emit chatNotificationSettingsUpdated ( chatId , receivedInformation . value ( " notification_settings " ) . toMap ( ) ) ;
}
2020-09-19 21:33:51 +03:00
void TDLibReceiver : : processUpdateMessageContent ( const QVariantMap & receivedInformation )
{
QString chatId = receivedInformation . value ( " chat_id " ) . toString ( ) ;
QString messageId = receivedInformation . value ( " message_id " ) . toString ( ) ;
qDebug ( ) < < " [TDLibReceiver] Message content updated " < < chatId < < messageId ;
emit messageContentUpdated ( chatId , messageId , receivedInformation . value ( " new_content " ) . toMap ( ) ) ;
}