2020-08-10 15:17:29 +03:00
/*
2020-10-19 20:34:47 +03:00
Copyright ( C ) 2020 Sebastian J . Wolf and other contributors
2020-08-10 15:17:29 +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-10 15:17:29 +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-10 15:17:29 +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/>.
*/
# include "tdlibwrapper.h"
2020-08-13 00:51:09 +03:00
# include "tdlibsecrets.h"
# include <QDir>
2020-08-25 00:02:08 +03:00
# include <QFile>
# include <QFileInfo>
2020-08-13 00:51:09 +03:00
# include <QLocale>
2020-08-25 00:02:08 +03:00
# include <QProcess>
2020-08-13 00:51:09 +03:00
# include <QSysInfo>
2020-10-06 04:40:12 +03:00
# include <QJsonDocument>
2020-08-25 00:02:08 +03:00
# include <QStandardPaths>
2020-08-28 11:41:18 +03:00
# include <QDBusConnection>
# include <QDBusInterface>
2020-11-29 02:33:27 +03:00
# include <QRegularExpression>
# include <QRegularExpressionMatch>
# include <QRegularExpressionMatchIterator>
2020-08-10 15:17:29 +03:00
2020-11-22 06:58:47 +03:00
# define DEBUG_MODULE TDLibWrapper
# include "debuglog.h"
2020-10-04 00:48:09 +03:00
2020-10-04 04:27:49 +03:00
namespace {
const QString STATUS ( " status " ) ;
2020-11-05 02:02:27 +03:00
const QString ID ( " id " ) ;
2020-12-26 00:38:13 +03:00
const QString CHAT_ID ( " chat_id " ) ;
2020-12-30 19:11:01 +03:00
const QString MESSAGE_ID ( " message_id " ) ;
2020-11-05 02:02:27 +03:00
const QString TYPE ( " type " ) ;
2020-11-21 01:00:50 +03:00
const QString LAST_NAME ( " last_name " ) ;
const QString FIRST_NAME ( " first_name " ) ;
const QString USERNAME ( " username " ) ;
2020-12-31 02:59:05 +03:00
const QString THREAD_ID ( " thread_id " ) ;
2020-11-24 01:15:17 +03:00
const QString VALUE ( " value " ) ;
2021-01-08 00:47:42 +03:00
const QString CHAT_LIST_TYPE ( " chat_list_type " ) ;
2020-10-04 04:27:49 +03:00
const QString _TYPE ( " @type " ) ;
2020-10-19 13:20:02 +03:00
const QString _EXTRA ( " @extra " ) ;
2021-01-08 00:47:42 +03:00
const QString CHAT_LIST_MAIN ( " chatListMain " ) ;
2020-10-04 04:27:49 +03:00
}
2020-11-23 01:32:00 +03:00
TDLibWrapper : : TDLibWrapper ( AppSettings * appSettings , MceInterface * mceInterface , QObject * parent ) : QObject ( parent ) , joinChatRequested ( false )
2020-08-10 15:17:29 +03:00
{
2020-10-04 00:48:09 +03:00
LOG ( " Initializing TD Lib... " ) ;
2020-11-08 23:13:04 +03:00
this - > appSettings = appSettings ;
2020-11-23 01:32:00 +03:00
this - > mceInterface = mceInterface ;
2020-08-10 15:17:29 +03:00
this - > tdLibClient = td_json_client_create ( ) ;
2020-11-27 12:25:23 +03:00
this - > authorizationState = AuthorizationState : : Closed ;
2021-01-11 21:05:55 +03:00
this - > isLoggingOut = false ;
initializeTDLibReciever ( ) ;
2020-08-12 11:50:01 +03:00
2020-08-13 00:51:09 +03:00
QString tdLibDatabaseDirectoryPath = QStandardPaths : : writableLocation ( QStandardPaths : : AppDataLocation ) + " /tdlib " ;
QDir tdLibDatabaseDirectory ( tdLibDatabaseDirectoryPath ) ;
if ( ! tdLibDatabaseDirectory . exists ( ) ) {
tdLibDatabaseDirectory . mkpath ( tdLibDatabaseDirectoryPath ) ;
}
2020-09-15 00:43:21 +03:00
this - > dbusInterface = new DBusInterface ( this ) ;
2020-11-08 23:13:04 +03:00
if ( this - > appSettings - > getUseOpenWith ( ) ) {
this - > initializeOpenWith ( ) ;
} else {
this - > removeOpenWith ( ) ;
}
2020-09-15 00:43:21 +03:00
2021-01-11 21:05:55 +03:00
connect ( & emojiSearchWorker , SIGNAL ( searchCompleted ( QString , QVariantList ) ) , this , SLOT ( handleEmojiSearchCompleted ( QString , QVariantList ) ) ) ;
connect ( this - > appSettings , SIGNAL ( useOpenWithChanged ( ) ) , this , SLOT ( handleOpenWithChanged ( ) ) ) ;
connect ( this - > appSettings , SIGNAL ( storageOptimizerChanged ( ) ) , this , SLOT ( handleStorageOptimizerChanged ( ) ) ) ;
this - > setLogVerbosityLevel ( ) ;
this - > setOptionInteger ( " notification_group_count_max " , 5 ) ;
}
TDLibWrapper : : ~ TDLibWrapper ( )
{
LOG ( " Destroying TD Lib... " ) ;
this - > tdLibReceiver - > setActive ( false ) ;
while ( this - > tdLibReceiver - > isRunning ( ) ) {
QCoreApplication : : processEvents ( QEventLoop : : AllEvents , 1000 ) ;
}
qDeleteAll ( basicGroups . values ( ) ) ;
qDeleteAll ( superGroups . values ( ) ) ;
td_json_client_destroy ( this - > tdLibClient ) ;
}
void TDLibWrapper : : initializeTDLibReciever ( ) {
this - > tdLibReceiver = new TDLibReceiver ( this - > tdLibClient , this ) ;
2020-08-12 11:50:01 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( versionDetected ( QString ) ) , this , SLOT ( handleVersionDetected ( QString ) ) ) ;
2020-10-01 01:55:26 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( authorizationStateChanged ( QString , QVariantMap ) ) , this , SLOT ( handleAuthorizationStateChanged ( QString , QVariantMap ) ) ) ;
2020-08-13 00:51:09 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( optionUpdated ( QString , QVariant ) ) , this , SLOT ( handleOptionUpdated ( QString , QVariant ) ) ) ;
2020-08-13 01:20:28 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( connectionStateChanged ( QString ) ) , this , SLOT ( handleConnectionStateChanged ( QString ) ) ) ;
2020-08-13 18:08:14 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( userUpdated ( QVariantMap ) ) , this , SLOT ( handleUserUpdated ( QVariantMap ) ) ) ;
2020-08-22 15:06:26 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( userStatusUpdated ( QString , QVariantMap ) ) , this , SLOT ( handleUserStatusUpdated ( QString , QVariantMap ) ) ) ;
2020-08-14 11:33:42 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( fileUpdated ( QVariantMap ) ) , this , SLOT ( handleFileUpdated ( QVariantMap ) ) ) ;
2020-08-16 18:38:51 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( newChatDiscovered ( QVariantMap ) ) , this , SLOT ( handleNewChatDiscovered ( QVariantMap ) ) ) ;
2020-08-17 00:31:20 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( unreadMessageCountUpdated ( QVariantMap ) ) , this , SLOT ( handleUnreadMessageCountUpdated ( QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( unreadChatCountUpdated ( QVariantMap ) ) , this , SLOT ( handleUnreadChatCountUpdated ( QVariantMap ) ) ) ;
2020-10-24 03:24:26 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chatLastMessageUpdated ( QString , QString , QVariantMap ) ) , this , SIGNAL ( chatLastMessageUpdated ( QString , QString , QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( chatOrderUpdated ( QString , QString ) ) , this , SIGNAL ( chatOrderUpdated ( QString , QString ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( chatReadInboxUpdated ( QString , QString , int ) ) , this , SIGNAL ( chatReadInboxUpdated ( QString , QString , int ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( chatReadOutboxUpdated ( QString , QString ) ) , this , SIGNAL ( chatReadOutboxUpdated ( QString , QString ) ) ) ;
2020-10-04 04:27:49 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( basicGroupUpdated ( qlonglong , QVariantMap ) ) , this , SLOT ( handleBasicGroupUpdated ( qlonglong , QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( superGroupUpdated ( qlonglong , QVariantMap ) ) , this , SLOT ( handleSuperGroupUpdated ( qlonglong , QVariantMap ) ) ) ;
2020-10-24 03:24:26 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chatOnlineMemberCountUpdated ( QString , int ) ) , this , SIGNAL ( chatOnlineMemberCountUpdated ( QString , int ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( messagesReceived ( QVariantList , int ) ) , this , SIGNAL ( messagesReceived ( QVariantList , int ) ) ) ;
2021-12-06 05:29:40 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( sponsoredMessagesReceived ( qlonglong , QVariantList ) ) , this , SLOT ( handleSponsoredMess ( qlonglong , QVariantList ) ) ) ;
2021-12-11 20:29:31 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( messageLinkInfoReceived ( QString , QVariantMap , QString ) ) , this , SIGNAL ( messageLinkInfoReceived ( QString , QVariantMap , QString ) ) ) ;
2020-12-06 07:38:03 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( newMessageReceived ( qlonglong , QVariantMap ) ) , this , SIGNAL ( newMessageReceived ( qlonglong , QVariantMap ) ) ) ;
2020-12-30 19:11:01 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( messageInformation ( qlonglong , qlonglong , QVariantMap ) ) , this , SLOT ( handleMessageInformation ( qlonglong , qlonglong , QVariantMap ) ) ) ;
2020-12-06 07:38:03 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( messageSendSucceeded ( qlonglong , qlonglong , QVariantMap ) ) , this , SIGNAL ( messageSendSucceeded ( qlonglong , qlonglong , QVariantMap ) ) ) ;
2020-10-24 03:24:26 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( activeNotificationsUpdated ( QVariantList ) ) , this , SIGNAL ( activeNotificationsUpdated ( QVariantList ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( notificationGroupUpdated ( QVariantMap ) ) , this , SIGNAL ( notificationGroupUpdated ( QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( notificationUpdated ( QVariantMap ) ) , this , SIGNAL ( notificationUpdated ( QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( chatNotificationSettingsUpdated ( QString , QVariantMap ) ) , this , SIGNAL ( chatNotificationSettingsUpdated ( QString , QVariantMap ) ) ) ;
2020-12-06 07:38:03 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( messageContentUpdated ( qlonglong , qlonglong , QVariantMap ) ) , this , SIGNAL ( messageContentUpdated ( qlonglong , qlonglong , QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( messagesDeleted ( qlonglong , QList < qlonglong > ) ) , this , SIGNAL ( messagesDeleted ( qlonglong , QList < qlonglong > ) ) ) ;
2020-10-24 03:24:26 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chats ( QVariantMap ) ) , this , SIGNAL ( chatsReceived ( QVariantMap ) ) ) ;
2020-11-05 02:02:27 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chat ( QVariantMap ) ) , this , SLOT ( handleChatReceived ( QVariantMap ) ) ) ;
2020-11-27 21:42:39 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( secretChat ( qlonglong , QVariantMap ) ) , this , SLOT ( handleSecretChatReceived ( qlonglong , QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( secretChatUpdated ( qlonglong , QVariantMap ) ) , this , SLOT ( handleSecretChatUpdated ( qlonglong , QVariantMap ) ) ) ;
2020-10-24 03:24:26 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( recentStickersUpdated ( QVariantList ) ) , this , SIGNAL ( recentStickersUpdated ( QVariantList ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( stickers ( QVariantList ) ) , this , SIGNAL ( stickersReceived ( QVariantList ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( installedStickerSetsUpdated ( QVariantList ) ) , this , SIGNAL ( installedStickerSetsUpdated ( QVariantList ) ) ) ;
2020-10-06 00:08:47 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( stickerSets ( QVariantList ) ) , this , SLOT ( handleStickerSets ( QVariantList ) ) ) ;
2020-10-24 03:24:26 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( stickerSet ( QVariantMap ) ) , this , SIGNAL ( stickerSetReceived ( QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( chatMembers ( QString , QVariantList , int ) ) , this , SIGNAL ( chatMembersReceived ( QString , QVariantList , int ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( userFullInfo ( QVariantMap ) ) , this , SIGNAL ( userFullInfoReceived ( QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( userFullInfoUpdated ( QString , QVariantMap ) ) , this , SIGNAL ( userFullInfoUpdated ( QString , QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( basicGroupFullInfo ( QString , QVariantMap ) ) , this , SIGNAL ( basicGroupFullInfoReceived ( QString , QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( basicGroupFullInfoUpdated ( QString , QVariantMap ) ) , this , SIGNAL ( basicGroupFullInfoUpdated ( QString , QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( supergroupFullInfo ( QString , QVariantMap ) ) , this , SIGNAL ( supergroupFullInfoReceived ( QString , QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( supergroupFullInfoUpdated ( QString , QVariantMap ) ) , this , SIGNAL ( supergroupFullInfoUpdated ( QString , QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( userProfilePhotos ( QString , QVariantList , int ) ) , this , SIGNAL ( userProfilePhotosReceived ( QString , QVariantList , int ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( chatPermissionsUpdated ( QString , QVariantMap ) ) , this , SIGNAL ( chatPermissionsUpdated ( QString , QVariantMap ) ) ) ;
2020-11-15 07:11:10 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chatPhotoUpdated ( qlonglong , QVariantMap ) ) , this , SIGNAL ( chatPhotoUpdated ( qlonglong , QVariantMap ) ) ) ;
2020-10-24 03:24:26 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chatTitleUpdated ( QString , QString ) ) , this , SIGNAL ( chatTitleUpdated ( QString , QString ) ) ) ;
2021-01-06 12:42:12 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chatPinnedUpdated ( qlonglong , bool ) ) , this , SIGNAL ( chatPinnedUpdated ( qlonglong , bool ) ) ) ;
2020-11-17 14:18:46 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chatPinnedMessageUpdated ( qlonglong , qlonglong ) ) , this , SIGNAL ( chatPinnedMessageUpdated ( qlonglong , qlonglong ) ) ) ;
2020-12-26 00:38:13 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( messageIsPinnedUpdated ( qlonglong , qlonglong , bool ) ) , this , SLOT ( handleMessageIsPinnedUpdated ( qlonglong , qlonglong , bool ) ) ) ;
2020-10-24 20:28:20 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( usersReceived ( QString , QVariantList , int ) ) , this , SIGNAL ( usersReceived ( QString , QVariantList , int ) ) ) ;
2020-12-25 17:33:53 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( errorReceived ( int , QString , QString ) ) , this , SLOT ( handleErrorReceived ( int , QString , QString ) ) ) ;
2020-11-27 00:18:51 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( contactsImported ( QVariantList , QVariantList ) ) , this , SIGNAL ( contactsImported ( QVariantList , QVariantList ) ) ) ;
2020-12-27 02:01:59 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( messageEditedUpdated ( qlonglong , qlonglong , QVariantMap ) ) , this , SIGNAL ( messageEditedUpdated ( qlonglong , qlonglong , QVariantMap ) ) ) ;
2020-12-31 02:19:36 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chatIsMarkedAsUnreadUpdated ( qlonglong , bool ) ) , this , SIGNAL ( chatIsMarkedAsUnreadUpdated ( qlonglong , bool ) ) ) ;
2020-12-31 02:59:05 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( chatDraftMessageUpdated ( qlonglong , QVariantMap , QString ) ) , this , SIGNAL ( chatDraftMessageUpdated ( qlonglong , QVariantMap , QString ) ) ) ;
2021-01-10 04:06:41 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( inlineQueryResults ( QString , QString , QVariantList , QString , QString , QString ) ) , this , SIGNAL ( inlineQueryResults ( QString , QString , QVariantList , QString , QString , QString ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( callbackQueryAnswer ( QString , bool , QString ) ) , this , SIGNAL ( callbackQueryAnswer ( QString , bool , QString ) ) ) ;
2021-01-25 01:46:30 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( userPrivacySettingRules ( QVariantMap ) ) , this , SLOT ( handleUserPrivacySettingRules ( QVariantMap ) ) ) ;
connect ( this - > tdLibReceiver , SIGNAL ( userPrivacySettingRulesUpdated ( QVariantMap ) ) , this , SLOT ( handleUpdatedUserPrivacySettingRules ( QVariantMap ) ) ) ;
2021-01-31 23:08:39 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( messageInteractionInfoUpdated ( qlonglong , qlonglong , QVariantMap ) ) , this , SIGNAL ( messageInteractionInfoUpdated ( qlonglong , qlonglong , QVariantMap ) ) ) ;
2021-01-27 01:26:40 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( okReceived ( QString ) ) , this , SIGNAL ( okReceived ( QString ) ) ) ;
2021-02-20 02:14:43 +03:00
connect ( this - > tdLibReceiver , SIGNAL ( sessionsReceived ( QVariantList ) ) , this , SIGNAL ( sessionsReceived ( QVariantList ) ) ) ;
2020-08-12 11:50:01 +03:00
2020-08-10 21:17:13 +03:00
this - > tdLibReceiver - > start ( ) ;
2020-08-10 15:17:29 +03:00
}
2020-08-13 00:51:09 +03:00
void TDLibWrapper : : sendRequest ( const QVariantMap & requestObject )
{
2021-01-11 21:05:55 +03:00
if ( this - > isLoggingOut ) {
LOG ( " Sending request to TD Lib skipped as logging out is in progress, object type name: " < < requestObject . value ( _TYPE ) . toString ( ) ) ;
return ;
}
2020-10-04 04:27:49 +03:00
LOG ( " Sending request to TD Lib, object type name: " < < requestObject . value ( _TYPE ) . toString ( ) ) ;
2020-08-13 00:51:09 +03:00
QJsonDocument requestDocument = QJsonDocument : : fromVariant ( requestObject ) ;
2020-10-04 00:48:09 +03:00
VERBOSE ( requestDocument . toJson ( ) . constData ( ) ) ;
2020-08-13 00:51:09 +03:00
td_json_client_send ( this - > tdLibClient , requestDocument . toJson ( ) . constData ( ) ) ;
}
2020-08-12 11:50:01 +03:00
QString TDLibWrapper : : getVersion ( )
{
return this - > version ;
}
2020-08-13 00:51:09 +03:00
TDLibWrapper : : AuthorizationState TDLibWrapper : : getAuthorizationState ( )
2020-08-12 11:50:01 +03:00
{
return this - > authorizationState ;
}
2020-10-01 01:55:26 +03:00
QVariantMap TDLibWrapper : : getAuthorizationStateData ( )
{
return this - > authorizationStateData ;
}
2020-08-13 01:20:28 +03:00
TDLibWrapper : : ConnectionState TDLibWrapper : : getConnectionState ( )
{
return this - > connectionState ;
}
2020-08-13 11:15:26 +03:00
void TDLibWrapper : : setAuthenticationPhoneNumber ( const QString & phoneNumber )
{
2020-10-04 00:48:09 +03:00
LOG ( " Set authentication phone number " < < phoneNumber ) ;
2020-08-13 11:15:26 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " setAuthenticationPhoneNumber " ) ;
2020-08-13 11:15:26 +03:00
requestObject . insert ( " phone_number " , phoneNumber ) ;
QVariantMap phoneNumberSettings ;
phoneNumberSettings . insert ( " allow_flash_call " , false ) ;
phoneNumberSettings . insert ( " is_current_phone_number " , true ) ;
requestObject . insert ( " settings " , phoneNumberSettings ) ;
this - > sendRequest ( requestObject ) ;
}
2020-08-13 16:35:43 +03:00
void TDLibWrapper : : setAuthenticationCode ( const QString & authenticationCode )
{
2020-10-04 00:48:09 +03:00
LOG ( " Set authentication code " < < authenticationCode ) ;
2020-08-13 16:35:43 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " checkAuthenticationCode " ) ;
2020-08-13 16:35:43 +03:00
requestObject . insert ( " code " , authenticationCode ) ;
this - > sendRequest ( requestObject ) ;
}
2020-09-16 23:36:43 +03:00
void TDLibWrapper : : setAuthenticationPassword ( const QString & authenticationPassword )
{
2020-10-04 00:48:09 +03:00
LOG ( " Set authentication password " < < authenticationPassword ) ;
2020-09-16 23:36:43 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " checkAuthenticationPassword " ) ;
2020-09-16 23:36:43 +03:00
requestObject . insert ( " password " , authenticationPassword ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-01 01:55:26 +03:00
void TDLibWrapper : : registerUser ( const QString & firstName , const QString & lastName )
{
2020-11-22 06:58:47 +03:00
LOG ( " Register User " < < firstName < < lastName ) ;
2020-10-01 01:55:26 +03:00
QVariantMap requestObject ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( _TYPE , " registerUser " ) ;
requestObject . insert ( FIRST_NAME , firstName ) ;
requestObject . insert ( LAST_NAME , lastName ) ;
2020-10-01 01:55:26 +03:00
this - > sendRequest ( requestObject ) ;
}
2021-01-11 21:05:55 +03:00
void TDLibWrapper : : logout ( )
{
LOG ( " Logging out " ) ;
QVariantMap requestObject ;
requestObject . insert ( " @type " , " logOut " ) ;
this - > sendRequest ( requestObject ) ;
this - > isLoggingOut = true ;
}
2020-08-13 23:32:35 +03:00
void TDLibWrapper : : getChats ( )
{
2020-10-04 00:48:09 +03:00
LOG ( " Getting chats " ) ;
2020-08-13 23:32:35 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " getChats " ) ;
2020-08-16 18:38:51 +03:00
requestObject . insert ( " limit " , 5 ) ;
2020-08-13 23:32:35 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-11-08 07:00:13 +03:00
void TDLibWrapper : : downloadFile ( int fileId )
2020-08-14 11:33:42 +03:00
{
2020-10-04 00:48:09 +03:00
LOG ( " Downloading file " < < fileId ) ;
2020-08-14 11:33:42 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " downloadFile " ) ;
2020-08-14 11:33:42 +03:00
requestObject . insert ( " file_id " , fileId ) ;
requestObject . insert ( " synchronous " , false ) ;
requestObject . insert ( " offset " , 0 ) ;
requestObject . insert ( " limit " , 0 ) ;
requestObject . insert ( " priority " , 1 ) ;
this - > sendRequest ( requestObject ) ;
}
2020-08-21 15:47:08 +03:00
void TDLibWrapper : : openChat ( const QString & chatId )
{
2020-10-04 00:48:09 +03:00
LOG ( " Opening chat " < < chatId ) ;
2020-08-21 15:47:08 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " openChat " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-08-21 15:47:08 +03:00
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : closeChat ( const QString & chatId )
{
2020-10-04 00:48:09 +03:00
LOG ( " Closing chat " < < chatId ) ;
2020-08-21 15:47:08 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " closeChat " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-08-21 15:47:08 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-11-07 22:29:44 +03:00
void TDLibWrapper : : joinChat ( const QString & chatId )
{
LOG ( " Joining chat " < < chatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " joinChat " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-11-10 01:22:24 +03:00
this - > joinChatRequested = true ;
2020-11-07 22:29:44 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-10-19 13:20:02 +03:00
void TDLibWrapper : : leaveChat ( const QString & chatId )
{
LOG ( " Leaving chat " < < chatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " leaveChat " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-10-19 13:20:02 +03:00
this - > sendRequest ( requestObject ) ;
}
2021-12-09 00:35:26 +03:00
void TDLibWrapper : : deleteChat ( qlonglong chatId )
{
LOG ( " Deleting chat " < < chatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " deleteChat " ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
this - > sendRequest ( requestObject ) ;
}
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : getChatHistory ( qlonglong chatId , qlonglong fromMessageId , int offset , int limit , bool onlyLocal )
2020-08-22 18:30:02 +03:00
{
2020-10-04 00:48:09 +03:00
LOG ( " Retrieving chat history " < < chatId < < fromMessageId < < offset < < limit < < onlyLocal ) ;
2020-08-22 18:30:02 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " getChatHistory " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-08-22 18:30:02 +03:00
requestObject . insert ( " from_message_id " , fromMessageId ) ;
requestObject . insert ( " offset " , offset ) ;
requestObject . insert ( " limit " , limit ) ;
requestObject . insert ( " only_local " , onlyLocal ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-24 02:05:49 +03:00
void TDLibWrapper : : viewMessage ( const QString & chatId , const QString & messageId , bool force )
2020-08-23 00:05:45 +03:00
{
2020-10-04 00:48:09 +03:00
LOG ( " Mark message as viewed " < < chatId < < messageId ) ;
2020-08-23 00:05:45 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " viewMessages " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-10-19 16:30:03 +03:00
requestObject . insert ( " force_read " , force ) ;
2020-08-23 00:05:45 +03:00
QVariantList messageIds ;
messageIds . append ( messageId ) ;
requestObject . insert ( " message_ids " , messageIds ) ;
this - > sendRequest ( requestObject ) ;
}
2021-12-06 00:06:05 +03:00
void TDLibWrapper : : viewSponsoredMessage ( qlonglong chatId , qlonglong messageId )
{
LOG ( " Mark sponsored message as viewed " < < chatId < < messageId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " viewSponsoredMessage " ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( " sponsored_message_id " , messageId ) ;
requestObject . insert ( _EXTRA , " viewSponsoredMessage " ) ;
this - > sendRequest ( requestObject ) ;
}
2020-11-17 22:25:57 +03:00
void TDLibWrapper : : pinMessage ( const QString & chatId , const QString & messageId , bool disableNotification )
{
LOG ( " Pin message to chat " < < chatId < < messageId < < disableNotification ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " pinChatMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( MESSAGE_ID , messageId ) ;
2020-11-17 22:25:57 +03:00
requestObject . insert ( " disable_notification " , disableNotification ) ;
this - > sendRequest ( requestObject ) ;
}
2020-12-26 00:38:13 +03:00
void TDLibWrapper : : unpinMessage ( const QString & chatId , const QString & messageId )
2020-11-18 16:22:08 +03:00
{
LOG ( " Unpin message from chat " < < chatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " unpinChatMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( MESSAGE_ID , messageId ) ;
2020-12-26 00:38:13 +03:00
requestObject . insert ( _EXTRA , " unpinChatMessage: " + chatId ) ;
2020-11-18 16:22:08 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-11-29 02:33:27 +03:00
static bool compareReplacements ( const QVariant & replacement1 , const QVariant & replacement2 )
{
const QVariantMap replacementMap1 = replacement1 . toMap ( ) ;
const QVariantMap replacementMap2 = replacement2 . toMap ( ) ;
if ( replacementMap1 . value ( " startIndex " ) . toInt ( ) < replacementMap2 . value ( " startIndex " ) . toInt ( ) ) {
return true ;
} else {
return false ;
}
}
2020-08-28 18:40:25 +03:00
void TDLibWrapper : : sendTextMessage ( const QString & chatId , const QString & message , const QString & replyToMessageId )
2020-08-23 01:17:34 +03:00
{
2020-10-04 00:48:09 +03:00
LOG ( " Sending text message " < < chatId < < message < < replyToMessageId ) ;
2020-08-23 01:17:34 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " sendMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-08-28 18:40:25 +03:00
if ( replyToMessageId ! = " 0 " ) {
requestObject . insert ( " reply_to_message_id " , replyToMessageId ) ;
}
2020-08-23 01:17:34 +03:00
QVariantMap inputMessageContent ;
2020-10-04 04:27:49 +03:00
inputMessageContent . insert ( _TYPE , " inputMessageText " ) ;
2020-11-29 02:33:27 +03:00
// Postprocess message (e.g. for @-mentioning)
QString processedMessage = message ;
QVariantList replacements ;
QRegularExpression atMentionIdRegex ( " \\ @( \\ d+) \ \ ( ( [ ^ \ \ ) ] + ) \ \ ) " ) ;
QRegularExpressionMatchIterator atMentionIdMatchIterator = atMentionIdRegex . globalMatch ( processedMessage ) ;
while ( atMentionIdMatchIterator . hasNext ( ) ) {
QRegularExpressionMatch nextAtMentionId = atMentionIdMatchIterator . next ( ) ;
LOG ( " @Mentioning with user ID! Start Index: " < < nextAtMentionId . capturedStart ( 0 ) < < " , length: " < < nextAtMentionId . capturedLength ( 0 ) < < " , user ID: " < < nextAtMentionId . captured ( 1 ) < < " , plain text: " < < nextAtMentionId . captured ( 2 ) ) ;
QVariantMap replacement ;
replacement . insert ( " startIndex " , nextAtMentionId . capturedStart ( 0 ) ) ;
replacement . insert ( " length " , nextAtMentionId . capturedLength ( 0 ) ) ;
replacement . insert ( " userId " , nextAtMentionId . captured ( 1 ) ) ;
replacement . insert ( " plainText " , nextAtMentionId . captured ( 2 ) ) ;
replacements . append ( replacement ) ;
}
2020-08-23 01:17:34 +03:00
QVariantMap formattedText ;
2020-11-29 02:33:27 +03:00
if ( ! replacements . isEmpty ( ) ) {
QVariantList entities ;
std : : sort ( replacements . begin ( ) , replacements . end ( ) , compareReplacements ) ;
QListIterator < QVariant > replacementsIterator ( replacements ) ;
int offsetCorrection = 0 ;
while ( replacementsIterator . hasNext ( ) ) {
QVariantMap nextReplacement = replacementsIterator . next ( ) . toMap ( ) ;
int replacementStartOffset = nextReplacement . value ( " startIndex " ) . toInt ( ) ;
int replacementLength = nextReplacement . value ( " length " ) . toInt ( ) ;
QString replacementPlainText = nextReplacement . value ( " plainText " ) . toString ( ) ;
processedMessage = processedMessage . replace ( replacementStartOffset - offsetCorrection , replacementLength , replacementPlainText ) ;
QVariantMap entity ;
entity . insert ( " offset " , replacementStartOffset - offsetCorrection ) ;
entity . insert ( " length " , replacementPlainText . length ( ) ) ;
QVariantMap entityType ;
entityType . insert ( _TYPE , " textEntityTypeMentionName " ) ;
entityType . insert ( " user_id " , nextReplacement . value ( " userId " ) . toString ( ) ) ;
entity . insert ( " type " , entityType ) ;
entities . append ( entity ) ;
offsetCorrection + = replacementLength - replacementPlainText . length ( ) ;
}
formattedText . insert ( " entities " , entities ) ;
}
formattedText . insert ( " text " , processedMessage ) ;
2020-10-04 04:27:49 +03:00
formattedText . insert ( _TYPE , " formattedText " ) ;
2020-08-23 01:17:34 +03:00
inputMessageContent . insert ( " text " , formattedText ) ;
requestObject . insert ( " input_message_content " , inputMessageContent ) ;
this - > sendRequest ( requestObject ) ;
}
2020-09-27 14:49:06 +03:00
void TDLibWrapper : : sendPhotoMessage ( const QString & chatId , const QString & filePath , const QString & message , const QString & replyToMessageId )
{
2020-10-04 00:48:09 +03:00
LOG ( " Sending photo message " < < chatId < < filePath < < message < < replyToMessageId ) ;
2020-09-27 14:49:06 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " sendMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-09-27 14:49:06 +03:00
if ( replyToMessageId ! = " 0 " ) {
requestObject . insert ( " reply_to_message_id " , replyToMessageId ) ;
}
QVariantMap inputMessageContent ;
2020-10-04 04:27:49 +03:00
inputMessageContent . insert ( _TYPE , " inputMessagePhoto " ) ;
2020-09-27 14:49:06 +03:00
QVariantMap formattedText ;
formattedText . insert ( " text " , message ) ;
2020-10-04 04:27:49 +03:00
formattedText . insert ( _TYPE , " formattedText " ) ;
2020-09-27 14:49:06 +03:00
inputMessageContent . insert ( " caption " , formattedText ) ;
QVariantMap photoInputFile ;
2020-10-04 04:27:49 +03:00
photoInputFile . insert ( _TYPE , " inputFileLocal " ) ;
2020-09-27 14:49:06 +03:00
photoInputFile . insert ( " path " , filePath ) ;
inputMessageContent . insert ( " photo " , photoInputFile ) ;
requestObject . insert ( " input_message_content " , inputMessageContent ) ;
this - > sendRequest ( requestObject ) ;
}
2020-09-28 00:24:22 +03:00
void TDLibWrapper : : sendVideoMessage ( const QString & chatId , const QString & filePath , const QString & message , const QString & replyToMessageId )
{
2020-10-04 00:48:09 +03:00
LOG ( " Sending video message " < < chatId < < filePath < < message < < replyToMessageId ) ;
2020-09-28 00:24:22 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " sendMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-09-28 00:24:22 +03:00
if ( replyToMessageId ! = " 0 " ) {
requestObject . insert ( " reply_to_message_id " , replyToMessageId ) ;
}
QVariantMap inputMessageContent ;
2020-10-04 04:27:49 +03:00
inputMessageContent . insert ( _TYPE , " inputMessageVideo " ) ;
2020-09-28 00:24:22 +03:00
QVariantMap formattedText ;
formattedText . insert ( " text " , message ) ;
2020-10-04 04:27:49 +03:00
formattedText . insert ( _TYPE , " formattedText " ) ;
2020-09-28 00:24:22 +03:00
inputMessageContent . insert ( " caption " , formattedText ) ;
QVariantMap videoInputFile ;
2020-10-04 04:27:49 +03:00
videoInputFile . insert ( _TYPE , " inputFileLocal " ) ;
2020-09-28 00:24:22 +03:00
videoInputFile . insert ( " path " , filePath ) ;
inputMessageContent . insert ( " video " , videoInputFile ) ;
requestObject . insert ( " input_message_content " , inputMessageContent ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : sendDocumentMessage ( const QString & chatId , const QString & filePath , const QString & message , const QString & replyToMessageId )
{
2020-10-04 00:48:09 +03:00
LOG ( " Sending document message " < < chatId < < filePath < < message < < replyToMessageId ) ;
2020-09-28 00:24:22 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " sendMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-09-28 00:24:22 +03:00
if ( replyToMessageId ! = " 0 " ) {
requestObject . insert ( " reply_to_message_id " , replyToMessageId ) ;
}
QVariantMap inputMessageContent ;
2020-10-04 04:27:49 +03:00
inputMessageContent . insert ( _TYPE , " inputMessageDocument " ) ;
2020-09-28 00:24:22 +03:00
QVariantMap formattedText ;
formattedText . insert ( " text " , message ) ;
2020-10-04 04:27:49 +03:00
formattedText . insert ( _TYPE , " formattedText " ) ;
2020-09-28 00:24:22 +03:00
inputMessageContent . insert ( " caption " , formattedText ) ;
QVariantMap documentInputFile ;
2020-10-04 04:27:49 +03:00
documentInputFile . insert ( _TYPE , " inputFileLocal " ) ;
2020-09-28 00:24:22 +03:00
documentInputFile . insert ( " path " , filePath ) ;
inputMessageContent . insert ( " document " , documentInputFile ) ;
requestObject . insert ( " input_message_content " , inputMessageContent ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-02 19:22:09 +03:00
void TDLibWrapper : : sendVoiceNoteMessage ( const QString & chatId , const QString & filePath , const QString & message , const QString & replyToMessageId )
{
LOG ( " Sending voice note message " < < chatId < < filePath < < message < < replyToMessageId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " sendMessage " ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
if ( replyToMessageId ! = " 0 " ) {
requestObject . insert ( " reply_to_message_id " , replyToMessageId ) ;
}
QVariantMap inputMessageContent ;
inputMessageContent . insert ( _TYPE , " inputMessageVoiceNote " ) ;
QVariantMap formattedText ;
formattedText . insert ( " text " , message ) ;
formattedText . insert ( _TYPE , " formattedText " ) ;
inputMessageContent . insert ( " caption " , formattedText ) ;
QVariantMap documentInputFile ;
documentInputFile . insert ( _TYPE , " inputFileLocal " ) ;
documentInputFile . insert ( " path " , filePath ) ;
inputMessageContent . insert ( " voice_note " , documentInputFile ) ;
requestObject . insert ( " input_message_content " , inputMessageContent ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-03 03:22:30 +03:00
void TDLibWrapper : : sendLocationMessage ( const QString & chatId , double latitude , double longitude , double horizontalAccuracy , const QString & replyToMessageId )
{
LOG ( " Sending location message " < < chatId < < latitude < < longitude < < horizontalAccuracy < < replyToMessageId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " sendMessage " ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
if ( replyToMessageId ! = " 0 " ) {
requestObject . insert ( " reply_to_message_id " , replyToMessageId ) ;
}
QVariantMap inputMessageContent ;
inputMessageContent . insert ( _TYPE , " inputMessageLocation " ) ;
QVariantMap location ;
location . insert ( " latitude " , latitude ) ;
location . insert ( " longitude " , longitude ) ;
location . insert ( " horizontal_accuracy " , horizontalAccuracy ) ;
location . insert ( _TYPE , " location " ) ;
inputMessageContent . insert ( " location " , location ) ;
inputMessageContent . insert ( " live_period " , 0 ) ;
inputMessageContent . insert ( " heading " , 0 ) ;
inputMessageContent . insert ( " proximity_alert_radius " , 0 ) ;
requestObject . insert ( " input_message_content " , inputMessageContent ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-16 00:43:55 +03:00
void TDLibWrapper : : sendStickerMessage ( const QString & chatId , const QString & fileId , const QString & replyToMessageId )
2020-10-12 23:44:21 +03:00
{
2020-10-16 00:43:55 +03:00
LOG ( " Sending sticker message " < < chatId < < fileId < < replyToMessageId ) ;
2020-10-12 23:44:21 +03:00
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " sendMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-10-12 23:44:21 +03:00
if ( replyToMessageId ! = " 0 " ) {
requestObject . insert ( " reply_to_message_id " , replyToMessageId ) ;
}
QVariantMap inputMessageContent ;
inputMessageContent . insert ( _TYPE , " inputMessageSticker " ) ;
2020-10-15 00:25:56 +03:00
QVariantMap stickerInputFile ;
2020-10-16 00:43:55 +03:00
stickerInputFile . insert ( _TYPE , " inputFileRemote " ) ;
stickerInputFile . insert ( " id " , fileId ) ;
2020-10-15 00:25:56 +03:00
inputMessageContent . insert ( " sticker " , stickerInputFile ) ;
2020-10-12 23:44:21 +03:00
requestObject . insert ( " input_message_content " , inputMessageContent ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-22 13:12:12 +03:00
void TDLibWrapper : : sendPollMessage ( const QString & chatId , const QString & question , const QVariantList & options , bool anonymous , int correctOption , bool multiple , const QString & explanation , const QString & replyToMessageId )
2020-10-23 11:29:50 +03:00
{
LOG ( " Sending poll message " < < chatId < < question < < replyToMessageId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " sendMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-10-23 11:29:50 +03:00
if ( replyToMessageId ! = " 0 " ) {
requestObject . insert ( " reply_to_message_id " , replyToMessageId ) ;
}
QVariantMap inputMessageContent ;
inputMessageContent . insert ( _TYPE , " inputMessagePoll " ) ;
QVariantMap pollType ;
if ( correctOption > - 1 ) {
pollType . insert ( _TYPE , " pollTypeQuiz " ) ;
pollType . insert ( " correct_option_id " , correctOption ) ;
2021-01-22 13:12:12 +03:00
if ( ! explanation . isEmpty ( ) ) {
QVariantMap formattedExplanation ;
formattedExplanation . insert ( " text " , explanation ) ;
pollType . insert ( " explanation " , formattedExplanation ) ;
}
2020-10-23 11:29:50 +03:00
} else {
pollType . insert ( _TYPE , " pollTypeRegular " ) ;
pollType . insert ( " allow_multiple_answers " , multiple ) ;
}
inputMessageContent . insert ( " type " , pollType ) ;
inputMessageContent . insert ( " question " , question ) ;
inputMessageContent . insert ( " options " , options ) ;
inputMessageContent . insert ( " is_anonymous " , anonymous ) ;
requestObject . insert ( " input_message_content " , inputMessageContent ) ;
this - > sendRequest ( requestObject ) ;
}
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : forwardMessages ( const QString & chatId , const QString & fromChatId , const QVariantList & messageIds , bool sendCopy , bool removeCaption )
2020-11-15 01:50:12 +03:00
{
LOG ( " Forwarding messages " < < chatId < < fromChatId < < messageIds ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " forwardMessages " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-11-15 01:50:12 +03:00
requestObject . insert ( " from_chat_id " , fromChatId ) ;
requestObject . insert ( " message_ids " , messageIds ) ;
requestObject . insert ( " send_copy " , sendCopy ) ;
requestObject . insert ( " remove_caption " , removeCaption ) ;
this - > sendRequest ( requestObject ) ;
}
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : getMessage ( qlonglong chatId , qlonglong messageId )
2020-08-25 17:42:46 +03:00
{
2020-10-04 00:48:09 +03:00
LOG ( " Retrieving message " < < chatId < < messageId ) ;
2020-08-25 17:42:46 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " getMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( MESSAGE_ID , messageId ) ;
requestObject . insert ( _EXTRA , QString ( " getMessage:%1:%2 " ) . arg ( chatId ) . arg ( messageId ) ) ;
2020-08-25 17:42:46 +03:00
this - > sendRequest ( requestObject ) ;
}
2021-12-11 20:29:31 +03:00
void TDLibWrapper : : getMessageLinkInfo ( const QString & url , const QString & extra )
2021-12-08 02:33:35 +03:00
{
2021-12-11 20:29:31 +03:00
LOG ( " Retrieving message link info " < < url < < extra ) ;
2021-12-08 02:33:35 +03:00
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getMessageLinkInfo " ) ;
requestObject . insert ( " url " , url ) ;
2021-12-11 20:29:31 +03:00
if ( extra = = " " ) {
requestObject . insert ( _EXTRA , url ) ;
} else {
requestObject . insert ( _EXTRA , url + " | " + extra ) ;
}
2021-12-08 02:33:35 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-12-27 02:01:59 +03:00
void TDLibWrapper : : getCallbackQueryAnswer ( const QString & chatId , const QString & messageId , const QVariantMap & payload )
{
LOG ( " Getting Callback Query Answer " < < chatId < < messageId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getCallbackQueryAnswer " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( MESSAGE_ID , messageId ) ;
2020-12-27 02:01:59 +03:00
requestObject . insert ( " payload " , payload ) ;
this - > sendRequest ( requestObject ) ;
}
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : getChatPinnedMessage ( qlonglong chatId )
2020-12-26 00:38:13 +03:00
{
LOG ( " Retrieving pinned message " < < chatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getChatPinnedMessage " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-12-26 00:38:13 +03:00
requestObject . insert ( _EXTRA , " getChatPinnedMessage: " + QString : : number ( chatId ) ) ;
this - > sendRequest ( requestObject ) ;
}
2021-12-06 00:06:05 +03:00
void TDLibWrapper : : getChatSponsoredMessages ( qlonglong chatId )
{
LOG ( " Retrieving sponsored messages " < < chatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getChatSponsoredMessages " ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
2021-12-06 05:29:40 +03:00
requestObject . insert ( _EXTRA , chatId ) ; // see TDLibReceiver::processSponsoredMessages
2021-12-06 00:06:05 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-10-24 02:05:49 +03:00
void TDLibWrapper : : setOptionInteger ( const QString & optionName , int optionValue )
2020-09-02 00:14:59 +03:00
{
2020-10-04 00:48:09 +03:00
LOG ( " Setting integer option " < < optionName < < optionValue ) ;
2020-11-24 01:15:17 +03:00
setOption ( optionName , " optionValueInteger " , optionValue ) ;
}
void TDLibWrapper : : setOptionBoolean ( const QString & optionName , bool optionValue )
{
LOG ( " Setting boolean option " < < optionName < < optionValue ) ;
setOption ( optionName , " optionValueBoolean " , optionValue ) ;
}
void TDLibWrapper : : setOption ( const QString & name , const QString & type , const QVariant & value )
{
QVariantMap optionValue ;
optionValue . insert ( _TYPE , type ) ;
optionValue . insert ( VALUE , value ) ;
QVariantMap request ;
request . insert ( _TYPE , " setOption " ) ;
request . insert ( " name " , name ) ;
request . insert ( VALUE , optionValue ) ;
sendRequest ( request ) ;
2020-09-02 00:14:59 +03:00
}
2020-09-16 01:15:43 +03:00
void TDLibWrapper : : setChatNotificationSettings ( const QString & chatId , const QVariantMap & notificationSettings )
{
2020-10-04 00:48:09 +03:00
LOG ( " Notification settings for chat " < < chatId < < notificationSettings ) ;
2020-09-16 01:15:43 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " setChatNotificationSettings " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-09-16 01:15:43 +03:00
requestObject . insert ( " notification_settings " , notificationSettings ) ;
this - > sendRequest ( requestObject ) ;
}
2020-09-19 21:33:51 +03:00
void TDLibWrapper : : editMessageText ( const QString & chatId , const QString & messageId , const QString & message )
{
2020-10-04 00:48:09 +03:00
LOG ( " Editing message text " < < chatId < < messageId ) ;
2020-09-19 21:33:51 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " editMessageText " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( MESSAGE_ID , messageId ) ;
2020-09-19 21:33:51 +03:00
QVariantMap inputMessageContent ;
2020-10-04 04:27:49 +03:00
inputMessageContent . insert ( _TYPE , " inputMessageText " ) ;
2020-09-19 21:33:51 +03:00
QVariantMap formattedText ;
formattedText . insert ( " text " , message ) ;
inputMessageContent . insert ( " text " , formattedText ) ;
requestObject . insert ( " input_message_content " , inputMessageContent ) ;
this - > sendRequest ( requestObject ) ;
}
2020-09-20 01:13:42 +03:00
void TDLibWrapper : : deleteMessages ( const QString & chatId , const QVariantList messageIds )
{
2020-10-04 00:48:09 +03:00
LOG ( " Deleting some messages " < < chatId < < messageIds ) ;
2020-09-20 01:13:42 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " deleteMessages " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-09-20 01:13:42 +03:00
requestObject . insert ( " message_ids " , messageIds ) ;
requestObject . insert ( " revoke " , true ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-10 04:06:41 +03:00
void TDLibWrapper : : getMapThumbnailFile ( const QString & chatId , double latitude , double longitude , int width , int height , const QString & extra )
2020-09-28 23:58:11 +03:00
{
2020-10-04 00:48:09 +03:00
LOG ( " Getting Map Thumbnail File " < < chatId ) ;
2020-09-28 23:58:11 +03:00
QVariantMap location ;
location . insert ( " latitude " , latitude ) ;
location . insert ( " longitude " , longitude ) ;
// ensure dimensions are in bounds (16 - 1024)
int boundsWidth = std : : min ( std : : max ( width , 16 ) , 1024 ) ;
int boundsHeight = std : : min ( std : : max ( height , 16 ) , 1024 ) ;
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " getMapThumbnailFile " ) ;
2020-09-28 23:58:11 +03:00
requestObject . insert ( " location " , location ) ;
requestObject . insert ( " zoom " , 17 ) ; //13-20
requestObject . insert ( " width " , boundsWidth ) ;
requestObject . insert ( " height " , boundsHeight ) ;
requestObject . insert ( " scale " , 1 ) ; // 1-3
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2021-01-10 04:06:41 +03:00
requestObject . insert ( _EXTRA , extra ) ;
2020-09-28 23:58:11 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-10-06 00:08:47 +03:00
void TDLibWrapper : : getRecentStickers ( )
{
LOG ( " Retrieving recent stickers " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getRecentStickers " ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : getInstalledStickerSets ( )
{
LOG ( " Retrieving installed sticker sets " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getInstalledStickerSets " ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-15 00:25:56 +03:00
void TDLibWrapper : : getStickerSet ( const QString & setId )
{
LOG ( " Retrieving sticker set " < < setId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getStickerSet " ) ;
requestObject . insert ( " set_id " , setId ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-24 02:05:49 +03:00
void TDLibWrapper : : getSupergroupMembers ( const QString & groupId , int limit , int offset )
2020-10-19 13:20:02 +03:00
{
LOG ( " Retrieving SupergroupMembers " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getSupergroupMembers " ) ;
requestObject . insert ( _EXTRA , groupId ) ;
requestObject . insert ( " supergroup_id " , groupId ) ;
requestObject . insert ( " offset " , offset ) ;
requestObject . insert ( " limit " , limit ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-24 02:05:49 +03:00
void TDLibWrapper : : getGroupFullInfo ( const QString & groupId , bool isSuperGroup )
2020-10-19 13:20:02 +03:00
{
LOG ( " Retrieving GroupFullInfo " ) ;
QVariantMap requestObject ;
if ( isSuperGroup ) {
requestObject . insert ( _TYPE , " getSupergroupFullInfo " ) ;
requestObject . insert ( " supergroup_id " , groupId ) ;
} else {
requestObject . insert ( _TYPE , " getBasicGroupFullInfo " ) ;
requestObject . insert ( " basic_group_id " , groupId ) ;
}
requestObject . insert ( _EXTRA , groupId ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : getUserFullInfo ( const QString & userId )
{
2020-11-20 20:30:33 +03:00
LOG ( " Retrieving UserFullInfo " < < userId ) ;
2020-10-19 13:20:02 +03:00
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getUserFullInfo " ) ;
requestObject . insert ( _EXTRA , userId ) ;
requestObject . insert ( " user_id " , userId ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-10 04:06:41 +03:00
void TDLibWrapper : : createPrivateChat ( const QString & userId , const QString & extra )
2020-10-19 13:20:02 +03:00
{
LOG ( " Creating Private Chat " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " createPrivateChat " ) ;
requestObject . insert ( " user_id " , userId ) ;
2021-01-10 04:06:41 +03:00
requestObject . insert ( _EXTRA , extra ) ; //"openDirectly"/"openAndSendStartToBot:[optional parameter]" gets matched in qml
2020-10-19 13:20:02 +03:00
this - > sendRequest ( requestObject ) ;
}
2021-01-10 04:06:41 +03:00
void TDLibWrapper : : createNewSecretChat ( const QString & userId , const QString & extra )
2020-11-24 18:13:16 +03:00
{
LOG ( " Creating new secret chat " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " createNewSecretChat " ) ;
requestObject . insert ( " user_id " , userId ) ;
2021-01-10 04:06:41 +03:00
requestObject . insert ( _EXTRA , extra ) ; //"openDirectly" gets matched in qml
2020-11-24 18:13:16 +03:00
this - > sendRequest ( requestObject ) ;
}
2021-01-10 04:06:41 +03:00
void TDLibWrapper : : createSupergroupChat ( const QString & supergroupId , const QString & extra )
2020-11-05 02:02:27 +03:00
{
LOG ( " Creating Supergroup Chat " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " createSupergroupChat " ) ;
requestObject . insert ( " supergroup_id " , supergroupId ) ;
2021-01-10 04:06:41 +03:00
requestObject . insert ( _EXTRA , extra ) ; //"openDirectly" gets matched in qml
2020-11-05 02:02:27 +03:00
this - > sendRequest ( requestObject ) ;
}
2021-01-10 04:06:41 +03:00
void TDLibWrapper : : createBasicGroupChat ( const QString & basicGroupId , const QString & extra )
2020-11-05 02:02:27 +03:00
{
LOG ( " Creating Basic Group Chat " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " createBasicGroupChat " ) ;
requestObject . insert ( " basic_group_id " , basicGroupId ) ;
2021-01-10 04:06:41 +03:00
requestObject . insert ( _EXTRA , extra ) ; //"openDirectly"/"openAndSend:*" gets matched in qml
2020-11-05 02:02:27 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-10-24 02:05:49 +03:00
void TDLibWrapper : : getGroupsInCommon ( const QString & userId , int limit , int offset )
2020-10-19 13:20:02 +03:00
{
LOG ( " Retrieving Groups in Common " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getGroupsInCommon " ) ;
requestObject . insert ( _EXTRA , userId ) ;
requestObject . insert ( " user_id " , userId ) ;
requestObject . insert ( " offset " , offset ) ;
requestObject . insert ( " limit " , limit ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-24 02:05:49 +03:00
void TDLibWrapper : : getUserProfilePhotos ( const QString & userId , int limit , int offset )
2020-10-19 13:20:02 +03:00
{
LOG ( " Retrieving User Profile Photos " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getUserProfilePhotos " ) ;
requestObject . insert ( _EXTRA , userId ) ;
requestObject . insert ( " user_id " , userId ) ;
requestObject . insert ( " offset " , offset ) ;
requestObject . insert ( " limit " , limit ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : setChatPermissions ( const QString & chatId , const QVariantMap & chatPermissions )
{
LOG ( " Setting Chat Permissions " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setChatPermissions " ) ;
requestObject . insert ( _EXTRA , chatId ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-10-19 13:20:02 +03:00
requestObject . insert ( " permissions " , chatPermissions ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-24 02:05:49 +03:00
void TDLibWrapper : : setChatSlowModeDelay ( const QString & chatId , int delay )
2020-10-19 13:20:02 +03:00
{
LOG ( " Setting Chat Slow Mode Delay " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setChatSlowModeDelay " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-10-19 13:20:02 +03:00
requestObject . insert ( " slow_mode_delay " , delay ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : setChatDescription ( const QString & chatId , const QString & description )
{
LOG ( " Setting Chat Description " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setChatDescription " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-10-19 13:20:02 +03:00
requestObject . insert ( " description " , description ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : setChatTitle ( const QString & chatId , const QString & title )
{
LOG ( " Setting Chat Title " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setChatTitle " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-10-19 13:20:02 +03:00
requestObject . insert ( " title " , title ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : setBio ( const QString & bio )
{
LOG ( " Setting Bio " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setBio " ) ;
requestObject . insert ( " bio " , bio ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-24 02:05:49 +03:00
void TDLibWrapper : : toggleSupergroupIsAllHistoryAvailable ( const QString & groupId , bool isAllHistoryAvailable )
2020-10-19 13:20:02 +03:00
{
LOG ( " Toggling SupergroupIsAllHistoryAvailable " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " toggleSupergroupIsAllHistoryAvailable " ) ;
requestObject . insert ( " supergroup_id " , groupId ) ;
requestObject . insert ( " is_all_history_available " , isAllHistoryAvailable ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-15 00:25:56 +03:00
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : setPollAnswer ( const QString & chatId , qlonglong messageId , QVariantList optionIds )
2020-10-23 11:29:50 +03:00
{
LOG ( " Setting Poll Answer " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setPollAnswer " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( MESSAGE_ID , messageId ) ;
2020-10-23 11:29:50 +03:00
requestObject . insert ( " option_ids " , optionIds ) ;
this - > sendRequest ( requestObject ) ;
}
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : stopPoll ( const QString & chatId , qlonglong messageId )
2020-10-23 11:29:50 +03:00
{
LOG ( " Stopping Poll " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " stopPoll " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( MESSAGE_ID , messageId ) ;
2020-10-23 11:29:50 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : getPollVoters ( const QString & chatId , qlonglong messageId , int optionId , int limit , int offset , const QString & extra )
2020-10-23 11:29:50 +03:00
{
LOG ( " Retrieving Poll Voters " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getPollVoters " ) ;
requestObject . insert ( _EXTRA , extra ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( MESSAGE_ID , messageId ) ;
2020-10-23 11:29:50 +03:00
requestObject . insert ( " option_id " , optionId ) ;
requestObject . insert ( " offset " , offset ) ;
requestObject . insert ( " limit " , limit ) ; //max 50
this - > sendRequest ( requestObject ) ;
}
2021-01-10 04:06:41 +03:00
void TDLibWrapper : : searchPublicChat ( const QString & userName , bool doOpenOnFound )
2020-11-04 01:39:09 +03:00
{
LOG ( " Search public chat " < < userName ) ;
2021-01-10 04:06:41 +03:00
if ( doOpenOnFound ) {
this - > activeChatSearchName = userName ;
}
2020-11-04 01:39:09 +03:00
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " searchPublicChat " ) ;
2021-01-10 04:06:41 +03:00
requestObject . insert ( _EXTRA , " searchPublicChat: " + userName ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( USERNAME , userName ) ;
2020-11-04 01:39:09 +03:00
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : joinChatByInviteLink ( const QString & inviteLink )
{
LOG ( " Join chat by invite link " < < inviteLink ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " joinChatByInviteLink " ) ;
requestObject . insert ( " invite_link " , inviteLink ) ;
2020-11-10 01:22:24 +03:00
this - > joinChatRequested = true ;
2020-11-04 01:39:09 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-11-08 23:13:04 +03:00
void TDLibWrapper : : getDeepLinkInfo ( const QString & link )
{
LOG ( " Resolving TG deep link " < < link ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getDeepLinkInfo " ) ;
requestObject . insert ( " link " , link ) ;
this - > sendRequest ( requestObject ) ;
}
2020-11-20 20:30:33 +03:00
void TDLibWrapper : : getContacts ( )
{
LOG ( " Retrieving contacts " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getContacts " ) ;
2020-11-23 22:53:43 +03:00
requestObject . insert ( _EXTRA , " contactsRequested " ) ;
2020-11-25 02:23:38 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-11-27 21:42:39 +03:00
void TDLibWrapper : : getSecretChat ( qlonglong secretChatId )
2020-11-25 02:23:38 +03:00
{
LOG ( " Getting detailed information about secret chat " < < secretChatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getSecretChat " ) ;
requestObject . insert ( " secret_chat_id " , secretChatId ) ;
2020-11-20 20:30:33 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-11-27 21:42:39 +03:00
void TDLibWrapper : : closeSecretChat ( qlonglong secretChatId )
2020-11-26 18:11:12 +03:00
{
LOG ( " Closing secret chat " < < secretChatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " closeSecretChat " ) ;
requestObject . insert ( " secret_chat_id " , secretChatId ) ;
this - > sendRequest ( requestObject ) ;
}
2020-11-27 00:18:51 +03:00
void TDLibWrapper : : importContacts ( const QVariantList & contacts )
{
LOG ( " Importing contacts " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " importContacts " ) ;
requestObject . insert ( " contacts " , contacts ) ;
this - > sendRequest ( requestObject ) ;
}
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : searchChatMessages ( qlonglong chatId , const QString & query , qlonglong fromMessageId )
2020-12-27 02:16:25 +03:00
{
2020-12-28 19:12:21 +03:00
LOG ( " Searching for messages " < < chatId < < query < < fromMessageId ) ;
2020-12-27 02:16:25 +03:00
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " searchChatMessages " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-12-27 02:16:25 +03:00
requestObject . insert ( " query " , query ) ;
requestObject . insert ( " from_message_id " , fromMessageId ) ;
requestObject . insert ( " offset " , 0 ) ;
2020-12-28 19:12:21 +03:00
requestObject . insert ( " limit " , 50 ) ;
2020-12-27 02:16:25 +03:00
requestObject . insert ( _EXTRA , " searchChatMessages " ) ;
this - > sendRequest ( requestObject ) ;
}
2020-12-28 01:30:25 +03:00
void TDLibWrapper : : searchPublicChats ( const QString & query )
{
LOG ( " Searching public chats " < < query ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " searchPublicChats " ) ;
requestObject . insert ( " query " , query ) ;
requestObject . insert ( _EXTRA , " searchPublicChats " ) ;
2020-12-29 11:12:57 +03:00
this - > sendRequest ( requestObject ) ;
2020-12-29 00:16:59 +03:00
}
2020-12-28 23:57:34 +03:00
void TDLibWrapper : : readAllChatMentions ( qlonglong chatId )
{
LOG ( " Read all chat mentions " < < chatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " readAllChatMentions " ) ;
2020-12-30 19:11:01 +03:00
requestObject . insert ( CHAT_ID , chatId ) ;
2020-12-28 01:30:25 +03:00
this - > sendRequest ( requestObject ) ;
}
2020-12-31 02:19:36 +03:00
void TDLibWrapper : : toggleChatIsMarkedAsUnread ( qlonglong chatId , bool isMarkedAsUnread )
{
LOG ( " Toggle chat is marked as unread " < < chatId < < isMarkedAsUnread ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " toggleChatIsMarkedAsUnread " ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( " is_marked_as_unread " , isMarkedAsUnread ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-08 00:47:42 +03:00
void TDLibWrapper : : toggleChatIsPinned ( qlonglong chatId , bool isPinned )
{
LOG ( " Toggle chat is pinned " < < chatId < < isPinned ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " toggleChatIsPinned " ) ;
QVariantMap chatListMap ;
chatListMap . insert ( _TYPE , CHAT_LIST_MAIN ) ;
requestObject . insert ( " chat_list " , chatListMap ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( " is_pinned " , isPinned ) ;
requestObject . insert ( " is_marked_as_unread " , isPinned ) ;
this - > sendRequest ( requestObject ) ;
}
2020-12-31 02:59:05 +03:00
void TDLibWrapper : : setChatDraftMessage ( qlonglong chatId , qlonglong threadId , qlonglong replyToMessageId , const QString & draft )
{
LOG ( " Set Draft Message " < < chatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setChatDraftMessage " ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( THREAD_ID , threadId ) ;
QVariantMap draftMessage ;
QVariantMap inputMessageContent ;
QVariantMap formattedText ;
formattedText . insert ( " text " , draft ) ;
formattedText . insert ( " clear_draft " , draft . isEmpty ( ) ) ;
formattedText . insert ( _TYPE , " formattedText " ) ;
inputMessageContent . insert ( _TYPE , " inputMessageText " ) ;
inputMessageContent . insert ( " text " , formattedText ) ;
draftMessage . insert ( _TYPE , " draftMessage " ) ;
draftMessage . insert ( " reply_to_message_id " , replyToMessageId ) ;
draftMessage . insert ( " input_message_text " , inputMessageContent ) ;
requestObject . insert ( " draft_message " , draftMessage ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-10 04:06:41 +03:00
void TDLibWrapper : : getInlineQueryResults ( qlonglong botUserId , qlonglong chatId , const QVariantMap & userLocation , const QString & query , const QString & offset , const QString & extra )
{
LOG ( " Get Inline Query Results " < < chatId < < query ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getInlineQueryResults " ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( " bot_user_id " , botUserId ) ;
if ( ! userLocation . isEmpty ( ) ) {
requestObject . insert ( " user_location " , userLocation ) ;
}
requestObject . insert ( " query " , query ) ;
requestObject . insert ( " offset " , offset ) ;
requestObject . insert ( _EXTRA , extra ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : sendInlineQueryResultMessage ( qlonglong chatId , qlonglong threadId , qlonglong replyToMessageId , const QString & queryId , const QString & resultId )
{
LOG ( " Send Inline Query Result Message " < < chatId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " sendInlineQueryResultMessage " ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( " message_thread_id " , threadId ) ;
requestObject . insert ( " reply_to_message_id " , replyToMessageId ) ;
requestObject . insert ( " query_id " , queryId ) ;
requestObject . insert ( " result_id " , resultId ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : sendBotStartMessage ( qlonglong botUserId , qlonglong chatId , const QString & parameter , const QString & extra )
{
LOG ( " Send Bot Start Message " < < botUserId < < chatId < < parameter < < extra ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " sendBotStartMessage " ) ;
requestObject . insert ( " bot_user_id " , botUserId ) ;
requestObject . insert ( CHAT_ID , chatId ) ;
requestObject . insert ( " parameter " , parameter ) ;
requestObject . insert ( _EXTRA , extra ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-17 23:19:29 +03:00
void TDLibWrapper : : cancelDownloadFile ( int fileId )
{
LOG ( " Cancel Download File " < < fileId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " cancelDownloadFile " ) ;
requestObject . insert ( " file_id " , fileId ) ;
requestObject . insert ( " only_if_pending " , false ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : cancelUploadFile ( int fileId )
{
LOG ( " Cancel Upload File " < < fileId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " cancelUploadFile " ) ;
requestObject . insert ( " file_id " , fileId ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : deleteFile ( int fileId )
{
LOG ( " Delete cached File " < < fileId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " deleteFile " ) ;
requestObject . insert ( " file_id " , fileId ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-19 02:02:37 +03:00
void TDLibWrapper : : setName ( const QString & firstName , const QString & lastName )
{
LOG ( " Set name of current user " < < firstName < < lastName ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setName " ) ;
requestObject . insert ( " first_name " , firstName ) ;
requestObject . insert ( " last_name " , lastName ) ;
this - > sendRequest ( requestObject ) ;
}
2021-01-20 01:58:58 +03:00
void TDLibWrapper : : setUsername ( const QString & userName )
{
LOG ( " Set username of current user " < < userName ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setUsername " ) ;
requestObject . insert ( " username " , userName ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : setUserPrivacySettingRule ( TDLibWrapper : : UserPrivacySetting setting , TDLibWrapper : : UserPrivacySettingRule rule )
{
2021-01-25 01:46:30 +03:00
LOG ( " Set user privacy setting rule of current user " < < setting < < rule ) ;
2021-01-20 01:58:58 +03:00
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setUserPrivacySettingRules " ) ;
QVariantMap settingMap ;
switch ( setting ) {
case SettingShowStatus :
settingMap . insert ( _TYPE , " userPrivacySettingShowStatus " ) ;
break ;
case SettingShowPhoneNumber :
settingMap . insert ( _TYPE , " userPrivacySettingShowPhoneNumber " ) ;
break ;
case SettingAllowChatInvites :
settingMap . insert ( _TYPE , " userPrivacySettingAllowChatInvites " ) ;
break ;
case SettingShowProfilePhoto :
settingMap . insert ( _TYPE , " userPrivacySettingShowProfilePhoto " ) ;
break ;
case SettingAllowFindingByPhoneNumber :
settingMap . insert ( _TYPE , " userPrivacySettingAllowFindingByPhoneNumber " ) ;
break ;
case SettingShowLinkInForwardedMessages :
settingMap . insert ( _TYPE , " userPrivacySettingShowLinkInForwardedMessages " ) ;
break ;
2021-01-25 01:46:30 +03:00
case SettingUnknown :
return ;
2021-01-20 01:58:58 +03:00
}
requestObject . insert ( " setting " , settingMap ) ;
QVariantMap ruleMap ;
switch ( rule ) {
case RuleAllowAll :
ruleMap . insert ( _TYPE , " userPrivacySettingRuleAllowAll " ) ;
break ;
case RuleAllowContacts :
ruleMap . insert ( _TYPE , " userPrivacySettingRuleAllowContacts " ) ;
break ;
case RuleRestrictAll :
ruleMap . insert ( _TYPE , " userPrivacySettingRuleRestrictAll " ) ;
break ;
}
QVariantList ruleMaps ;
ruleMaps . append ( ruleMap ) ;
2021-01-25 01:46:30 +03:00
QVariantMap encapsulatedRules ;
encapsulatedRules . insert ( _TYPE , " userPrivacySettingRules " ) ;
encapsulatedRules . insert ( " rules " , ruleMaps ) ;
requestObject . insert ( " rules " , encapsulatedRules ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : getUserPrivacySettingRules ( TDLibWrapper : : UserPrivacySetting setting )
{
LOG ( " Getting user privacy setting rules of current user " < < setting ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getUserPrivacySettingRules " ) ;
requestObject . insert ( _EXTRA , setting ) ;
QVariantMap settingMap ;
switch ( setting ) {
case SettingShowStatus :
settingMap . insert ( _TYPE , " userPrivacySettingShowStatus " ) ;
break ;
case SettingShowPhoneNumber :
settingMap . insert ( _TYPE , " userPrivacySettingShowPhoneNumber " ) ;
break ;
case SettingAllowChatInvites :
settingMap . insert ( _TYPE , " userPrivacySettingAllowChatInvites " ) ;
break ;
case SettingShowProfilePhoto :
settingMap . insert ( _TYPE , " userPrivacySettingShowProfilePhoto " ) ;
break ;
case SettingAllowFindingByPhoneNumber :
settingMap . insert ( _TYPE , " userPrivacySettingAllowFindingByPhoneNumber " ) ;
break ;
case SettingShowLinkInForwardedMessages :
settingMap . insert ( _TYPE , " userPrivacySettingShowLinkInForwardedMessages " ) ;
break ;
case SettingUnknown :
return ;
}
requestObject . insert ( " setting " , settingMap ) ;
2021-01-20 01:58:58 +03:00
this - > sendRequest ( requestObject ) ;
}
2021-01-27 01:26:40 +03:00
void TDLibWrapper : : setProfilePhoto ( const QString & filePath )
{
LOG ( " Set a profile photo " < < filePath ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " setProfilePhoto " ) ;
2021-01-27 01:54:37 +03:00
requestObject . insert ( _EXTRA , " setProfilePhoto " ) ;
2021-01-27 01:26:40 +03:00
QVariantMap inputChatPhoto ;
inputChatPhoto . insert ( _TYPE , " inputChatPhotoStatic " ) ;
QVariantMap inputFile ;
inputFile . insert ( _TYPE , " inputFileLocal " ) ;
inputFile . insert ( " path " , filePath ) ;
inputChatPhoto . insert ( " photo " , inputFile ) ;
requestObject . insert ( " photo " , inputChatPhoto ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : deleteProfilePhoto ( const QString & profilePhotoId )
{
LOG ( " Delete a profile photo " < < profilePhotoId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " deleteProfilePhoto " ) ;
requestObject . insert ( _EXTRA , " deleteProfilePhoto " ) ;
requestObject . insert ( " profile_photo_id " , profilePhotoId ) ;
this - > sendRequest ( requestObject ) ;
}
2021-02-12 01:39:56 +03:00
void TDLibWrapper : : changeStickerSet ( const QString & stickerSetId , bool isInstalled )
{
LOG ( " Change sticker set " < < stickerSetId < < isInstalled ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " changeStickerSet " ) ;
2021-02-13 02:34:01 +03:00
requestObject . insert ( _EXTRA , isInstalled ? " installStickerSet " : " removeStickerSet " ) ;
2021-02-12 01:39:56 +03:00
requestObject . insert ( " set_id " , stickerSetId ) ;
requestObject . insert ( " is_installed " , isInstalled ) ;
this - > sendRequest ( requestObject ) ;
}
2021-02-20 02:14:43 +03:00
void TDLibWrapper : : getActiveSessions ( )
{
LOG ( " Get active sessions " ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " getActiveSessions " ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : terminateSession ( const QString & sessionId )
{
LOG ( " Terminate session " < < sessionId ) ;
QVariantMap requestObject ;
requestObject . insert ( _TYPE , " terminateSession " ) ;
requestObject . insert ( _EXTRA , " terminateSession " ) ;
requestObject . insert ( " session_id " , sessionId ) ;
this - > sendRequest ( requestObject ) ;
}
2020-10-18 19:57:01 +03:00
void TDLibWrapper : : searchEmoji ( const QString & queryString )
{
LOG ( " Searching emoji " < < queryString ) ;
while ( this - > emojiSearchWorker . isRunning ( ) ) {
this - > emojiSearchWorker . requestInterruption ( ) ;
}
this - > emojiSearchWorker . setParameters ( queryString ) ;
this - > emojiSearchWorker . start ( ) ;
}
2020-08-13 23:32:35 +03:00
QVariantMap TDLibWrapper : : getUserInformation ( )
{
return this - > userInformation ;
}
2020-08-16 18:38:51 +03:00
QVariantMap TDLibWrapper : : getUserInformation ( const QString & userId )
{
2020-10-04 00:48:09 +03:00
// LOG("Returning user information for ID" << userId);
2020-08-20 01:24:24 +03:00
return this - > allUsers . value ( userId ) . toMap ( ) ;
2020-08-16 18:38:51 +03:00
}
2020-11-20 20:30:33 +03:00
bool TDLibWrapper : : hasUserInformation ( const QString & userId )
{
return this - > allUsers . contains ( userId ) ;
}
2020-11-04 00:21:01 +03:00
QVariantMap TDLibWrapper : : getUserInformationByName ( const QString & userName )
{
return this - > allUserNames . value ( userName ) . toMap ( ) ;
}
2021-01-25 01:46:30 +03:00
TDLibWrapper : : UserPrivacySettingRule TDLibWrapper : : getUserPrivacySettingRule ( TDLibWrapper : : UserPrivacySetting userPrivacySetting )
{
return this - > userPrivacySettingRules . value ( userPrivacySetting , UserPrivacySettingRule : : RuleAllowAll ) ;
}
2020-08-17 00:31:20 +03:00
QVariantMap TDLibWrapper : : getUnreadMessageInformation ( )
{
return this - > unreadMessageInformation ;
}
QVariantMap TDLibWrapper : : getUnreadChatInformation ( )
{
return this - > unreadChatInformation ;
}
2020-10-04 04:27:49 +03:00
QVariantMap TDLibWrapper : : getBasicGroup ( qlonglong groupId ) const
2020-08-21 19:03:51 +03:00
{
2020-10-04 04:27:49 +03:00
const Group * group = basicGroups . value ( groupId ) ;
if ( group ) {
LOG ( " Returning basic group information for ID " < < groupId ) ;
return group - > groupInfo ;
} else {
LOG ( " No super group information for ID " < < groupId ) ;
return QVariantMap ( ) ;
}
2020-08-21 19:03:51 +03:00
}
2020-10-04 04:27:49 +03:00
QVariantMap TDLibWrapper : : getSuperGroup ( qlonglong groupId ) const
2020-08-21 19:03:51 +03:00
{
2020-10-04 04:27:49 +03:00
const Group * group = superGroups . value ( groupId ) ;
if ( group ) {
LOG ( " Returning super group information for ID " < < groupId ) ;
return group - > groupInfo ;
} else {
LOG ( " No super group information for ID " < < groupId ) ;
return QVariantMap ( ) ;
}
2020-08-21 19:03:51 +03:00
}
2020-09-15 22:17:44 +03:00
QVariantMap TDLibWrapper : : getChat ( const QString & chatId )
{
2020-10-04 00:48:09 +03:00
LOG ( " Returning chat information for ID " < < chatId ) ;
2020-09-15 22:17:44 +03:00
return this - > chats . value ( chatId ) . toMap ( ) ;
}
2020-11-27 21:42:39 +03:00
QVariantMap TDLibWrapper : : getSecretChatFromCache ( qlonglong secretChatId )
2020-11-26 00:09:47 +03:00
{
2020-11-27 21:42:39 +03:00
return this - > secretChats . value ( secretChatId ) ;
2020-11-26 00:09:47 +03:00
}
2020-11-04 01:39:09 +03:00
QString TDLibWrapper : : getOptionString ( const QString & optionName )
{
return this - > options . value ( optionName ) . toString ( ) ;
}
2021-02-09 00:49:34 +03:00
void TDLibWrapper : : copyFileToDownloads ( const QString & filePath , bool openAfterCopy )
2020-08-25 00:02:08 +03:00
{
2021-02-09 00:49:34 +03:00
LOG ( " Copy file to downloads " < < filePath < < openAfterCopy ) ;
2020-08-25 00:02:08 +03:00
QFileInfo fileInfo ( filePath ) ;
if ( fileInfo . exists ( ) ) {
QString downloadFilePath = QStandardPaths : : writableLocation ( QStandardPaths : : DownloadLocation ) + " / " + fileInfo . fileName ( ) ;
2020-10-18 23:14:48 +03:00
if ( QFile : : exists ( downloadFilePath ) ) {
2021-02-09 00:49:34 +03:00
if ( openAfterCopy ) {
this - > openFileOnDevice ( downloadFilePath ) ;
} else {
emit copyToDownloadsSuccessful ( fileInfo . fileName ( ) , downloadFilePath ) ;
}
2020-08-25 00:02:08 +03:00
} else {
2020-10-18 23:14:48 +03:00
if ( QFile : : copy ( filePath , downloadFilePath ) ) {
2021-02-09 00:49:34 +03:00
if ( openAfterCopy ) {
this - > openFileOnDevice ( downloadFilePath ) ;
} else {
emit copyToDownloadsSuccessful ( fileInfo . fileName ( ) , downloadFilePath ) ;
}
2020-10-18 23:14:48 +03:00
} else {
emit copyToDownloadsError ( fileInfo . fileName ( ) , downloadFilePath ) ;
}
2020-08-25 00:02:08 +03:00
}
} else {
emit copyToDownloadsError ( fileInfo . fileName ( ) , filePath ) ;
}
}
2020-08-28 17:18:33 +03:00
void TDLibWrapper : : openFileOnDevice ( const QString & filePath )
2020-08-25 00:02:08 +03:00
{
2020-10-04 00:48:09 +03:00
LOG ( " Open file on device: " < < filePath ) ;
2020-08-25 00:02:08 +03:00
QStringList argumentsList ;
2020-08-28 17:18:33 +03:00
argumentsList . append ( filePath ) ;
2020-08-25 00:02:08 +03:00
bool successfullyStarted = QProcess : : startDetached ( " xdg-open " , argumentsList ) ;
if ( successfullyStarted ) {
2020-11-22 06:58:47 +03:00
LOG ( " Successfully opened file " < < filePath ) ;
2020-08-25 00:02:08 +03:00
} else {
2020-11-22 06:58:47 +03:00
LOG ( " Error opening file " < < filePath ) ;
2020-08-25 00:02:08 +03:00
}
}
2020-10-24 02:05:49 +03:00
void TDLibWrapper : : controlScreenSaver ( bool enabled )
2020-08-28 11:41:18 +03:00
{
if ( enabled ) {
2020-11-23 01:32:00 +03:00
mceInterface - > displayCancelBlankingPause ( ) ;
2020-08-28 11:41:18 +03:00
} else {
2020-11-23 01:32:00 +03:00
mceInterface - > displayBlankingPause ( ) ;
2020-08-28 11:41:18 +03:00
}
}
2020-11-10 01:22:24 +03:00
bool TDLibWrapper : : getJoinChatRequested ( )
{
return this - > joinChatRequested ;
}
void TDLibWrapper : : registerJoinChat ( )
{
this - > joinChatRequested = false ;
}
2020-09-15 00:43:21 +03:00
DBusAdaptor * TDLibWrapper : : getDBusAdaptor ( )
{
return this - > dbusInterface - > getDBusAdaptor ( ) ;
}
2020-08-12 11:50:01 +03:00
void TDLibWrapper : : handleVersionDetected ( const QString & version )
{
this - > version = version ;
emit versionDetected ( version ) ;
}
2020-10-01 01:55:26 +03:00
void TDLibWrapper : : handleAuthorizationStateChanged ( const QString & authorizationState , const QVariantMap authorizationStateData )
2020-08-12 11:50:01 +03:00
{
2020-08-13 01:20:28 +03:00
if ( authorizationState = = " authorizationStateClosed " ) {
2020-08-13 00:51:09 +03:00
this - > authorizationState = AuthorizationState : : Closed ;
}
if ( authorizationState = = " authorizationStateClosing " ) {
this - > authorizationState = AuthorizationState : : Closing ;
}
if ( authorizationState = = " authorizationStateLoggingOut " ) {
this - > authorizationState = AuthorizationState : : LoggingOut ;
}
if ( authorizationState = = " authorizationStateReady " ) {
2020-08-13 11:15:26 +03:00
this - > authorizationState = AuthorizationState : : AuthorizationReady ;
2020-08-13 00:51:09 +03:00
}
if ( authorizationState = = " authorizationStateWaitCode " ) {
this - > authorizationState = AuthorizationState : : WaitCode ;
}
if ( authorizationState = = " authorizationStateWaitEncryptionKey " ) {
this - > setEncryptionKey ( ) ;
this - > authorizationState = AuthorizationState : : WaitEncryptionKey ;
}
if ( authorizationState = = " authorizationStateWaitOtherDeviceConfirmation " ) {
this - > authorizationState = AuthorizationState : : WaitOtherDeviceConfirmation ;
}
if ( authorizationState = = " authorizationStateWaitPassword " ) {
this - > authorizationState = AuthorizationState : : WaitPassword ;
}
if ( authorizationState = = " authorizationStateWaitPhoneNumber " ) {
this - > authorizationState = AuthorizationState : : WaitPhoneNumber ;
}
if ( authorizationState = = " authorizationStateWaitRegistration " ) {
this - > authorizationState = AuthorizationState : : WaitRegistration ;
}
if ( authorizationState = = " authorizationStateWaitTdlibParameters " ) {
this - > setInitialParameters ( ) ;
this - > authorizationState = AuthorizationState : : WaitTdlibParameters ;
}
2021-01-11 21:05:55 +03:00
if ( authorizationState = = " authorizationStateLoggingOut " ) {
this - > authorizationState = AuthorizationState : : AuthorizationStateLoggingOut ;
}
if ( authorizationState = = " authorizationStateClosed " ) {
this - > authorizationState = AuthorizationState : : AuthorizationStateClosed ;
LOG ( " Reloading TD Lib... " ) ;
this - > basicGroups . clear ( ) ;
this - > superGroups . clear ( ) ;
this - > allUsers . clear ( ) ;
this - > allUserNames . clear ( ) ;
this - > tdLibReceiver - > setActive ( false ) ;
while ( this - > tdLibReceiver - > isRunning ( ) ) {
QCoreApplication : : processEvents ( QEventLoop : : AllEvents , 1000 ) ;
}
td_json_client_destroy ( this - > tdLibClient ) ;
this - > tdLibReceiver - > terminate ( ) ;
2021-01-14 20:37:09 +03:00
QDir appPath ( QStandardPaths : : writableLocation ( QStandardPaths : : AppDataLocation ) ) ;
2021-01-11 21:05:55 +03:00
appPath . removeRecursively ( ) ;
this - > tdLibClient = td_json_client_create ( ) ;
initializeTDLibReciever ( ) ;
this - > isLoggingOut = false ;
}
2020-10-01 01:55:26 +03:00
this - > authorizationStateData = authorizationStateData ;
emit authorizationStateChanged ( this - > authorizationState , this - > authorizationStateData ) ;
2020-08-13 00:51:09 +03:00
}
void TDLibWrapper : : handleOptionUpdated ( const QString & optionName , const QVariant & optionValue )
{
this - > options . insert ( optionName , optionValue ) ;
emit optionUpdated ( optionName , optionValue ) ;
2020-08-20 01:24:24 +03:00
if ( optionName = = " my_id " ) {
emit ownUserIdFound ( optionValue . toString ( ) ) ;
}
2020-08-13 00:51:09 +03:00
}
2020-08-13 01:20:28 +03:00
void TDLibWrapper : : handleConnectionStateChanged ( const QString & connectionState )
{
if ( connectionState = = " connectionStateConnecting " ) {
this - > connectionState = ConnectionState : : Connecting ;
}
if ( connectionState = = " connectionStateConnectingToProxy " ) {
this - > connectionState = ConnectionState : : ConnectingToProxy ;
}
if ( connectionState = = " connectionStateReady " ) {
2020-08-13 11:15:26 +03:00
this - > connectionState = ConnectionState : : ConnectionReady ;
2020-08-13 01:20:28 +03:00
}
if ( connectionState = = " connectionStateUpdating " ) {
this - > connectionState = ConnectionState : : Updating ;
}
if ( connectionState = = " connectionStateWaitingForNetwork " ) {
this - > connectionState = ConnectionState : : WaitingForNetwork ;
}
emit connectionStateChanged ( this - > connectionState ) ;
}
2020-08-13 18:08:14 +03:00
void TDLibWrapper : : handleUserUpdated ( const QVariantMap & userInformation )
{
2020-08-16 18:38:51 +03:00
QString updatedUserId = userInformation . value ( " id " ) . toString ( ) ;
if ( updatedUserId = = this - > options . value ( " my_id " ) . toString ( ) ) {
2020-10-04 00:48:09 +03:00
LOG ( " Own user information updated :) " ) ;
2020-08-13 18:08:14 +03:00
this - > userInformation = userInformation ;
2021-01-19 02:02:37 +03:00
emit ownUserUpdated ( userInformation ) ;
2020-08-13 18:08:14 +03:00
}
2020-12-30 19:11:01 +03:00
LOG ( " User information updated: " < < userInformation . value ( USERNAME ) . toString ( ) < < userInformation . value ( FIRST_NAME ) . toString ( ) < < userInformation . value ( LAST_NAME ) . toString ( ) ) ;
2020-08-20 01:24:24 +03:00
this - > allUsers . insert ( updatedUserId , userInformation ) ;
2020-12-30 19:11:01 +03:00
this - > allUserNames . insert ( userInformation . value ( USERNAME ) . toString ( ) , userInformation ) ;
2020-08-21 19:03:51 +03:00
emit userUpdated ( updatedUserId , userInformation ) ;
2020-08-13 18:08:14 +03:00
}
2020-08-22 15:06:26 +03:00
void TDLibWrapper : : handleUserStatusUpdated ( const QString & userId , const QVariantMap & userStatusInformation )
{
if ( userId = = this - > options . value ( " my_id " ) . toString ( ) ) {
2020-10-04 00:48:09 +03:00
LOG ( " Own user status information updated :) " ) ;
2020-08-22 15:06:26 +03:00
this - > userInformation . insert ( " status " , userStatusInformation ) ;
}
2020-10-04 04:27:49 +03:00
LOG ( " User status information updated: " < < userId < < userStatusInformation . value ( _TYPE ) . toString ( ) ) ;
2020-08-22 15:06:26 +03:00
QVariantMap updatedUserInformation = this - > allUsers . value ( userId ) . toMap ( ) ;
updatedUserInformation . insert ( " status " , userStatusInformation ) ;
this - > allUsers . insert ( userId , updatedUserInformation ) ;
2020-12-30 19:11:01 +03:00
this - > allUserNames . insert ( userInformation . value ( USERNAME ) . toString ( ) , userInformation ) ;
2020-08-22 15:06:26 +03:00
emit userUpdated ( userId , updatedUserInformation ) ;
}
2020-08-16 18:38:51 +03:00
void TDLibWrapper : : handleFileUpdated ( const QVariantMap & fileInformation )
{
emit fileUpdated ( fileInformation . value ( " id " ) . toInt ( ) , fileInformation ) ;
}
void TDLibWrapper : : handleNewChatDiscovered ( const QVariantMap & chatInformation )
2020-08-14 11:33:42 +03:00
{
2020-08-16 18:38:51 +03:00
QString chatId = chatInformation . value ( " id " ) . toString ( ) ;
this - > chats . insert ( chatId , chatInformation ) ;
emit newChatDiscovered ( chatId , chatInformation ) ;
2020-08-14 11:33:42 +03:00
}
2020-11-05 02:02:27 +03:00
void TDLibWrapper : : handleChatReceived ( const QVariantMap & chatInformation )
{
emit chatReceived ( chatInformation ) ;
if ( ! this - > activeChatSearchName . isEmpty ( ) ) {
QVariantMap chatType = chatInformation . value ( TYPE ) . toMap ( ) ;
ChatType receivedChatType = chatTypeFromString ( chatType . value ( _TYPE ) . toString ( ) ) ;
if ( receivedChatType = = ChatTypeBasicGroup ) {
LOG ( " Found basic group for active search " < < this - > activeChatSearchName ) ;
this - > activeChatSearchName . clear ( ) ;
2021-01-10 04:06:41 +03:00
this - > createBasicGroupChat ( chatType . value ( " basic_group_id " ) . toString ( ) , " openDirectly " ) ;
2020-11-05 02:02:27 +03:00
}
if ( receivedChatType = = ChatTypeSupergroup ) {
LOG ( " Found supergroup for active search " < < this - > activeChatSearchName ) ;
this - > activeChatSearchName . clear ( ) ;
2021-01-10 04:06:41 +03:00
this - > createSupergroupChat ( chatType . value ( " supergroup_id " ) . toString ( ) , " openDirectly " ) ;
2020-11-05 02:02:27 +03:00
}
}
}
2020-08-17 00:31:20 +03:00
void TDLibWrapper : : handleUnreadMessageCountUpdated ( const QVariantMap & messageCountInformation )
{
2021-01-08 00:47:42 +03:00
if ( messageCountInformation . value ( CHAT_LIST_TYPE ) . toString ( ) = = CHAT_LIST_MAIN ) {
2020-08-18 00:44:37 +03:00
this - > unreadMessageInformation = messageCountInformation ;
emit unreadMessageCountUpdated ( messageCountInformation ) ;
}
2020-08-17 00:31:20 +03:00
}
void TDLibWrapper : : handleUnreadChatCountUpdated ( const QVariantMap & chatCountInformation )
{
2021-01-08 00:47:42 +03:00
if ( chatCountInformation . value ( CHAT_LIST_TYPE ) . toString ( ) = = CHAT_LIST_MAIN ) {
2020-08-18 00:44:37 +03:00
this - > unreadChatInformation = chatCountInformation ;
emit unreadChatCountUpdated ( chatCountInformation ) ;
}
2020-08-17 00:31:20 +03:00
}
2020-10-04 04:27:49 +03:00
void TDLibWrapper : : handleBasicGroupUpdated ( qlonglong groupId , const QVariantMap & groupInformation )
2020-08-21 19:03:51 +03:00
{
2020-10-04 04:27:49 +03:00
emit basicGroupUpdated ( updateGroup ( groupId , groupInformation , & basicGroups ) - > groupId ) ;
2020-12-30 19:11:01 +03:00
if ( ! this - > activeChatSearchName . isEmpty ( ) & & this - > activeChatSearchName = = groupInformation . value ( USERNAME ) . toString ( ) ) {
2020-11-05 02:02:27 +03:00
LOG ( " Found basic group for active search " < < this - > activeChatSearchName ) ;
this - > activeChatSearchName . clear ( ) ;
2021-01-10 04:06:41 +03:00
this - > createBasicGroupChat ( groupInformation . value ( ID ) . toString ( ) , " openDirectly " ) ;
2020-11-05 02:02:27 +03:00
}
2020-08-21 19:03:51 +03:00
}
2020-10-04 04:27:49 +03:00
void TDLibWrapper : : handleSuperGroupUpdated ( qlonglong groupId , const QVariantMap & groupInformation )
2020-08-21 19:03:51 +03:00
{
2020-10-04 04:27:49 +03:00
emit superGroupUpdated ( updateGroup ( groupId , groupInformation , & superGroups ) - > groupId ) ;
2020-12-30 19:11:01 +03:00
if ( ! this - > activeChatSearchName . isEmpty ( ) & & this - > activeChatSearchName = = groupInformation . value ( USERNAME ) . toString ( ) ) {
2020-11-05 02:02:27 +03:00
LOG ( " Found supergroup for active search " < < this - > activeChatSearchName ) ;
this - > activeChatSearchName . clear ( ) ;
2021-01-10 04:06:41 +03:00
this - > createSupergroupChat ( groupInformation . value ( ID ) . toString ( ) , " openDirectly " ) ;
2020-11-05 02:02:27 +03:00
}
2020-08-21 19:03:51 +03:00
}
2020-10-06 00:08:47 +03:00
void TDLibWrapper : : handleStickerSets ( const QVariantList & stickerSets )
{
2020-10-15 00:25:56 +03:00
QListIterator < QVariant > stickerSetIterator ( stickerSets ) ;
while ( stickerSetIterator . hasNext ( ) ) {
QVariantMap stickerSet = stickerSetIterator . next ( ) . toMap ( ) ;
this - > getStickerSet ( stickerSet . value ( " id " ) . toString ( ) ) ;
}
2020-10-06 00:08:47 +03:00
emit this - > stickerSetsReceived ( stickerSets ) ;
}
2020-10-18 19:57:01 +03:00
void TDLibWrapper : : handleEmojiSearchCompleted ( const QString & queryString , const QVariantList & resultList )
{
LOG ( " Emoji search completed " < < queryString ) ;
emit emojiSearchSuccessful ( resultList ) ;
}
2020-11-08 23:13:04 +03:00
void TDLibWrapper : : handleOpenWithChanged ( )
{
if ( this - > appSettings - > getUseOpenWith ( ) ) {
this - > initializeOpenWith ( ) ;
} else {
this - > removeOpenWith ( ) ;
}
}
2020-11-27 21:42:39 +03:00
void TDLibWrapper : : handleSecretChatReceived ( qlonglong secretChatId , const QVariantMap & secretChat )
2020-11-26 00:09:47 +03:00
{
this - > secretChats . insert ( secretChatId , secretChat ) ;
emit secretChatReceived ( secretChatId , secretChat ) ;
}
2020-11-27 21:42:39 +03:00
void TDLibWrapper : : handleSecretChatUpdated ( qlonglong secretChatId , const QVariantMap & secretChat )
2020-11-26 00:09:47 +03:00
{
this - > secretChats . insert ( secretChatId , secretChat ) ;
emit secretChatUpdated ( secretChatId , secretChat ) ;
}
2020-11-24 01:15:17 +03:00
void TDLibWrapper : : handleStorageOptimizerChanged ( )
{
setOptionBoolean ( " use_storage_optimizer " , appSettings - > storageOptimizer ( ) ) ;
}
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : handleErrorReceived ( int code , const QString & message , const QString & extra )
2020-12-25 17:33:53 +03:00
{
2020-12-30 19:11:01 +03:00
if ( ! extra . isEmpty ( ) ) {
QStringList parts ( extra . split ( ' : ' ) ) ;
if ( parts . size ( ) = = 3 & & parts . at ( 0 ) = = QStringLiteral ( " getMessage " ) ) {
emit messageNotFound ( parts . at ( 1 ) . toLongLong ( ) , parts . at ( 2 ) . toLongLong ( ) ) ;
}
2020-12-25 17:33:53 +03:00
}
emit errorReceived ( code , message , extra ) ;
}
2020-12-30 19:11:01 +03:00
void TDLibWrapper : : handleMessageInformation ( qlonglong chatId , qlonglong messageId , const QVariantMap & receivedInformation )
2020-12-26 00:38:13 +03:00
{
QString extraInformation = receivedInformation . value ( _EXTRA ) . toString ( ) ;
2020-12-30 19:11:01 +03:00
if ( extraInformation . startsWith ( " getChatPinnedMessage: " ) ) {
emit chatPinnedMessageUpdated ( chatId , messageId ) ;
2020-12-26 00:38:13 +03:00
}
2020-12-30 19:11:01 +03:00
emit receivedMessage ( chatId , messageId , receivedInformation ) ;
2020-12-26 00:38:13 +03:00
}
void TDLibWrapper : : handleMessageIsPinnedUpdated ( qlonglong chatId , qlonglong messageId , bool isPinned )
{
if ( isPinned ) {
emit chatPinnedMessageUpdated ( chatId , messageId ) ;
} else {
emit chatPinnedMessageUpdated ( chatId , 0 ) ;
this - > getChatPinnedMessage ( chatId ) ;
}
}
2021-01-25 01:46:30 +03:00
void TDLibWrapper : : handleUserPrivacySettingRules ( const QVariantMap & rules )
{
QVariantList newGivenRules = rules . value ( " rules " ) . toList ( ) ;
2021-01-25 22:52:40 +03:00
// If nothing (or something unsupported is sent out) it is considered to be restricted completely
UserPrivacySettingRule newAppliedRule = UserPrivacySettingRule : : RuleRestrictAll ;
2021-01-25 01:46:30 +03:00
QListIterator < QVariant > givenRulesIterator ( newGivenRules ) ;
while ( givenRulesIterator . hasNext ( ) ) {
QString givenRule = givenRulesIterator . next ( ) . toMap ( ) . value ( _TYPE ) . toString ( ) ;
if ( givenRule = = " userPrivacySettingRuleAllowContacts " ) {
newAppliedRule = UserPrivacySettingRule : : RuleAllowContacts ;
}
2021-01-25 22:52:40 +03:00
if ( givenRule = = " userPrivacySettingRuleAllowAll " ) {
newAppliedRule = UserPrivacySettingRule : : RuleAllowAll ;
2021-01-25 01:46:30 +03:00
}
}
UserPrivacySetting usedSetting = static_cast < UserPrivacySetting > ( rules . value ( _EXTRA ) . toInt ( ) ) ;
this - > userPrivacySettingRules . insert ( usedSetting , newAppliedRule ) ;
emit userPrivacySettingUpdated ( usedSetting , newAppliedRule ) ;
}
void TDLibWrapper : : handleUpdatedUserPrivacySettingRules ( const QVariantMap & updatedRules )
{
QString rawSetting = updatedRules . value ( " setting " ) . toMap ( ) . value ( _TYPE ) . toString ( ) ;
UserPrivacySetting usedSetting = UserPrivacySetting : : SettingUnknown ;
if ( rawSetting = = " userPrivacySettingAllowChatInvites " ) {
usedSetting = UserPrivacySetting : : SettingAllowChatInvites ;
}
if ( rawSetting = = " userPrivacySettingAllowFindingByPhoneNumber " ) {
usedSetting = UserPrivacySetting : : SettingAllowFindingByPhoneNumber ;
}
if ( rawSetting = = " userPrivacySettingShowLinkInForwardedMessages " ) {
usedSetting = UserPrivacySetting : : SettingShowLinkInForwardedMessages ;
}
if ( rawSetting = = " userPrivacySettingShowPhoneNumber " ) {
usedSetting = UserPrivacySetting : : SettingShowPhoneNumber ;
}
if ( rawSetting = = " userPrivacySettingShowProfilePhoto " ) {
usedSetting = UserPrivacySetting : : SettingShowProfilePhoto ;
}
if ( rawSetting = = " userPrivacySettingShowStatus " ) {
usedSetting = UserPrivacySetting : : SettingShowStatus ;
}
if ( usedSetting ! = UserPrivacySetting : : SettingUnknown ) {
QVariantMap rawRules = updatedRules . value ( " rules " ) . toMap ( ) ;
2021-01-25 22:52:40 +03:00
rawRules . insert ( _EXTRA , usedSetting ) ;
2021-01-25 01:46:30 +03:00
this - > handleUserPrivacySettingRules ( rawRules ) ;
}
}
2021-12-06 05:29:40 +03:00
void TDLibWrapper : : handleSponsoredMess ( qlonglong chatId , const QVariantList & messages )
{
switch ( appSettings - > getSponsoredMess ( ) ) {
case AppSettings : : SponsoredMessHandle :
emit sponsoredMessagesReceived ( chatId , messages ) ;
break ;
case AppSettings : : SponsoredMessAutoView :
LOG ( " Auto-viewing sponsored mess " ) ;
for ( int i = 0 ; i < messages . count ( ) ; i + + ) {
const QVariantMap mess ( messages . at ( i ) . toMap ( ) ) ;
viewSponsoredMessage ( chatId , mess . value ( ID ) . toULongLong ( ) ) ;
}
break ;
case AppSettings : : SponsoredMessIgnore :
LOG ( " Ignoring sponsored mess " ) ;
break ;
}
}
2020-08-13 00:51:09 +03:00
void TDLibWrapper : : setInitialParameters ( )
{
2020-10-04 00:48:09 +03:00
LOG ( " Sending initial parameters to TD Lib " ) ;
2020-08-13 00:51:09 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " setTdlibParameters " ) ;
2020-08-13 00:51:09 +03:00
QVariantMap initialParameters ;
initialParameters . insert ( " api_id " , TDLIB_API_ID ) ;
initialParameters . insert ( " api_hash " , TDLIB_API_HASH ) ;
initialParameters . insert ( " database_directory " , QStandardPaths : : writableLocation ( QStandardPaths : : AppDataLocation ) + " /tdlib " ) ;
2021-01-10 15:35:34 +03:00
bool onlineOnlyMode = this - > appSettings - > onlineOnlyMode ( ) ;
initialParameters . insert ( " use_file_database " , ! onlineOnlyMode ) ;
initialParameters . insert ( " use_chat_info_database " , ! onlineOnlyMode ) ;
initialParameters . insert ( " use_message_database " , ! onlineOnlyMode ) ;
2020-11-26 00:09:47 +03:00
initialParameters . insert ( " use_secret_chats " , true ) ;
2020-08-13 00:51:09 +03:00
initialParameters . insert ( " system_language_code " , QLocale : : system ( ) . name ( ) ) ;
QSettings hardwareSettings ( " /etc/hw-release " , QSettings : : NativeFormat ) ;
initialParameters . insert ( " device_model " , hardwareSettings . value ( " NAME " , " Unknown Mobile Device " ) . toString ( ) ) ;
initialParameters . insert ( " system_version " , QSysInfo : : prettyProductName ( ) ) ;
2021-12-05 00:05:22 +03:00
initialParameters . insert ( " application_version " , " 0.11 " ) ;
2020-11-24 01:15:17 +03:00
initialParameters . insert ( " enable_storage_optimizer " , appSettings - > storageOptimizer ( ) ) ;
2020-10-18 17:29:34 +03:00
// initialParameters.insert("use_test_dc", true);
2020-08-13 00:51:09 +03:00
requestObject . insert ( " parameters " , initialParameters ) ;
this - > sendRequest ( requestObject ) ;
}
void TDLibWrapper : : setEncryptionKey ( )
{
2020-10-04 00:48:09 +03:00
LOG ( " Setting database encryption key " ) ;
2020-08-13 00:51:09 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " checkDatabaseEncryptionKey " ) ;
2020-08-13 00:51:09 +03:00
// see https://github.com/tdlib/td/issues/188#issuecomment-379536139
requestObject . insert ( " encryption_key " , " " ) ;
this - > sendRequest ( requestObject ) ;
2020-08-12 11:50:01 +03:00
}
2020-08-14 11:33:42 +03:00
void TDLibWrapper : : setLogVerbosityLevel ( )
{
2020-10-04 00:48:09 +03:00
LOG ( " Setting log verbosity level to something less chatty " ) ;
2020-08-14 11:33:42 +03:00
QVariantMap requestObject ;
2020-10-04 04:27:49 +03:00
requestObject . insert ( _TYPE , " setLogVerbosityLevel " ) ;
2020-08-14 11:33:42 +03:00
requestObject . insert ( " new_verbosity_level " , 2 ) ;
this - > sendRequest ( requestObject ) ;
}
2020-09-15 00:43:21 +03:00
void TDLibWrapper : : initializeOpenWith ( )
{
2021-11-04 01:31:00 +03:00
LOG ( " Initialize open-with " ) ; LOG ( " Checking standard open URL file... " ) ;
2021-11-07 19:00:17 +03:00
const QStringList sailfishOSVersion = QSysInfo : : productVersion ( ) . split ( " . " ) ;
int sailfishOSMajorVersion = sailfishOSVersion . value ( 0 ) . toInt ( ) ;
int sailfishOSMinorVersion = sailfishOSVersion . value ( 1 ) . toInt ( ) ;
2020-11-22 06:58:47 +03:00
const QString applicationsLocation ( QStandardPaths : : writableLocation ( QStandardPaths : : ApplicationsLocation ) ) ;
const QString openUrlFilePath ( applicationsLocation + " /open-url.desktop " ) ;
2021-11-07 19:00:17 +03:00
if ( sailfishOSMajorVersion < 4 | | ( sailfishOSMajorVersion = = 4 & & sailfishOSMinorVersion < 2 ) ) {
if ( QFile : : exists ( openUrlFilePath ) ) {
LOG ( " Standard open URL file exists, good! " ) ;
2021-11-04 01:31:00 +03:00
} else {
2021-11-07 19:00:17 +03:00
LOG ( " Copying standard open URL file to " < < openUrlFilePath ) ;
QFile : : copy ( " /usr/share/applications/open-url.desktop " , openUrlFilePath ) ;
QProcess : : startDetached ( " update-desktop-database " + applicationsLocation ) ;
}
} else {
2021-11-10 00:42:54 +03:00
const QString sailfishBrowserFilePath ( applicationsLocation + " /sailfish-browser.desktop " ) ;
if ( QFile : : exists ( sailfishBrowserFilePath ) ) {
LOG ( " Removing existing local Sailfish browser file, that was not working as expected in 0.10...! " ) ;
QFile : : remove ( sailfishBrowserFilePath ) ;
QProcess : : startDetached ( " update-desktop-database " + applicationsLocation ) ;
}
2021-11-07 19:00:17 +03:00
if ( QFile : : exists ( openUrlFilePath ) ) {
LOG ( " Old open URL file exists, that needs to go away...! " ) ;
QFile : : remove ( openUrlFilePath ) ;
2021-11-07 21:53:23 +03:00
QProcess : : startDetached ( " update-desktop-database " + applicationsLocation ) ;
2021-11-07 19:00:17 +03:00
}
2021-11-07 21:53:23 +03:00
// Something special for Verla...
if ( sailfishOSMajorVersion = = 4 & & sailfishOSMinorVersion = = 2 ) {
2021-11-10 00:42:54 +03:00
LOG ( " Creating open URL file at " < < openUrlFilePath ) ;
QFile openUrlFile ( openUrlFilePath ) ;
if ( openUrlFile . open ( QIODevice : : WriteOnly | QIODevice : : Text ) ) {
QTextStream fileOut ( & openUrlFile ) ;
fileOut . setCodec ( " UTF-8 " ) ;
fileOut < < QString ( " [Desktop Entry] " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " Type=Application " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " Name=Browser " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " Icon=icon-launcher-browser " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " NoDisplay=true " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " X-MeeGo-Logical-Id=sailfish-browser-ap-name " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " X-MeeGo-Translation-Catalog=sailfish-browser " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " MimeType=text/html;x-scheme-handler/http;x-scheme-handler/https; " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " X-Maemo-Service=org.sailfishos.browser.ui " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " X-Maemo-Object-Path=/ui " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " X-Maemo-Method=org.sailfishos.browser.ui.openUrl " ) . toUtf8 ( ) < < " \n " ;
fileOut . flush ( ) ;
openUrlFile . close ( ) ;
QProcess : : startDetached ( " update-desktop-database " + applicationsLocation ) ;
2021-11-07 19:00:17 +03:00
}
2021-11-04 01:31:00 +03:00
}
2020-11-08 23:13:04 +03:00
}
2020-11-22 06:58:47 +03:00
const QString desktopFilePath ( applicationsLocation + " /harbour-fernschreiber-open-url.desktop " ) ;
2020-11-08 23:13:04 +03:00
QFile desktopFile ( desktopFilePath ) ;
2021-11-04 01:31:00 +03:00
if ( desktopFile . exists ( ) ) {
2021-11-07 21:53:23 +03:00
LOG ( " Fernschreiber open-with file existing, removing... " ) ;
2021-11-04 01:31:00 +03:00
desktopFile . remove ( ) ;
2021-11-07 21:53:23 +03:00
QProcess : : startDetached ( " update-desktop-database " + applicationsLocation ) ;
2021-11-04 01:31:00 +03:00
}
2021-11-10 00:42:54 +03:00
LOG ( " Creating Fernschreiber open-with file at " < < desktopFile . fileName ( ) ) ;
if ( desktopFile . open ( QIODevice : : WriteOnly | QIODevice : : Text ) ) {
QTextStream fileOut ( & desktopFile ) ;
fileOut . setCodec ( " UTF-8 " ) ;
fileOut < < QString ( " [Desktop Entry] " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " Type=Application " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " Name=Fernschreiber " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " Icon=harbour-fernschreiber " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " NotShowIn=X-MeeGo; " ) . toUtf8 ( ) < < " \n " ;
if ( sailfishOSMajorVersion < 4 | | ( sailfishOSMajorVersion = = 4 & & sailfishOSMinorVersion < 1 ) ) {
fileOut < < QString ( " MimeType=text/html;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/tg; " ) . toUtf8 ( ) < < " \n " ;
} else {
fileOut < < QString ( " MimeType=x-url-handler/t.me;x-scheme-handler/tg; " ) . toUtf8 ( ) < < " \n " ;
2021-11-07 19:00:17 +03:00
}
2021-11-10 00:42:54 +03:00
fileOut < < QString ( " X-Maemo-Service=de.ygriega.fernschreiber " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " X-Maemo-Object-Path=/de/ygriega/fernschreiber " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " X-Maemo-Method=de.ygriega.fernschreiber.openUrl " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " Hidden=true; " ) . toUtf8 ( ) < < " \n " ;
fileOut . flush ( ) ;
desktopFile . close ( ) ;
QProcess : : startDetached ( " update-desktop-database " + applicationsLocation ) ;
2020-11-08 23:13:04 +03:00
}
2020-09-15 00:43:21 +03:00
QString dbusPathName = QStandardPaths : : writableLocation ( QStandardPaths : : GenericDataLocation ) + " /dbus-1/services " ;
QDir dbusPath ( dbusPathName ) ;
if ( ! dbusPath . exists ( ) ) {
2020-10-04 00:48:09 +03:00
LOG ( " Creating D-Bus directory " < < dbusPathName ) ;
2020-09-15 00:43:21 +03:00
dbusPath . mkpath ( dbusPathName ) ;
}
QString dbusServiceFileName = dbusPathName + " /de.ygriega.fernschreiber.service " ;
QFile dbusServiceFile ( dbusServiceFileName ) ;
if ( ! dbusServiceFile . exists ( ) ) {
2020-10-04 00:48:09 +03:00
LOG ( " Creating D-Bus service file at " < < dbusServiceFile . fileName ( ) ) ;
2020-09-15 00:43:21 +03:00
if ( dbusServiceFile . open ( QIODevice : : WriteOnly | QIODevice : : Text ) ) {
QTextStream fileOut ( & dbusServiceFile ) ;
fileOut . setCodec ( " UTF-8 " ) ;
fileOut < < QString ( " [D-BUS Service] " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " Name=de.ygriega.fernschreiber " ) . toUtf8 ( ) < < " \n " ;
fileOut < < QString ( " Exec=/usr/bin/invoker -s --type=silica-qt5 /usr/bin/harbour-fernschreiber " ) . toUtf8 ( ) < < " \n " ;
fileOut . flush ( ) ;
dbusServiceFile . close ( ) ;
}
}
}
2020-11-08 23:13:04 +03:00
void TDLibWrapper : : removeOpenWith ( )
{
LOG ( " Remove open-with " ) ;
QFile : : remove ( QStandardPaths : : writableLocation ( QStandardPaths : : ApplicationsLocation ) + " /harbour-fernschreiber-open-url.desktop " ) ;
QProcess : : startDetached ( " update-desktop-database " + QStandardPaths : : writableLocation ( QStandardPaths : : ApplicationsLocation ) ) ;
}
2020-10-04 04:27:49 +03:00
const TDLibWrapper : : Group * TDLibWrapper : : updateGroup ( qlonglong groupId , const QVariantMap & groupInfo , QHash < qlonglong , Group * > * groups )
{
Group * group = groups - > value ( groupId ) ;
if ( ! group ) {
group = new Group ( groupId ) ;
groups - > insert ( groupId , group ) ;
}
group - > groupInfo = groupInfo ;
return group ;
}
const TDLibWrapper : : Group * TDLibWrapper : : getGroup ( qlonglong groupId ) const
{
if ( groupId ) {
const Group * group = superGroups . value ( groupId ) ;
return group ? group : basicGroups . value ( groupId ) ;
}
return Q_NULLPTR ;
}
2020-10-31 22:18:12 +03:00
TDLibWrapper : : ChatType TDLibWrapper : : chatTypeFromString ( const QString & type )
{
return ( type = = QStringLiteral ( " chatTypePrivate " ) ) ? ChatTypePrivate :
( type = = QStringLiteral ( " chatTypeBasicGroup " ) ) ? ChatTypeBasicGroup :
( type = = QStringLiteral ( " chatTypeSupergroup " ) ) ? ChatTypeSupergroup :
( type = = QStringLiteral ( " chatTypeSecret " ) ) ? ChatTypeSecret :
ChatTypeUnknown ;
}
2020-10-04 04:27:49 +03:00
TDLibWrapper : : ChatMemberStatus TDLibWrapper : : chatMemberStatusFromString ( const QString & status )
{
// Most common ones first
return ( status = = QStringLiteral ( " chatMemberStatusMember " ) ) ? ChatMemberStatusMember :
( status = = QStringLiteral ( " chatMemberStatusLeft " ) ) ? ChatMemberStatusLeft :
( status = = QStringLiteral ( " chatMemberStatusCreator " ) ) ? ChatMemberStatusCreator :
( status = = QStringLiteral ( " chatMemberStatusAdministrator " ) ) ? ChatMemberStatusAdministrator :
( status = = QStringLiteral ( " chatMemberStatusRestricted " ) ) ? ChatMemberStatusRestricted :
( status = = QStringLiteral ( " chatMemberStatusBanned " ) ) ? ChatMemberStatusBanned :
2020-11-26 00:09:47 +03:00
ChatMemberStatusUnknown ;
}
TDLibWrapper : : SecretChatState TDLibWrapper : : secretChatStateFromString ( const QString & state )
{
return ( state = = QStringLiteral ( " secretChatStateClosed " ) ) ? SecretChatStateClosed :
( state = = QStringLiteral ( " secretChatStatePending " ) ) ? SecretChatStatePending :
( state = = QStringLiteral ( " secretChatStateReady " ) ) ? SecretChatStateReady :
SecretChatStateUnknown ;
2020-10-04 04:27:49 +03:00
}
TDLibWrapper : : ChatMemberStatus TDLibWrapper : : Group : : chatMemberStatus ( ) const
{
const QString statusType ( groupInfo . value ( STATUS ) . toMap ( ) . value ( _TYPE ) . toString ( ) ) ;
return statusType . isEmpty ( ) ? ChatMemberStatusUnknown : chatMemberStatusFromString ( statusType ) ;
}