OsmAnd/OsmAnd-telegram/src/main/java/net/osmand/telegram/helpers/TelegramHelper.kt

606 lines
26 KiB
Kotlin
Raw Normal View History

package net.osmand.telegram.helpers
import android.text.TextUtils
import net.osmand.PlatformUtil
2018-06-09 16:55:14 +02:00
import net.osmand.telegram.helpers.TelegramHelper.TelegramAuthenticationParameterType.*
import org.drinkless.td.libcore.telegram.Client
import org.drinkless.td.libcore.telegram.Client.ResultHandler
import org.drinkless.td.libcore.telegram.TdApi
import org.drinkless.td.libcore.telegram.TdApi.AuthorizationState
import java.io.File
import java.util.*
import java.util.concurrent.ConcurrentHashMap
2018-06-07 16:44:43 +02:00
class TelegramHelper private constructor() {
2018-06-07 16:44:43 +02:00
companion object {
private val log = PlatformUtil.getLog(TelegramHelper::class.java)
private const val CHATS_LIMIT = 100
private var helper: TelegramHelper? = null
private val users = ConcurrentHashMap<Int, TdApi.User>()
private val basicGroups = ConcurrentHashMap<Int, TdApi.BasicGroup>()
private val supergroups = ConcurrentHashMap<Int, TdApi.Supergroup>()
private val secretChats = ConcurrentHashMap<Int, TdApi.SecretChat>()
private val chats = ConcurrentHashMap<Long, TdApi.Chat>()
private val chatList = TreeSet<OrderedChat>()
2018-06-09 16:55:14 +02:00
private val chatLiveMessages = ConcurrentHashMap<Long, Long>()
2018-06-07 16:44:43 +02:00
private val usersFullInfo = ConcurrentHashMap<Int, TdApi.UserFullInfo>()
private val basicGroupsFullInfo = ConcurrentHashMap<Int, TdApi.BasicGroupFullInfo>()
private val supergroupsFullInfo = ConcurrentHashMap<Int, TdApi.SupergroupFullInfo>()
val instance: TelegramHelper
get() {
if (helper == null) {
helper = TelegramHelper()
}
return helper!!
}
private fun setChatOrder(chat: TdApi.Chat, order: Long) {
synchronized(chatList) {
if (chat.order != 0L) {
chatList.remove(OrderedChat(chat.order, chat.id))
}
chat.order = order
if (chat.order != 0L) {
chatList.add(OrderedChat(chat.order, chat.id))
}
}
}
}
var appDir: String? = null
private var libraryLoaded = false
2018-06-07 16:44:43 +02:00
private var telegramAuthorizationRequestHandler: TelegramAuthorizationRequestHandler? = null
private var client: Client? = null
2018-06-07 16:44:43 +02:00
private var haveFullChatList: Boolean = false
2018-06-09 16:55:14 +02:00
private var firstTimeSendingLiveLocation: Boolean = true
private var requestingLiveLocationMessages: Boolean = false
private var authorizationState: AuthorizationState? = null
private var isHaveAuthorization = false
private val defaultHandler = DefaultHandler()
var listener: TelegramListener? = null
2018-06-07 16:44:43 +02:00
fun getChatList(): TreeSet<OrderedChat> {
synchronized(chatList) {
return TreeSet<OrderedChat>(chatList)
}
}
fun getChat(id: Long): TdApi.Chat? {
return chats[id]
}
enum class TelegramAuthenticationParameterType {
PHONE_NUMBER,
CODE,
PASSWORD
}
2018-06-07 16:44:43 +02:00
enum class TelegramAuthorizationState {
UNKNOWN,
WAIT_PARAMETERS,
WAIT_PHONE_NUMBER,
WAIT_CODE,
WAIT_PASSWORD,
READY,
LOGGING_OUT,
CLOSING,
CLOSED
}
interface TelegramListener {
2018-06-07 16:44:43 +02:00
fun onTelegramStatusChanged(prevTelegramAuthorizationState: TelegramAuthorizationState,
newTelegramAuthorizationState: TelegramAuthorizationState)
fun onTelegramChatsRead()
fun onTelegramError(code: Int, message: String)
fun onSendLiveLicationError(code: Int, message: String)
}
2018-06-07 16:44:43 +02:00
interface TelegramAuthorizationRequestListener {
fun onRequestTelegramAuthenticationParameter(parameterType: TelegramAuthenticationParameterType)
fun onTelegramAuthorizationRequestError(code: Int, message: String)
}
2018-06-07 16:44:43 +02:00
inner class TelegramAuthorizationRequestHandler(val telegramAuthorizationRequestListener: TelegramAuthorizationRequestListener) {
2018-06-07 16:44:43 +02:00
fun applyAuthenticationParameter(parameterType: TelegramAuthenticationParameterType, parameterValue: String) {
if (!TextUtils.isEmpty(parameterValue)) {
when (parameterType) {
PHONE_NUMBER -> client!!.send(TdApi.SetAuthenticationPhoneNumber(parameterValue, false, false), AuthorizationRequestHandler())
CODE -> client!!.send(TdApi.CheckAuthenticationCode(parameterValue, "", ""), AuthorizationRequestHandler())
PASSWORD -> client!!.send(TdApi.CheckAuthenticationPassword(parameterValue), AuthorizationRequestHandler())
}
}
}
}
2018-06-07 16:44:43 +02:00
fun getTelegramAuthorizationState(): TelegramAuthorizationState {
val authorizationState = this.authorizationState
?: return TelegramAuthorizationState.UNKNOWN
return when (authorizationState.constructor) {
2018-06-07 16:44:43 +02:00
TdApi.AuthorizationStateWaitTdlibParameters.CONSTRUCTOR -> TelegramAuthorizationState.WAIT_PARAMETERS
TdApi.AuthorizationStateWaitPhoneNumber.CONSTRUCTOR -> TelegramAuthorizationState.WAIT_PHONE_NUMBER
TdApi.AuthorizationStateWaitCode.CONSTRUCTOR -> TelegramAuthorizationState.WAIT_CODE
TdApi.AuthorizationStateWaitPassword.CONSTRUCTOR -> TelegramAuthorizationState.WAIT_PASSWORD
TdApi.AuthorizationStateReady.CONSTRUCTOR -> TelegramAuthorizationState.READY
TdApi.AuthorizationStateLoggingOut.CONSTRUCTOR -> TelegramAuthorizationState.LOGGING_OUT
TdApi.AuthorizationStateClosing.CONSTRUCTOR -> TelegramAuthorizationState.CLOSING
TdApi.AuthorizationStateClosed.CONSTRUCTOR -> TelegramAuthorizationState.CLOSED
else -> TelegramAuthorizationState.UNKNOWN
}
}
2018-06-07 16:44:43 +02:00
fun setTelegramAuthorizationRequestHandler(telegramAuthorizationRequestListener: TelegramAuthorizationRequestListener): TelegramAuthorizationRequestHandler {
val handler = TelegramAuthorizationRequestHandler(telegramAuthorizationRequestListener)
this.telegramAuthorizationRequestHandler = handler
return handler
}
init {
try {
log.debug("Loading native tdlib...")
System.loadLibrary("tdjni")
Client.setLogVerbosityLevel(0)
libraryLoaded = true
} catch (e: Throwable) {
log.error("Failed to load tdlib", e)
}
}
fun init(): Boolean {
return if (libraryLoaded) {
// create client
client = Client.create(UpdatesHandler(), null, null)
client!!.send(TdApi.GetAuthorizationState(), defaultHandler)
true
} else {
false
}
}
2018-06-07 16:44:43 +02:00
fun requestChats() {
synchronized(chatList) {
if (!haveFullChatList && CHATS_LIMIT > chatList.size) {
// have enough chats in the chat list or chat list is too small
var offsetOrder = java.lang.Long.MAX_VALUE
var offsetChatId: Long = 0
if (!chatList.isEmpty()) {
val last = chatList.last()
offsetOrder = last.order
offsetChatId = last.chatId
}
client?.send(TdApi.GetChats(offsetOrder, offsetChatId, CHATS_LIMIT - chatList.size), { obj ->
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
listener?.onTelegramError(error.code, error.message)
}
TdApi.Chats.CONSTRUCTOR -> {
val chatIds = (obj as TdApi.Chats).chatIds
if (chatIds.isEmpty()) {
synchronized(chatList) {
haveFullChatList = true
}
}
// chats had already been received through updates, let's retry request
requestChats()
}
else -> listener?.onTelegramError(-1, "Receive wrong response from TDLib: $obj")
}
})
return
}
}
listener?.onTelegramChatsRead()
}
/**
* @chatId Id of the chat
* @livePeriod Period for which the location can be updated, in seconds; should be between 60 and 86400 for a live location and 0 otherwise.
* @latitude Latitude of the location
* @longitude Longitude of the location
*/
2018-06-09 16:55:14 +02:00
fun sendLiveLocationMessage(chatIds: List<Long>, livePeriod: Int = 61, latitude: Double, longitude: Double) {
if (!requestingLiveLocationMessages) {
if (firstTimeSendingLiveLocation) {
getActiveLiveLocationMessages {
sendLiveLocationImpl(chatIds, livePeriod, latitude, longitude)
}
firstTimeSendingLiveLocation = false
} else {
sendLiveLocationImpl(chatIds, livePeriod, latitude, longitude)
}
}
}
2018-06-09 16:55:14 +02:00
private fun getActiveLiveLocationMessages(onComplete: (() -> Unit)?) {
requestingLiveLocationMessages = true
client?.send(TdApi.GetActiveLiveLocationMessages(), { obj ->
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
listener?.onSendLiveLicationError(error.code, error.message)
}
TdApi.Messages.CONSTRUCTOR -> {
val messages = (obj as TdApi.Messages).messages
if (messages.isNotEmpty()) {
for (msg in messages) {
2018-06-09 16:55:14 +02:00
val chatId = msg.chatId
chatLiveMessages[chatId] = msg.id
}
}
2018-06-09 16:55:14 +02:00
onComplete?.invoke()
}
else -> listener?.onSendLiveLicationError(-1, "Receive wrong response from TDLib: $obj")
}
2018-06-09 16:55:14 +02:00
requestingLiveLocationMessages = false
})
}
2018-06-09 16:55:14 +02:00
private fun sendLiveLocationImpl(chatIds: List<Long>, livePeriod: Int = 61, latitude: Double, longitude: Double) {
val lp = livePeriod.coerceAtLeast(61)
val location = TdApi.Location(latitude, longitude)
val content = TdApi.InputMessageLocation(location, lp)
for (chatId in chatIds) {
val msgId = chatLiveMessages[chatId]
if (msgId != null) {
if (msgId != 0L) {
client?.send(TdApi.EditMessageLiveLocation(chatId, msgId, null, location), LiveLocationMessageUpdatesHandler(chatId))
}
} else {
chatLiveMessages[chatId] = 0L
client?.send(TdApi.SendMessage(chatId, 0, false, true, null, content), LiveLocationMessageUpdatesHandler(chatId))
}
}
}
/**
* @chatId Id of the chat
* @message Text of the message
*/
2018-06-09 16:55:14 +02:00
fun sendTextMessage(chatId: Long, message: String) {
// initialize reply markup just for testing
//val row = arrayOf(TdApi.InlineKeyboardButton("https://telegram.org?1", TdApi.InlineKeyboardButtonTypeUrl()), TdApi.InlineKeyboardButton("https://telegram.org?2", TdApi.InlineKeyboardButtonTypeUrl()), TdApi.InlineKeyboardButton("https://telegram.org?3", TdApi.InlineKeyboardButtonTypeUrl()))
//val replyMarkup = TdApi.ReplyMarkupInlineKeyboard(arrayOf(row, row, row))
val content = TdApi.InputMessageText(TdApi.FormattedText(message, null), false, true)
client?.send(TdApi.SendMessage(chatId, 0, false, true, null, content), defaultHandler)
}
fun logout(): Boolean {
return if (libraryLoaded) {
isHaveAuthorization = false
client!!.send(TdApi.LogOut(), defaultHandler)
true
} else {
false
}
}
fun close(): Boolean {
return if (libraryLoaded) {
isHaveAuthorization = false
client!!.send(TdApi.Close(), defaultHandler)
true
} else {
false
}
}
2018-06-09 16:55:14 +02:00
private inner class LiveLocationMessageUpdatesHandler(val chatId: Long): ResultHandler {
override fun onResult(obj: TdApi.Object) {
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
chatLiveMessages.remove(chatId)
listener?.onSendLiveLicationError(error.code, error.message)
}
else -> {
if (obj is TdApi.Message) {
when (obj.sendingState?.constructor) {
TdApi.MessageSendingStateFailed.CONSTRUCTOR -> {
chatLiveMessages.remove(obj.chatId)
listener?.onSendLiveLicationError(-1, "Live location message ${obj.id} failed to send")
}
}
}
}
}
}
}
private fun onAuthorizationStateUpdated(authorizationState: AuthorizationState?) {
2018-06-07 16:44:43 +02:00
val prevAuthState = getTelegramAuthorizationState()
if (authorizationState != null) {
this.authorizationState = authorizationState
}
when (this.authorizationState!!.constructor) {
TdApi.AuthorizationStateWaitTdlibParameters.CONSTRUCTOR -> {
log.info("Init tdlib parameters")
val parameters = TdApi.TdlibParameters()
parameters.databaseDirectory = File(appDir, "tdlib").absolutePath
parameters.useMessageDatabase = true
parameters.useSecretChats = true
parameters.apiId = 94575
parameters.apiHash = "a3406de8d171bb422bb6ddf3bbd800e2"
parameters.systemLanguageCode = "en"
parameters.deviceModel = "Android"
2018-06-05 22:17:24 +02:00
parameters.systemVersion = "OsmAnd Telegram"
parameters.applicationVersion = "1.0"
parameters.enableStorageOptimizer = true
client!!.send(TdApi.SetTdlibParameters(parameters), AuthorizationRequestHandler())
}
TdApi.AuthorizationStateWaitEncryptionKey.CONSTRUCTOR -> {
client!!.send(TdApi.CheckDatabaseEncryptionKey(), AuthorizationRequestHandler())
}
TdApi.AuthorizationStateWaitPhoneNumber.CONSTRUCTOR -> {
log.info("Request phone number")
2018-06-07 16:44:43 +02:00
telegramAuthorizationRequestHandler?.telegramAuthorizationRequestListener?.onRequestTelegramAuthenticationParameter(PHONE_NUMBER)
}
TdApi.AuthorizationStateWaitCode.CONSTRUCTOR -> {
log.info("Request code")
2018-06-07 16:44:43 +02:00
telegramAuthorizationRequestHandler?.telegramAuthorizationRequestListener?.onRequestTelegramAuthenticationParameter(CODE)
}
TdApi.AuthorizationStateWaitPassword.CONSTRUCTOR -> {
log.info("Request password")
2018-06-07 16:44:43 +02:00
telegramAuthorizationRequestHandler?.telegramAuthorizationRequestListener?.onRequestTelegramAuthenticationParameter(PASSWORD)
}
TdApi.AuthorizationStateReady.CONSTRUCTOR -> {
isHaveAuthorization = true
2018-06-09 16:55:14 +02:00
firstTimeSendingLiveLocation = true
log.info("Ready")
}
TdApi.AuthorizationStateLoggingOut.CONSTRUCTOR -> {
isHaveAuthorization = false
log.info("Logging out")
}
TdApi.AuthorizationStateClosing.CONSTRUCTOR -> {
isHaveAuthorization = false
log.info("Closing")
}
TdApi.AuthorizationStateClosed.CONSTRUCTOR -> {
log.info("Closed")
}
else -> log.error("Unsupported authorization state: " + this.authorizationState!!)
}
2018-06-07 16:44:43 +02:00
val newAuthState = getTelegramAuthorizationState()
listener?.onTelegramStatusChanged(prevAuthState, newAuthState)
}
2018-06-07 16:44:43 +02:00
class OrderedChat internal constructor(internal val order: Long, internal val chatId: Long) : Comparable<OrderedChat> {
override fun compareTo(other: OrderedChat): Int {
if (this.order != other.order) {
return if (other.order < this.order) -1 else 1
}
return if (this.chatId != other.chatId) {
if (other.chatId < this.chatId) -1 else 1
} else 0
}
override fun equals(other: Any?): Boolean {
if (other == null) {
return false
}
if (other !is OrderedChat) {
return false
}
val o = other as OrderedChat?
return this.order == o!!.order && this.chatId == o.chatId
}
override fun hashCode(): Int {
return (order + chatId).hashCode()
}
}
private class DefaultHandler : ResultHandler {
override fun onResult(obj: TdApi.Object) {}
}
private inner class UpdatesHandler : ResultHandler {
override fun onResult(obj: TdApi.Object) {
when (obj.constructor) {
TdApi.UpdateAuthorizationState.CONSTRUCTOR -> onAuthorizationStateUpdated((obj as TdApi.UpdateAuthorizationState).authorizationState)
TdApi.UpdateUser.CONSTRUCTOR -> {
val updateUser = obj as TdApi.UpdateUser
users[updateUser.user.id] = updateUser.user
}
TdApi.UpdateUserStatus.CONSTRUCTOR -> {
val updateUserStatus = obj as TdApi.UpdateUserStatus
val user = users[updateUserStatus.userId]
synchronized(user!!) {
user.status = updateUserStatus.status
}
}
TdApi.UpdateBasicGroup.CONSTRUCTOR -> {
val updateBasicGroup = obj as TdApi.UpdateBasicGroup
basicGroups[updateBasicGroup.basicGroup.id] = updateBasicGroup.basicGroup
}
TdApi.UpdateSupergroup.CONSTRUCTOR -> {
val updateSupergroup = obj as TdApi.UpdateSupergroup
supergroups[updateSupergroup.supergroup.id] = updateSupergroup.supergroup
}
TdApi.UpdateSecretChat.CONSTRUCTOR -> {
val updateSecretChat = obj as TdApi.UpdateSecretChat
secretChats[updateSecretChat.secretChat.id] = updateSecretChat.secretChat
}
TdApi.UpdateNewChat.CONSTRUCTOR -> {
val updateNewChat = obj as TdApi.UpdateNewChat
val chat = updateNewChat.chat
synchronized(chat!!) {
if (chat.type !is TdApi.ChatTypeSupergroup || !(chat.type as TdApi.ChatTypeSupergroup).isChannel) {
chats[chat.id] = chat
val order = chat.order
chat.order = 0
setChatOrder(chat, order)
}
}
listener?.onTelegramChatsRead()
}
TdApi.UpdateChatTitle.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatTitle
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.title = updateChat.title
}
}
TdApi.UpdateChatPhoto.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatPhoto
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.photo = updateChat.photo
}
}
TdApi.UpdateChatLastMessage.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatLastMessage
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.lastMessage = updateChat.lastMessage
setChatOrder(chat, updateChat.order)
}
}
TdApi.UpdateChatOrder.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatOrder
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
setChatOrder(chat, updateChat.order)
}
}
TdApi.UpdateChatIsPinned.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatIsPinned
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.isPinned = updateChat.isPinned
setChatOrder(chat, updateChat.order)
}
}
TdApi.UpdateChatReadInbox.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatReadInbox
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.lastReadInboxMessageId = updateChat.lastReadInboxMessageId
chat.unreadCount = updateChat.unreadCount
}
}
TdApi.UpdateChatReadOutbox.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatReadOutbox
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.lastReadOutboxMessageId = updateChat.lastReadOutboxMessageId
}
}
TdApi.UpdateChatUnreadMentionCount.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatUnreadMentionCount
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.unreadMentionCount = updateChat.unreadMentionCount
}
}
TdApi.UpdateMessageMentionRead.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateMessageMentionRead
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.unreadMentionCount = updateChat.unreadMentionCount
}
}
2018-06-09 16:55:14 +02:00
TdApi.UpdateMessageSendFailed.CONSTRUCTOR -> {
val updateMessageSendFailed = obj as TdApi.UpdateMessageSendFailed
val message = updateMessageSendFailed.message
chatLiveMessages.remove(message.chatId)
}
TdApi.UpdateMessageSendSucceeded.CONSTRUCTOR -> {
2018-06-09 16:55:14 +02:00
val updateMessageSendSucceeded = obj as TdApi.UpdateMessageSendSucceeded
val message = updateMessageSendSucceeded.message
chatLiveMessages[message.chatId] = message.id
}
TdApi.UpdateDeleteMessages.CONSTRUCTOR -> {
val updateDeleteMessages = obj as TdApi.UpdateDeleteMessages
if (updateDeleteMessages.isPermanent) {
val chatId = updateDeleteMessages.chatId
for (messageId in updateDeleteMessages.messageIds) {
if (chatLiveMessages[chatId] == messageId) {
chatLiveMessages.remove(chatId)
break
}
}
}
}
TdApi.UpdateChatReplyMarkup.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatReplyMarkup
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.replyMarkupMessageId = updateChat.replyMarkupMessageId
}
}
TdApi.UpdateChatDraftMessage.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatDraftMessage
val chat = chats[updateChat.chatId]
synchronized(chat!!) {
chat.draftMessage = updateChat.draftMessage
setChatOrder(chat, updateChat.order)
}
}
TdApi.UpdateNotificationSettings.CONSTRUCTOR -> {
val update = obj as TdApi.UpdateNotificationSettings
if (update.scope is TdApi.NotificationSettingsScopeChat) {
val chat = chats[(update.scope as TdApi.NotificationSettingsScopeChat).chatId]
synchronized(chat!!) {
chat.notificationSettings = update.notificationSettings
}
}
}
TdApi.UpdateUserFullInfo.CONSTRUCTOR -> {
val updateUserFullInfo = obj as TdApi.UpdateUserFullInfo
usersFullInfo[updateUserFullInfo.userId] = updateUserFullInfo.userFullInfo
}
TdApi.UpdateBasicGroupFullInfo.CONSTRUCTOR -> {
val updateBasicGroupFullInfo = obj as TdApi.UpdateBasicGroupFullInfo
basicGroupsFullInfo[updateBasicGroupFullInfo.basicGroupId] = updateBasicGroupFullInfo.basicGroupFullInfo
}
TdApi.UpdateSupergroupFullInfo.CONSTRUCTOR -> {
val updateSupergroupFullInfo = obj as TdApi.UpdateSupergroupFullInfo
supergroupsFullInfo[updateSupergroupFullInfo.supergroupId] = updateSupergroupFullInfo.supergroupFullInfo
}
2018-06-09 16:55:14 +02:00
}
}
}
private inner class AuthorizationRequestHandler : ResultHandler {
override fun onResult(obj: TdApi.Object) {
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
log.error("Receive an error: $obj")
val errorObj = obj as TdApi.Error
2018-06-07 16:44:43 +02:00
telegramAuthorizationRequestHandler?.telegramAuthorizationRequestListener?.onTelegramAuthorizationRequestError(errorObj.code, errorObj.message)
onAuthorizationStateUpdated(null) // repeat last action
}
TdApi.Ok.CONSTRUCTOR -> {
}
else -> log.error("Receive wrong response from TDLib: $obj")
}// result is already received through UpdateAuthorizationState, nothing to do
}
}
}