Create ChatIdentifierWithThreadId.kt

This commit is contained in:
InsanusMokrassar 2022-11-10 09:11:13 +06:00 committed by GitHub
parent 39335b1dab
commit 733ad34289
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
package dev.inmo.tgbotapi.utils.extensions
sealed interface ChatIdWithThreadId {
val chatId: ChatId
val threadId: MessageThreadId?
// Light weight due to absence of any conversations
value class ByMessage(
val sourceMessage: Message
) : ChatIdWithThreadId {
override val chatId: ChatId
get() = sourceMessage.chat.id
override val threadId: MessageThreadId?
get() = sourceMessage.threadIdOrNull
}
@Serializable
value class ByPair(
val pair: Pair<ChatId, MessageThreadId?>
) : ChatIdWithThreadId {
override val chatId: ChatId
get() = pair.first
override val threadId: MessageThreadId?
get() = pair.second
}
companion {
inline operator fun invoke(message: Message) = ByMessage(message)
inline fun serializable(message: Message) = ByPair(message.chatId.id to message.threadIdOrNull)
inline fun serializable(pair: Pair<ChatId, MessageThreadId?>) = ByPair(pair)
}
}
val Message.chatIdWithThreadId
get() = ChatIdWithThreadId(this)
val Message.serializableChatIdWithThreadId
get() = ChatIdWithThreadId.serializable(this)