2018-06-05 23:08:46 +02:00
|
|
|
package net.osmand.telegram
|
2018-06-05 21:51:08 +02:00
|
|
|
|
|
|
|
import android.text.TextUtils
|
2018-06-05 23:08:46 +02:00
|
|
|
import net.osmand.telegram.TelegramHelper.AuthParamType.*
|
2018-06-05 21:51:08 +02:00
|
|
|
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-06-06 13:06:56 +02:00
|
|
|
import java.util.*
|
2018-06-05 21:51:08 +02:00
|
|
|
import java.util.concurrent.ConcurrentHashMap
|
|
|
|
|
|
|
|
class TelegramHelper private constructor() {
|
|
|
|
var appDir: String? = null
|
|
|
|
private var libraryLoaded = false
|
|
|
|
private var authParamRequestHandler: AuthParamRequestHandler? = null
|
|
|
|
|
|
|
|
private var client: Client? = null
|
|
|
|
|
|
|
|
private var authorizationState: AuthorizationState? = null
|
|
|
|
private var isHaveAuthorization = false
|
|
|
|
|
|
|
|
private val defaultHandler = DefaultHandler()
|
|
|
|
|
|
|
|
var listener: TelegramListener? = null
|
|
|
|
|
|
|
|
enum class AuthParamType {
|
|
|
|
PHONE_NUMBER,
|
|
|
|
CODE,
|
|
|
|
PASSWORD
|
|
|
|
}
|
|
|
|
|
|
|
|
enum class AuthState {
|
|
|
|
UNKNOWN,
|
|
|
|
WAIT_PARAMETERS,
|
|
|
|
WAIT_PHONE_NUMBER,
|
|
|
|
WAIT_CODE,
|
|
|
|
WAIT_PASSWORD,
|
|
|
|
READY,
|
|
|
|
LOGGING_OUT,
|
|
|
|
CLOSING,
|
|
|
|
CLOSED
|
|
|
|
}
|
|
|
|
|
|
|
|
interface TelegramListener {
|
|
|
|
fun onTelegramStatusChanged(prevAutoState: AuthState, newAuthState: AuthState)
|
|
|
|
}
|
|
|
|
|
|
|
|
interface AuthParamRequestListener {
|
|
|
|
fun onRequestAuthParam(paramType: AuthParamType)
|
2018-06-06 13:06:56 +02:00
|
|
|
fun onAuthRequestError(code: Int, message: String)
|
2018-06-05 21:51:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inner class AuthParamRequestHandler(val authParamRequestListener: AuthParamRequestListener) {
|
|
|
|
|
|
|
|
fun applyAuthParam(paramType: AuthParamType, paramValue: String) {
|
|
|
|
if (!TextUtils.isEmpty(paramValue)) {
|
|
|
|
when (paramType) {
|
|
|
|
PHONE_NUMBER -> client!!.send(TdApi.SetAuthenticationPhoneNumber(paramValue, false, false), AuthorizationRequestHandler())
|
|
|
|
CODE -> client!!.send(TdApi.CheckAuthenticationCode(paramValue, "", ""), AuthorizationRequestHandler())
|
|
|
|
PASSWORD -> client!!.send(TdApi.CheckAuthenticationPassword(paramValue), AuthorizationRequestHandler())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fun getAuthState(): AuthState {
|
|
|
|
val authorizationState = this.authorizationState ?: return AuthState.UNKNOWN
|
|
|
|
return when (authorizationState.constructor) {
|
|
|
|
TdApi.AuthorizationStateWaitTdlibParameters.CONSTRUCTOR -> AuthState.WAIT_PARAMETERS
|
|
|
|
TdApi.AuthorizationStateWaitPhoneNumber.CONSTRUCTOR -> AuthState.WAIT_PHONE_NUMBER
|
|
|
|
TdApi.AuthorizationStateWaitCode.CONSTRUCTOR -> AuthState.WAIT_CODE
|
|
|
|
TdApi.AuthorizationStateWaitPassword.CONSTRUCTOR -> AuthState.WAIT_PASSWORD
|
|
|
|
TdApi.AuthorizationStateReady.CONSTRUCTOR -> AuthState.READY
|
|
|
|
TdApi.AuthorizationStateLoggingOut.CONSTRUCTOR -> AuthState.LOGGING_OUT
|
|
|
|
TdApi.AuthorizationStateClosing.CONSTRUCTOR -> AuthState.CLOSING
|
|
|
|
TdApi.AuthorizationStateClosed.CONSTRUCTOR -> AuthState.CLOSED
|
|
|
|
else -> AuthState.UNKNOWN
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fun setAuthParamRequestHandler(authParamRequestListener: AuthParamRequestListener): AuthParamRequestHandler {
|
|
|
|
val authParamRequestHandler = AuthParamRequestHandler(authParamRequestListener)
|
|
|
|
this.authParamRequestHandler = authParamRequestHandler
|
|
|
|
return authParamRequestHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
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 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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun onAuthorizationStateUpdated(authorizationState: AuthorizationState?) {
|
|
|
|
val prevAuthState = getAuthState()
|
|
|
|
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"
|
2018-06-05 21:51:08 +02:00
|
|
|
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")
|
|
|
|
authParamRequestHandler?.authParamRequestListener?.onRequestAuthParam(PHONE_NUMBER)
|
|
|
|
}
|
|
|
|
TdApi.AuthorizationStateWaitCode.CONSTRUCTOR -> {
|
|
|
|
log.info("Request code")
|
|
|
|
authParamRequestHandler?.authParamRequestListener?.onRequestAuthParam(CODE)
|
|
|
|
}
|
|
|
|
TdApi.AuthorizationStateWaitPassword.CONSTRUCTOR -> {
|
|
|
|
log.info("Request password")
|
|
|
|
authParamRequestHandler?.authParamRequestListener?.onRequestAuthParam(PASSWORD)
|
|
|
|
}
|
|
|
|
TdApi.AuthorizationStateReady.CONSTRUCTOR -> {
|
|
|
|
isHaveAuthorization = 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!!)
|
|
|
|
}
|
|
|
|
val newAuthState = getAuthState()
|
|
|
|
listener?.onTelegramStatusChanged(prevAuthState, newAuthState)
|
|
|
|
}
|
|
|
|
|
|
|
|
private 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!!) {
|
|
|
|
chats[chat.id] = chat
|
|
|
|
|
|
|
|
val order = chat.order
|
|
|
|
chat.order = 0
|
|
|
|
setChatOrder(chat, order)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}// print("Unsupported update:" + newLine + object);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private inner class AuthorizationRequestHandler : ResultHandler {
|
|
|
|
override fun onResult(obj: TdApi.Object) {
|
|
|
|
when (obj.constructor) {
|
|
|
|
TdApi.Error.CONSTRUCTOR -> {
|
|
|
|
log.error("Receive an error: $obj")
|
2018-06-06 13:06:56 +02:00
|
|
|
val errorObj = obj as TdApi.Error
|
|
|
|
authParamRequestHandler?.authParamRequestListener?.onAuthRequestError(errorObj.code, errorObj.message)
|
2018-06-05 21:51:08 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
companion object {
|
|
|
|
private val log = PlatformUtil.getLog(TelegramHelper::class.java)
|
|
|
|
|
|
|
|
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>()
|
|
|
|
|
|
|
|
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))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|