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 ) ) ;
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 ) ; }
if ( objectTypeName = = " updateFile " ) { this - > processUpdateFile ( receivedInformation ) ; }
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-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
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
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 ( ) ) ;
}