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

1207 lines
39 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
2018-08-06 13:20:18 +02:00
import java.text.SimpleDateFormat
import java.util.*
import java.util.concurrent.ConcurrentHashMap
import java.util.concurrent.Executors
import java.util.concurrent.ScheduledExecutorService
import java.util.concurrent.TimeUnit
import kotlin.collections.HashSet
2018-06-07 16:44:43 +02:00
2018-08-10 12:35:30 +02:00
class TelegramHelper private constructor() {
2018-06-07 16:44:43 +02:00
2018-06-11 18:57:33 +02:00
companion object {
const val OSMAND_BOT_USERNAME = "osmand_bot"
2018-06-11 18:57:33 +02:00
private val log = PlatformUtil.getLog(TelegramHelper::class.java)
private const val CHATS_LIMIT = 100
private const val IGNORED_ERROR_CODE = 406
private const val DEVICE_PREFIX = "Device: "
private const val LOCATION_PREFIX = "Location: "
2018-08-06 13:20:18 +02:00
private const val FEW_SECONDS_AGO = "few seconds ago"
private const val SECONDS_AGO_SUFFIX = " seconds ago"
private const val MINUTES_AGO_SUFFIX = " minutes ago"
private const val HOURS_AGO_SUFFIX = " hours ago"
private const val UTC_FORMAT_SUFFIX = " UTC"
2018-08-06 14:57:03 +02:00
private val UTC_DATE_FORMAT = SimpleDateFormat("yyyy-MM-dd", Locale.US).apply {
timeZone = TimeZone.getTimeZone("UTC")
}
private val UTC_TIME_FORMAT = SimpleDateFormat("HH:mm:ss", Locale.US).apply {
timeZone = TimeZone.getTimeZone("UTC")
}
// min and max values for the Telegram API
const val MIN_LOCATION_MESSAGE_LIVE_PERIOD_SEC = 61
const val MAX_LOCATION_MESSAGE_LIVE_PERIOD_SEC = 60 * 60 * 24 - 1 // one day
2018-06-11 18:57:33 +02:00
private var helper: TelegramHelper? = null
2018-08-10 12:35:30 +02:00
val instance: TelegramHelper
get() {
if (helper == null) {
helper = TelegramHelper()
}
return helper!!
2018-06-11 18:57:33 +02:00
}
}
2018-08-10 12:35:30 +02:00
var messageActiveTimeSec: Long = 0
2018-06-11 18:57:33 +02:00
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-08-08 18:23:37 +02:00
private val chatLiveMessages = ConcurrentHashMap<Long, TdApi.Message>()
2018-06-11 18:57:33 +02:00
2018-06-13 19:14:08 +02:00
private val downloadChatFilesMap = ConcurrentHashMap<String, TdApi.Chat>()
2018-06-14 20:01:10 +02:00
private val downloadUserFilesMap = ConcurrentHashMap<String, TdApi.User>()
2018-06-13 19:14:08 +02:00
// value.content can be TdApi.MessageLocation or MessageOsmAndBotLocation
private val usersLocationMessages = ConcurrentHashMap<Long, TdApi.Message>()
2018-06-11 18:57:33 +02:00
private val usersFullInfo = ConcurrentHashMap<Int, TdApi.UserFullInfo>()
private val basicGroupsFullInfo = ConcurrentHashMap<Int, TdApi.BasicGroupFullInfo>()
private val supergroupsFullInfo = ConcurrentHashMap<Int, TdApi.SupergroupFullInfo>()
var appDir: String? = null
private var libraryLoaded = false
private var telegramAuthorizationRequestHandler: TelegramAuthorizationRequestHandler? = null
private var client: Client? = null
private var currentUser: TdApi.User? = null
2018-06-11 18:57:33 +02:00
private var haveFullChatList: Boolean = false
private var needRefreshActiveLiveLocationMessages: Boolean = true
private var requestingActiveLiveLocationMessages: Boolean = false
private var authorizationState: AuthorizationState? = null
private var haveAuthorization = false
private val defaultHandler = DefaultHandler()
private val liveLocationMessageUpdatesHandler = LiveLocationMessageUpdatesHandler()
private var updateLiveMessagesExecutor: ScheduledExecutorService? = null
2018-06-11 18:57:33 +02:00
var listener: TelegramListener? = null
private val incomingMessagesListeners = HashSet<TelegramIncomingMessagesListener>()
2018-08-03 15:38:56 +02:00
private val fullInfoUpdatesListeners = HashSet<FullInfoUpdatesListener>()
private val chatLiveMessagesListeners = HashSet<ChatLiveMessagesListener>()
fun addIncomingMessagesListener(listener: TelegramIncomingMessagesListener) {
incomingMessagesListeners.add(listener)
}
fun removeIncomingMessagesListener(listener: TelegramIncomingMessagesListener) {
incomingMessagesListeners.remove(listener)
}
2018-06-11 18:57:33 +02:00
2018-08-03 15:38:56 +02:00
fun addFullInfoUpdatesListener(listener: FullInfoUpdatesListener) {
fullInfoUpdatesListeners.add(listener)
}
fun removeFullInfoUpdatesListener(listener: FullInfoUpdatesListener) {
fullInfoUpdatesListeners.remove(listener)
}
fun addChatLiveMessagesListener(listener: ChatLiveMessagesListener) {
chatLiveMessagesListeners.add(listener)
}
fun removeChatLiveMessagesListener(listener: ChatLiveMessagesListener) {
chatLiveMessagesListeners.remove(listener)
}
2018-08-03 15:38:56 +02:00
2018-06-11 18:57:33 +02:00
fun getChatList(): TreeSet<OrderedChat> {
synchronized(chatList) {
2018-06-22 17:29:30 +02:00
return TreeSet(chatList.filter { !it.isChannel })
2018-06-11 18:57:33 +02:00
}
}
fun getChatListIds() = getChatList().map { it.chatId }
2018-07-13 13:16:01 +02:00
fun getChatIds() = chats.keys().toList()
2018-06-11 18:57:33 +02:00
fun getChat(id: Long) = chats[id]
2018-06-11 18:57:33 +02:00
fun getUser(id: Int) = users[id]
fun getCurrentUser() = currentUser
fun getUserMessage(user: TdApi.User) =
2018-07-13 13:42:57 +02:00
usersLocationMessages.values.firstOrNull { it.senderUserId == user.id }
2018-07-13 13:02:59 +02:00
fun getChatMessages(chatId: Long) =
2018-07-13 13:42:57 +02:00
usersLocationMessages.values.filter { it.chatId == chatId }
2018-06-11 18:57:33 +02:00
fun getMessages() = usersLocationMessages.values.toList()
2018-08-08 18:23:37 +02:00
fun getChatLiveMessages() = chatLiveMessages
2018-06-21 17:47:08 +02:00
fun getMessagesByChatIds(): Map<Long, List<TdApi.Message>> {
val res = mutableMapOf<Long, MutableList<TdApi.Message>>()
for (message in usersLocationMessages.values) {
2018-06-21 17:47:08 +02:00
var messages = res[message.chatId]
if (messages != null) {
messages.add(message)
} else {
messages = mutableListOf(message)
res[message.chatId] = messages
}
}
return res
}
2018-08-03 15:38:56 +02:00
fun getBasicGroupFullInfo(id: Int): TdApi.BasicGroupFullInfo? {
val res = basicGroupsFullInfo[id]
if (res == null) {
requestBasicGroupFullInfo(id)
}
return res
}
2018-07-10 14:08:25 +02:00
2018-08-03 15:38:56 +02:00
fun getSupergroupFullInfo(id: Int): TdApi.SupergroupFullInfo? {
val res = supergroupsFullInfo[id]
if (res == null) {
requestSupergroupFullInfo(id)
}
return res
}
2018-07-10 14:08:25 +02:00
2018-07-13 17:45:24 +02:00
fun isGroup(chat: TdApi.Chat): Boolean {
return chat.type is TdApi.ChatTypeSupergroup || chat.type is TdApi.ChatTypeBasicGroup
}
2018-08-02 14:19:34 +02:00
fun isPrivateChat(chat: TdApi.Chat): Boolean = chat.type is TdApi.ChatTypePrivate
private fun isChannel(chat: TdApi.Chat): Boolean {
return chat.type is TdApi.ChatTypeSupergroup && (chat.type as TdApi.ChatTypeSupergroup).isChannel
}
2018-06-11 18:57:33 +02:00
enum class TelegramAuthenticationParameterType {
PHONE_NUMBER,
CODE,
PASSWORD
}
enum class TelegramAuthorizationState {
UNKNOWN,
WAIT_PARAMETERS,
WAIT_PHONE_NUMBER,
WAIT_CODE,
WAIT_PASSWORD,
READY,
LOGGING_OUT,
CLOSING,
CLOSED
}
interface TelegramListener {
fun onTelegramStatusChanged(prevTelegramAuthorizationState: TelegramAuthorizationState,
newTelegramAuthorizationState: TelegramAuthorizationState)
fun onTelegramChatsRead()
fun onTelegramChatsChanged()
2018-06-13 19:14:08 +02:00
fun onTelegramChatChanged(chat: TdApi.Chat)
2018-06-14 20:01:10 +02:00
fun onTelegramUserChanged(user: TdApi.User)
2018-06-11 18:57:33 +02:00
fun onTelegramError(code: Int, message: String)
2018-06-20 14:00:04 +02:00
fun onSendLiveLocationError(code: Int, message: String)
2018-06-11 18:57:33 +02:00
}
interface TelegramIncomingMessagesListener {
2018-07-13 13:02:59 +02:00
fun onReceiveChatLocationMessages(chatId: Long, vararg messages: TdApi.Message)
2018-08-02 16:30:59 +02:00
fun onDeleteChatLocationMessages(chatId: Long, messages: List<TdApi.Message>)
fun updateLocationMessages()
2018-06-11 18:57:33 +02:00
}
2018-08-03 15:38:56 +02:00
interface FullInfoUpdatesListener {
fun onBasicGroupFullInfoUpdated(groupId: Int, info: TdApi.BasicGroupFullInfo)
fun onSupergroupFullInfoUpdated(groupId: Int, info: TdApi.SupergroupFullInfo)
}
interface ChatLiveMessagesListener {
fun onChatLiveMessagesUpdated(messages: List<TdApi.Message>)
}
2018-08-03 15:38:56 +02:00
2018-06-11 18:57:33 +02:00
interface TelegramAuthorizationRequestListener {
fun onRequestTelegramAuthenticationParameter(parameterType: TelegramAuthenticationParameterType)
fun onTelegramAuthorizationRequestError(code: Int, message: String)
}
inner class TelegramAuthorizationRequestHandler(val telegramAuthorizationRequestListener: TelegramAuthorizationRequestListener) {
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())
}
}
}
}
fun getTelegramAuthorizationState(): TelegramAuthorizationState {
val authorizationState = this.authorizationState
?: return TelegramAuthorizationState.UNKNOWN
return when (authorizationState.constructor) {
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
}
}
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
}
}
fun isInit() = client != null && haveAuthorization
fun getUserPhotoPath(user: TdApi.User): String? {
2018-06-14 20:01:10 +02:00
return if (hasLocalUserPhoto(user)) {
user.profilePhoto?.small?.local?.path
} else {
if (hasRemoteUserPhoto(user)) {
requestUserPhoto(user)
}
null
}
}
2018-08-03 11:21:23 +02:00
fun getOsmAndBotDeviceName(message: TdApi.Message): String {
2018-08-03 13:55:07 +02:00
var deviceName = ""
if (message.replyMarkup is TdApi.ReplyMarkupInlineKeyboard) {
val replyMarkup = message.replyMarkup as TdApi.ReplyMarkupInlineKeyboard
try {
deviceName = replyMarkup.rows[0][1].text.split("\\s".toRegex())[1]
} catch (e: Exception) {
}
}
return deviceName
2018-08-03 11:21:23 +02:00
}
fun isOsmAndBot(userId: Int) = users[userId]?.username == OSMAND_BOT_USERNAME
fun isBot(userId: Int) = users[userId]?.type is TdApi.UserTypeBot
fun startLiveMessagesUpdates(interval: Long) {
stopLiveMessagesUpdates()
val updateLiveMessagesExecutor = Executors.newSingleThreadScheduledExecutor()
this.updateLiveMessagesExecutor = updateLiveMessagesExecutor
updateLiveMessagesExecutor.scheduleWithFixedDelay({
incomingMessagesListeners.forEach { it.updateLocationMessages() }
}, interval, interval, TimeUnit.SECONDS)
}
fun stopLiveMessagesUpdates() {
updateLiveMessagesExecutor?.shutdown()
updateLiveMessagesExecutor?.awaitTermination(1, TimeUnit.MINUTES)
}
2018-06-14 20:01:10 +02:00
private fun hasLocalUserPhoto(user: TdApi.User): Boolean {
val localPhoto = user.profilePhoto?.small?.local
return if (localPhoto != null) {
localPhoto.canBeDownloaded && localPhoto.isDownloadingCompleted && localPhoto.path.isNotEmpty()
} else {
false
}
}
private fun hasRemoteUserPhoto(user: TdApi.User): Boolean {
val remotePhoto = user.profilePhoto?.small?.remote
return remotePhoto?.id?.isNotEmpty() ?: false
}
private fun requestUserPhoto(user: TdApi.User) {
val remotePhoto = user.profilePhoto?.small?.remote
if (remotePhoto != null && remotePhoto.id.isNotEmpty()) {
downloadUserFilesMap[remotePhoto.id] = user
client!!.send(TdApi.GetRemoteFile(remotePhoto.id, null)) { obj ->
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
val code = error.code
if (code != IGNORED_ERROR_CODE) {
listener?.onTelegramError(code, error.message)
}
}
TdApi.File.CONSTRUCTOR -> {
val file = obj as TdApi.File
client!!.send(TdApi.DownloadFile(file.id, 10), defaultHandler)
}
else -> listener?.onTelegramError(-1, "Receive wrong response from TDLib: $obj")
}
}
}
}
2018-06-11 18:57:33 +02:00
private fun requestChats(reload: Boolean = false) {
synchronized(chatList) {
if (reload) {
chatList.clear()
haveFullChatList = false
}
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
}
2018-06-14 14:21:58 +02:00
client?.send(TdApi.GetChats(offsetOrder, offsetChatId, CHATS_LIMIT - chatList.size)) { obj ->
2018-06-11 18:57:33 +02:00
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
if (error.code != IGNORED_ERROR_CODE) {
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")
}
2018-06-14 14:21:58 +02:00
}
2018-06-11 18:57:33 +02:00
return
}
}
listener?.onTelegramChatsRead()
}
2018-08-03 15:38:56 +02:00
private fun requestBasicGroupFullInfo(id: Int) {
client?.send(TdApi.GetBasicGroupFullInfo(id)) { obj ->
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
if (error.code != IGNORED_ERROR_CODE) {
listener?.onTelegramError(error.code, error.message)
}
}
TdApi.BasicGroupFullInfo.CONSTRUCTOR -> {
val info = obj as TdApi.BasicGroupFullInfo
basicGroupsFullInfo[id] = info
fullInfoUpdatesListeners.forEach { it.onBasicGroupFullInfoUpdated(id, info) }
}
}
}
}
private fun requestSupergroupFullInfo(id: Int) {
client?.send(TdApi.GetSupergroupFullInfo(id)) { obj ->
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
if (error.code != IGNORED_ERROR_CODE) {
listener?.onTelegramError(error.code, error.message)
}
}
TdApi.SupergroupFullInfo.CONSTRUCTOR -> {
val info = obj as TdApi.SupergroupFullInfo
supergroupsFullInfo[id] = info
fullInfoUpdatesListeners.forEach { it.onSupergroupFullInfoUpdated(id, info) }
}
}
}
}
private fun requestCurrentUser(){
client?.send(TdApi.GetMe()) { obj ->
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
if (error.code != IGNORED_ERROR_CODE) {
listener?.onTelegramError(error.code, error.message)
}
}
TdApi.User.CONSTRUCTOR -> currentUser = obj as TdApi.User
}
}
}
private fun requestMessage(chatId: Long, messageId: Long, onComplete: (TdApi.Message) -> Unit) {
client?.send(TdApi.GetMessage(chatId, messageId)) { obj ->
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
if (error.code != IGNORED_ERROR_CODE) {
listener?.onTelegramError(error.code, error.message)
}
}
TdApi.Message.CONSTRUCTOR -> onComplete(obj as TdApi.Message)
}
}
}
private fun addNewMessage(message: TdApi.Message) {
if (message.isAppropriate()) {
val oldContent = message.content
if (oldContent is TdApi.MessageText) {
2018-08-06 15:44:13 +02:00
message.content = parseOsmAndBotLocation(oldContent.text.text)
2018-08-03 13:42:01 +02:00
} else if (oldContent is TdApi.MessageLocation &&
(isOsmAndBot(message.senderUserId) || isOsmAndBot(message.viaBotUserId))) {
message.content = parseOsmAndBotLocation(message)
}
2018-07-09 18:04:03 +02:00
removeOldMessages(message.senderUserId, message.chatId)
usersLocationMessages[message.id] = message
2018-07-13 13:42:57 +02:00
incomingMessagesListeners.forEach {
it.onReceiveChatLocationMessages(message.chatId, message)
}
}
}
2018-07-09 18:04:03 +02:00
private fun removeOldMessages(userId: Int, chatId: Long) {
val user = users[userId]
if (user != null && user.username != OSMAND_BOT_USERNAME) {
usersLocationMessages.values.filter { it.senderUserId == userId && it.chatId == chatId }
.forEach {
usersLocationMessages.remove(it.id)
}
}
}
2018-06-11 18:57:33 +02:00
/**
* @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-07-13 16:04:40 +02:00
fun sendLiveLocationMessage(chatLivePeriods: Map<Long, Long>, latitude: Double, longitude: Double): Boolean {
2018-06-11 18:57:33 +02:00
if (!requestingActiveLiveLocationMessages && haveAuthorization) {
if (needRefreshActiveLiveLocationMessages) {
getActiveLiveLocationMessages {
2018-07-13 16:04:40 +02:00
sendLiveLocationImpl(chatLivePeriods, latitude, longitude)
2018-06-11 18:57:33 +02:00
}
needRefreshActiveLiveLocationMessages = false
} else {
2018-07-13 16:04:40 +02:00
sendLiveLocationImpl(chatLivePeriods, latitude, longitude)
2018-06-11 18:57:33 +02:00
}
return true
}
return false
}
private fun getActiveLiveLocationMessages(onComplete: (() -> Unit)?) {
requestingActiveLiveLocationMessages = true
2018-06-14 14:21:58 +02:00
client?.send(TdApi.GetActiveLiveLocationMessages()) { obj ->
2018-06-11 18:57:33 +02:00
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
if (error.code != IGNORED_ERROR_CODE) {
needRefreshActiveLiveLocationMessages = true
2018-06-20 14:00:04 +02:00
listener?.onSendLiveLocationError(error.code, error.message)
2018-06-11 18:57:33 +02:00
}
}
TdApi.Messages.CONSTRUCTOR -> {
val messages = (obj as TdApi.Messages).messages
chatLiveMessages.clear()
if (messages.isNotEmpty()) {
for (msg in messages) {
val chatId = msg.chatId
2018-08-08 18:23:37 +02:00
chatLiveMessages[chatId] = msg
2018-06-11 18:57:33 +02:00
}
}
chatLiveMessagesListeners.forEach { it.onChatLiveMessagesUpdated(messages.toList()) }
2018-06-11 18:57:33 +02:00
onComplete?.invoke()
}
2018-06-20 14:00:04 +02:00
else -> listener?.onSendLiveLocationError(-1, "Receive wrong response from TDLib: $obj")
2018-06-11 18:57:33 +02:00
}
requestingActiveLiveLocationMessages = false
2018-06-14 14:21:58 +02:00
}
2018-06-11 18:57:33 +02:00
}
2018-07-13 16:04:40 +02:00
private fun sendLiveLocationImpl(chatLivePeriods: Map<Long, Long>, latitude: Double, longitude: Double) {
2018-06-11 18:57:33 +02:00
val location = TdApi.Location(latitude, longitude)
2018-07-13 16:08:47 +02:00
chatLivePeriods.forEach { chatId, livePeriod ->
val content = TdApi.InputMessageLocation(location, livePeriod.toInt())
2018-08-08 18:23:37 +02:00
val msgId = chatLiveMessages[chatId]?.id
2018-07-13 13:02:59 +02:00
if (msgId != null) {
if (msgId != 0L) {
2018-07-13 14:53:58 +02:00
client?.send(
TdApi.EditMessageLiveLocation(chatId, msgId, null, location),
liveLocationMessageUpdatesHandler
)
2018-06-11 18:57:33 +02:00
}
2018-07-13 13:02:59 +02:00
} else {
2018-07-13 14:53:58 +02:00
client?.send(
TdApi.SendMessage(chatId, 0, false, true, null, content),
liveLocationMessageUpdatesHandler
)
2018-06-11 18:57:33 +02:00
}
}
}
/**
* @chatId Id of the chat
* @message Text of the message
*/
fun sendTextMessage(chatId: Long, message: String): Boolean {
// 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))
if (haveAuthorization) {
val content = TdApi.InputMessageText(TdApi.FormattedText(message, null), false, true)
client?.send(TdApi.SendMessage(chatId, 0, false, true, null, content), defaultHandler)
return true
}
return false
}
fun logout(): Boolean {
return if (libraryLoaded) {
haveAuthorization = false
client!!.send(TdApi.LogOut(), defaultHandler)
true
} else {
false
}
}
fun close(): Boolean {
return if (libraryLoaded) {
haveAuthorization = false
client!!.send(TdApi.Close(), defaultHandler)
true
} else {
false
}
}
private fun setChatOrder(chat: TdApi.Chat, order: Long) {
synchronized(chatList) {
val isChannel = isChannel(chat)
2018-06-22 17:29:30 +02:00
2018-06-11 18:57:33 +02:00
if (chat.order != 0L) {
2018-06-22 17:29:30 +02:00
chatList.remove(OrderedChat(chat.order, chat.id, isChannel))
2018-06-11 18:57:33 +02:00
}
chat.order = order
if (chat.order != 0L) {
2018-06-22 17:29:30 +02:00
chatList.add(OrderedChat(chat.order, chat.id, isChannel))
2018-06-11 18:57:33 +02:00
}
}
}
private inner class LiveLocationMessageUpdatesHandler : ResultHandler {
override fun onResult(obj: TdApi.Object) {
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
if (error.code != IGNORED_ERROR_CODE) {
needRefreshActiveLiveLocationMessages = true
2018-06-20 14:00:04 +02:00
listener?.onSendLiveLocationError(error.code, error.message)
2018-06-11 18:57:33 +02:00
}
}
else -> {
if (obj is TdApi.Message) {
when (obj.sendingState?.constructor) {
TdApi.MessageSendingStateFailed.CONSTRUCTOR -> {
needRefreshActiveLiveLocationMessages = true
2018-06-20 14:00:04 +02:00
listener?.onSendLiveLocationError(-1, "Live location message ${obj.id} failed to send")
2018-06-11 18:57:33 +02:00
}
}
}
}
}
}
}
private fun onAuthorizationStateUpdated(authorizationState: AuthorizationState?) {
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
2018-06-13 19:14:08 +02:00
parameters.apiId = 293148
parameters.apiHash = "d1942abd0f1364efe5020e2bfed2ed15"
2018-06-11 18:57:33 +02:00
parameters.systemLanguageCode = "en"
parameters.deviceModel = "Android"
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")
telegramAuthorizationRequestHandler?.telegramAuthorizationRequestListener?.onRequestTelegramAuthenticationParameter(PHONE_NUMBER)
}
TdApi.AuthorizationStateWaitCode.CONSTRUCTOR -> {
log.info("Request code")
telegramAuthorizationRequestHandler?.telegramAuthorizationRequestListener?.onRequestTelegramAuthenticationParameter(CODE)
}
TdApi.AuthorizationStateWaitPassword.CONSTRUCTOR -> {
log.info("Request password")
telegramAuthorizationRequestHandler?.telegramAuthorizationRequestListener?.onRequestTelegramAuthenticationParameter(PASSWORD)
}
TdApi.AuthorizationStateReady.CONSTRUCTOR -> {
log.info("Ready")
}
TdApi.AuthorizationStateLoggingOut.CONSTRUCTOR -> {
log.info("Logging out")
}
TdApi.AuthorizationStateClosing.CONSTRUCTOR -> {
log.info("Closing")
}
TdApi.AuthorizationStateClosed.CONSTRUCTOR -> {
log.info("Closed")
}
else -> log.error("Unsupported authorization state: " + this.authorizationState!!)
}
val wasAuthorized = haveAuthorization
haveAuthorization = this.authorizationState?.constructor == TdApi.AuthorizationStateReady.CONSTRUCTOR
if (wasAuthorized != haveAuthorization) {
needRefreshActiveLiveLocationMessages = true
if (haveAuthorization) {
requestChats(true)
requestCurrentUser()
2018-06-11 18:57:33 +02:00
}
}
val newAuthState = getTelegramAuthorizationState()
listener?.onTelegramStatusChanged(prevAuthState, newAuthState)
}
private fun TdApi.Message.isAppropriate(): Boolean {
if (isOutgoing || isChannelPost) {
return false
}
val lastEdited = Math.max(date, editDate)
if (TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis()) - lastEdited > messageActiveTimeSec) {
return false
}
val content = content
return when (content) {
is TdApi.MessageLocation -> true
2018-08-03 12:30:38 +02:00
is TdApi.MessageText -> isOsmAndBot(senderUserId) || isOsmAndBot(viaBotUserId)
else -> false
}
}
private fun parseOsmAndBotLocation(message: TdApi.Message): MessageOsmAndBotLocation {
val messageLocation = message.content as TdApi.MessageLocation
2018-08-06 14:57:03 +02:00
return MessageOsmAndBotLocation().apply {
name = getOsmAndBotDeviceName(message)
lat = messageLocation.location.latitude
lon = messageLocation.location.longitude
2018-08-06 15:44:13 +02:00
val date = message.editDate
lastUpdated = if (date != 0) {
2018-08-06 16:30:41 +02:00
date
2018-08-06 15:44:13 +02:00
} else {
message.date
}
2018-08-06 14:57:03 +02:00
}
2018-08-03 17:53:21 +02:00
}
2018-08-03 17:53:21 +02:00
private fun parseOsmAndBotLocationContent(oldContent:MessageOsmAndBotLocation, content: TdApi.MessageContent): MessageOsmAndBotLocation {
val messageLocation = content as TdApi.MessageLocation
2018-08-06 14:57:03 +02:00
return MessageOsmAndBotLocation().apply {
name = oldContent.name
lat = messageLocation.location.latitude
lon = messageLocation.location.longitude
2018-08-06 15:44:13 +02:00
lastUpdated = (System.currentTimeMillis() / 1000).toInt()
2018-08-06 14:57:03 +02:00
}
}
private fun parseOsmAndBotLocation(text: String): MessageOsmAndBotLocation {
val res = MessageOsmAndBotLocation()
for (s in text.lines()) {
when {
s.startsWith(DEVICE_PREFIX) -> {
res.name = s.removePrefix(DEVICE_PREFIX)
}
s.startsWith(LOCATION_PREFIX) -> {
val locStr = s.removePrefix(LOCATION_PREFIX)
try {
val (latS, lonS) = locStr.split(" ")
val updatedS = locStr.substring(locStr.indexOf("("), locStr.length)
val timeSecs = parseTime(updatedS.removePrefix("(").removeSuffix(")"))
res.lat = latS.dropLast(1).toDouble()
res.lon = lonS.toDouble()
if (timeSecs < messageActiveTimeSec) {
2018-08-06 15:44:13 +02:00
res.lastUpdated = (System.currentTimeMillis() / 1000 - timeSecs).toInt()
} else {
res.lastUpdated = timeSecs
}
} catch (e: Exception) {
e.printStackTrace()
}
}
}
}
return res
}
2018-08-06 13:20:18 +02:00
private fun parseTime(timeS: String): Int {
2018-08-06 14:57:03 +02:00
try {
when {
timeS.endsWith(FEW_SECONDS_AGO) -> return 5
2018-08-06 14:57:03 +02:00
timeS.endsWith(SECONDS_AGO_SUFFIX) -> {
val locStr = timeS.removeSuffix(SECONDS_AGO_SUFFIX)
return locStr.toInt()
}
timeS.endsWith(MINUTES_AGO_SUFFIX) -> {
val locStr = timeS.removeSuffix(MINUTES_AGO_SUFFIX)
val minutes = locStr.toInt()
return minutes * 60
}
timeS.endsWith(HOURS_AGO_SUFFIX) -> {
val locStr = timeS.removeSuffix(HOURS_AGO_SUFFIX)
val hours = locStr.toInt()
return hours * 60 * 60
}
timeS.endsWith(UTC_FORMAT_SUFFIX) -> {
val locStr = timeS.removeSuffix(UTC_FORMAT_SUFFIX)
val (latS, lonS) = locStr.split(" ")
val date = UTC_DATE_FORMAT.parse(latS)
val time = UTC_TIME_FORMAT.parse(lonS)
val res = date.time + time.time
return res.toInt()
}
2018-08-06 13:20:18 +02:00
}
2018-08-06 14:57:03 +02:00
} catch (e: Exception) {
e.printStackTrace()
2018-08-06 13:20:18 +02:00
}
return 0
}
class MessageOsmAndBotLocation : TdApi.MessageContent() {
var name: String = ""
internal set
var lat: Double = Double.NaN
internal set
var lon: Double = Double.NaN
internal set
2018-08-06 15:44:13 +02:00
var lastUpdated: Int = 0
2018-08-03 17:53:21 +02:00
internal set
override fun getConstructor() = -1
fun isValid() = name != "" && lat != Double.NaN && lon != Double.NaN
}
2018-06-22 17:29:30 +02:00
class OrderedChat internal constructor(internal val order: Long, internal val chatId: Long, internal val isChannel: Boolean) : Comparable<OrderedChat> {
2018-06-11 18:57:33 +02:00
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
2018-06-13 19:52:43 +02:00
synchronized(chat) {
2018-06-22 17:29:30 +02:00
chats[chat.id] = chat
val localPhoto = chat.photo?.small?.local
val hasLocalPhoto = if (localPhoto != null) {
localPhoto.canBeDownloaded && localPhoto.isDownloadingCompleted && localPhoto.path.isNotEmpty()
} else {
false
}
if (!hasLocalPhoto) {
val remotePhoto = chat.photo?.small?.remote
if (remotePhoto != null && remotePhoto.id.isNotEmpty()) {
downloadChatFilesMap[remotePhoto.id] = chat
client!!.send(TdApi.GetRemoteFile(remotePhoto.id, null)) { obj ->
when (obj.constructor) {
TdApi.Error.CONSTRUCTOR -> {
val error = obj as TdApi.Error
val code = error.code
if (code != IGNORED_ERROR_CODE) {
listener?.onTelegramError(code, error.message)
2018-06-13 19:14:08 +02:00
}
}
2018-06-22 17:29:30 +02:00
TdApi.File.CONSTRUCTOR -> {
val file = obj as TdApi.File
client!!.send(TdApi.DownloadFile(file.id, 10), defaultHandler)
}
else -> listener?.onTelegramError(-1, "Receive wrong response from TDLib: $obj")
2018-06-14 14:21:58 +02:00
}
2018-06-13 19:14:08 +02:00
}
}
2018-06-11 18:57:33 +02:00
}
2018-06-22 17:29:30 +02:00
val order = chat.order
chat.order = 0
setChatOrder(chat, order)
2018-06-11 18:57:33 +02:00
}
listener?.onTelegramChatsChanged()
}
TdApi.UpdateChatTitle.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatTitle
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.title = updateChat.title
}
listener?.onTelegramChatChanged(chat)
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateChatPhoto.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatPhoto
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.photo = updateChat.photo
}
listener?.onTelegramChatChanged(chat)
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateChatLastMessage.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatLastMessage
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.lastMessage = updateChat.lastMessage
setChatOrder(chat, updateChat.order)
}
2018-06-14 14:21:58 +02:00
//listener?.onTelegramChatsChanged()
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateChatOrder.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatOrder
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
setChatOrder(chat, updateChat.order)
}
listener?.onTelegramChatsChanged()
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateChatIsPinned.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatIsPinned
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.isPinned = updateChat.isPinned
setChatOrder(chat, updateChat.order)
}
2018-06-14 14:21:58 +02:00
//listener?.onTelegramChatsChanged()
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateChatReadInbox.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatReadInbox
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.lastReadInboxMessageId = updateChat.lastReadInboxMessageId
chat.unreadCount = updateChat.unreadCount
}
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateChatReadOutbox.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatReadOutbox
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.lastReadOutboxMessageId = updateChat.lastReadOutboxMessageId
}
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateChatUnreadMentionCount.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatUnreadMentionCount
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.unreadMentionCount = updateChat.unreadMentionCount
}
}
}
TdApi.UpdateMessageEdited.CONSTRUCTOR -> {
val updateMessageEdited = obj as TdApi.UpdateMessageEdited
val message = usersLocationMessages[updateMessageEdited.messageId]
if (message == null) {
updateMessageEdited.apply {
requestMessage(chatId, messageId, this@TelegramHelper::addNewMessage)
}
} else {
synchronized(message) {
message.editDate = updateMessageEdited.editDate
}
2018-07-13 13:02:59 +02:00
incomingMessagesListeners.forEach {
2018-07-13 13:42:57 +02:00
it.onReceiveChatLocationMessages(message.chatId, message)
}
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateMessageContent.CONSTRUCTOR -> {
val updateMessageContent = obj as TdApi.UpdateMessageContent
val message = usersLocationMessages[updateMessageContent.messageId]
if (message == null) {
updateMessageContent.apply {
2018-07-02 17:37:10 +02:00
requestMessage(chatId, messageId, this@TelegramHelper::addNewMessage)
}
} else {
2018-06-13 19:52:43 +02:00
synchronized(message) {
val newContent = updateMessageContent.newContent
message.content = if (newContent is TdApi.MessageText) {
parseOsmAndBotLocation(newContent.text.text)
2018-08-03 13:55:07 +02:00
} else if (newContent is TdApi.MessageLocation &&
(isOsmAndBot(message.senderUserId) || isOsmAndBot(message.viaBotUserId))) {
2018-08-03 17:53:21 +02:00
parseOsmAndBotLocationContent(message.content as MessageOsmAndBotLocation, newContent)
} else {
newContent
}
2018-06-13 19:52:43 +02:00
}
2018-07-13 13:02:59 +02:00
incomingMessagesListeners.forEach {
2018-07-13 13:42:57 +02:00
it.onReceiveChatLocationMessages(message.chatId, message)
2018-06-11 18:57:33 +02:00
}
}
}
TdApi.UpdateNewMessage.CONSTRUCTOR -> {
addNewMessage((obj as TdApi.UpdateNewMessage).message)
2018-06-11 18:57:33 +02:00
}
TdApi.UpdateMessageMentionRead.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateMessageMentionRead
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.unreadMentionCount = updateChat.unreadMentionCount
}
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateMessageSendFailed.CONSTRUCTOR -> {
needRefreshActiveLiveLocationMessages = true
}
TdApi.UpdateMessageSendSucceeded.CONSTRUCTOR -> {
val updateMessageSendSucceeded = obj as TdApi.UpdateMessageSendSucceeded
val message = updateMessageSendSucceeded.message
2018-08-08 18:23:37 +02:00
chatLiveMessages[message.chatId] = message
2018-06-11 18:57:33 +02:00
}
TdApi.UpdateDeleteMessages.CONSTRUCTOR -> {
val updateDeleteMessages = obj as TdApi.UpdateDeleteMessages
if (updateDeleteMessages.isPermanent) {
val chatId = updateDeleteMessages.chatId
2018-08-02 16:30:59 +02:00
val deletedMessages = mutableListOf<TdApi.Message>()
2018-06-11 18:57:33 +02:00
for (messageId in updateDeleteMessages.messageIds) {
2018-08-08 18:23:37 +02:00
if (chatLiveMessages[chatId]?.id == messageId) {
2018-06-11 18:57:33 +02:00
chatLiveMessages.remove(chatId)
2018-08-02 16:30:59 +02:00
}
2018-08-08 18:23:37 +02:00
usersLocationMessages.remove(messageId)
?.also { deletedMessages.add(it) }
2018-08-02 16:30:59 +02:00
}
if (deletedMessages.isNotEmpty()) {
incomingMessagesListeners.forEach {
it.onDeleteChatLocationMessages(chatId, deletedMessages)
2018-06-11 18:57:33 +02:00
}
}
}
}
TdApi.UpdateChatReplyMarkup.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatReplyMarkup
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.replyMarkupMessageId = updateChat.replyMarkupMessageId
}
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateChatDraftMessage.CONSTRUCTOR -> {
val updateChat = obj as TdApi.UpdateChatDraftMessage
val chat = chats[updateChat.chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.draftMessage = updateChat.draftMessage
setChatOrder(chat, updateChat.order)
}
2018-06-14 14:21:58 +02:00
//listener?.onTelegramChatsChanged()
2018-06-11 18:57:33 +02:00
}
}
TdApi.UpdateNotificationSettings.CONSTRUCTOR -> {
val update = obj as TdApi.UpdateNotificationSettings
if (update.scope is TdApi.NotificationSettingsScopeChat) {
val chat = chats[(update.scope as TdApi.NotificationSettingsScopeChat).chatId]
2018-06-13 19:52:43 +02:00
if (chat != null) {
synchronized(chat) {
chat.notificationSettings = update.notificationSettings
}
2018-06-11 18:57:33 +02:00
}
}
}
2018-06-13 19:14:08 +02:00
TdApi.UpdateFile.CONSTRUCTOR -> {
val updateFile = obj as TdApi.UpdateFile
if (updateFile.file.local.isDownloadingCompleted) {
val remoteId = updateFile.file.remote.id
val chat = downloadChatFilesMap.remove(remoteId)
if (chat != null) {
2018-06-13 19:52:43 +02:00
synchronized(chat) {
chat.photo?.small = updateFile.file
}
2018-06-14 20:01:10 +02:00
listener?.onTelegramChatChanged(chat)
return
}
val user = downloadUserFilesMap.remove(remoteId)
if (user != null) {
synchronized(user) {
user.profilePhoto?.small = updateFile.file
}
listener?.onTelegramUserChanged(user)
return
2018-06-13 19:14:08 +02:00
}
}
}
2018-06-11 18:57:33 +02:00
TdApi.UpdateUserFullInfo.CONSTRUCTOR -> {
val updateUserFullInfo = obj as TdApi.UpdateUserFullInfo
usersFullInfo[updateUserFullInfo.userId] = updateUserFullInfo.userFullInfo
}
TdApi.UpdateBasicGroupFullInfo.CONSTRUCTOR -> {
val updateBasicGroupFullInfo = obj as TdApi.UpdateBasicGroupFullInfo
2018-08-03 15:38:56 +02:00
val id = updateBasicGroupFullInfo.basicGroupId
if (basicGroupsFullInfo.containsKey(id)) {
val info = updateBasicGroupFullInfo.basicGroupFullInfo
basicGroupsFullInfo[id] = info
fullInfoUpdatesListeners.forEach { it.onBasicGroupFullInfoUpdated(id, info) }
}
2018-06-11 18:57:33 +02:00
}
TdApi.UpdateSupergroupFullInfo.CONSTRUCTOR -> {
val updateSupergroupFullInfo = obj as TdApi.UpdateSupergroupFullInfo
2018-08-03 15:38:56 +02:00
val id = updateSupergroupFullInfo.supergroupId
if (supergroupsFullInfo.containsKey(id)) {
val info = updateSupergroupFullInfo.supergroupFullInfo
supergroupsFullInfo[id] = info
fullInfoUpdatesListeners.forEach { it.onSupergroupFullInfoUpdated(id, info) }
}
2018-06-11 18:57:33 +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
if (errorObj.code != IGNORED_ERROR_CODE) {
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
}
}
}