tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/message/RawMessage.kt

410 lines
17 KiB
Kotlin
Raw Normal View History

2020-10-04 11:06:30 +00:00
package dev.inmo.tgbotapi.types.message
2018-12-26 08:07:24 +00:00
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.types.*
import dev.inmo.tgbotapi.types.buttons.InlineKeyboardMarkup
2022-04-21 18:16:41 +00:00
import dev.inmo.tgbotapi.types.chat.*
import dev.inmo.tgbotapi.types.chat.CommonBot
import dev.inmo.tgbotapi.types.chat.User
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.types.dice.Dice
import dev.inmo.tgbotapi.types.files.*
2022-04-17 12:15:24 +00:00
import dev.inmo.tgbotapi.types.files.Sticker
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.types.games.RawGame
2020-11-04 19:12:14 +00:00
import dev.inmo.tgbotapi.types.location.Location
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.types.message.ChatEvents.*
import dev.inmo.tgbotapi.types.message.ChatEvents.abstracts.*
2021-03-09 13:19:15 +00:00
import dev.inmo.tgbotapi.types.message.ChatEvents.voice.*
2021-12-20 08:07:45 +00:00
import dev.inmo.tgbotapi.types.message.abstracts.*
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.types.message.content.*
2022-05-01 05:52:02 +00:00
import dev.inmo.tgbotapi.types.message.content.InvoiceContent
import dev.inmo.tgbotapi.types.message.content.MessageContent
2021-10-03 05:43:15 +00:00
import dev.inmo.tgbotapi.types.message.payments.*
2021-01-15 10:27:22 +00:00
import dev.inmo.tgbotapi.types.passport.PassportData
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.types.payments.Invoice
import dev.inmo.tgbotapi.types.payments.SuccessfulPayment
import dev.inmo.tgbotapi.types.polls.Poll
import dev.inmo.tgbotapi.types.venue.Venue
import kotlinx.serialization.SerialName
2020-03-31 05:41:58 +00:00
import kotlinx.serialization.Serializable
2018-12-26 08:07:24 +00:00
import kotlin.reflect.KClass
// TODO:: add PassportData type
@Serializable
internal data class RawMessage(
@SerialName(messageIdField)
2018-12-26 08:07:24 +00:00
val messageId: MessageIdentifier,
val date: TelegramDate,
private val chat: Chat,
2018-12-26 08:07:24 +00:00
private val from: User? = null,
private val sender_chat: PublicChat? = null,
2019-04-13 02:16:40 +00:00
private val forward_from: User? = null,
private val forward_from_chat: Chat? = null,
2019-04-13 02:16:40 +00:00
private val forward_from_message_id: MessageIdentifier? = null,
private val forward_signature: ForwardSignature? = null,
2019-04-16 09:26:02 +00:00
private val forward_sender_name: ForwardSenderName? = null,
2019-04-13 02:16:40 +00:00
private val forward_date: TelegramDate? = null,
2021-12-18 16:28:01 +00:00
private val is_automatic_forward: Boolean? = null,
2019-04-13 02:16:40 +00:00
private val reply_to_message: RawMessage? = null,
2020-06-05 07:38:05 +00:00
private val via_bot: CommonBot? = null,
2019-04-13 02:16:40 +00:00
private val edit_date: TelegramDate? = null,
2021-12-18 17:11:28 +00:00
private val has_protected_content: Boolean? = null,
2019-04-13 02:16:40 +00:00
private val media_group_id: MediaGroupIdentifier? = null,
private val author_signature: AuthorSignature? = null,
private val text: String? = null,
private val entities: RawMessageEntities? = null,
private val caption: String? = null,
private val caption_entities: RawMessageEntities? = null,
private val audio: AudioFile? = null,
private val document: DocumentFile? = null,
private val animation: AnimationFile? = null,
2019-08-18 06:31:33 +00:00
private val game: RawGame? = null,
2018-12-26 08:07:24 +00:00
@Serializable(PhotoSerializer::class)
2019-04-13 02:16:40 +00:00
private val photo: Photo? = null,
private val sticker: Sticker? = null,
private val video: VideoFile? = null,
private val voice: VoiceFile? = null,
private val video_note: VideoNoteFile? = null,
private val contact: Contact? = null,
private val location: Location? = null,
private val venue: Venue? = null,
2019-04-16 08:04:02 +00:00
private val poll: Poll? = null,
2019-04-13 02:20:29 +00:00
private val new_chat_members: List<User>? = null,
2019-04-13 02:16:40 +00:00
private val left_chat_member: User? = null,
private val new_chat_title: String? = null,
2018-12-26 08:07:24 +00:00
@Serializable(PhotoSerializer::class)
2019-04-13 02:16:40 +00:00
private val new_chat_photo: Photo? = null,
private val delete_chat_photo: Boolean = false,
private val group_chat_created: Boolean = false,
private val supergroup_chat_created: Boolean = false,
private val channel_chat_created: Boolean = false,
private val migrate_to_chat_id: ChatId? = null,
private val migrate_from_chat_id: ChatId? = null,
2019-04-13 02:16:40 +00:00
private val pinned_message: RawMessage? = null,
private val invoice: Invoice? = null,
2020-03-30 15:30:22 +00:00
private val dice: Dice? = null,
2019-04-13 02:16:40 +00:00
private val successful_payment: SuccessfulPayment? = null,
2018-12-26 08:07:24 +00:00
2021-03-09 13:19:15 +00:00
// Voice Chat Service Messages
private val video_chat_scheduled: VideoChatScheduled? = null,
private val video_chat_started: VideoChatStarted? = null,
private val video_chat_ended: VideoChatEnded? = null,
private val video_chat_participants_invited: VideoChatParticipantsInvited? = null,
2021-03-09 13:19:15 +00:00
// AutoDelete Message time changed
private val message_auto_delete_timer_changed: MessageAutoDeleteTimerChanged? = null,
2018-12-26 08:07:24 +00:00
// login property
2019-04-13 02:16:40 +00:00
private val connected_website: String? = null,
2018-12-26 08:07:24 +00:00
2022-04-17 12:36:40 +00:00
// login property
private val web_app_data: WebAppData? = null,
2018-12-26 08:07:24 +00:00
// passport property
2021-01-15 10:27:22 +00:00
private val passport_data: PassportData? = null,
2020-11-04 19:12:14 +00:00
private val proximity_alert_triggered: ProximityAlertTriggered? = null,
2019-06-01 09:28:37 +00:00
private val reply_markup: InlineKeyboardMarkup? = null
2018-12-26 08:07:24 +00:00
) {
private val content: MessageContent? by lazy {
2019-04-13 02:20:29 +00:00
val adaptedCaptionEntities = caption ?.let {
2021-04-28 13:54:57 +00:00
(caption_entities ?: emptyList()).asTextSources(caption)
2018-12-26 08:07:24 +00:00
} ?: emptyList()
when {
2021-04-28 13:54:57 +00:00
text != null -> TextContent(text, (entities ?: emptyList()).asTextSources(text))
2018-12-26 08:07:24 +00:00
audio != null -> AudioContent(
audio,
caption,
adaptedCaptionEntities
)
video != null -> VideoContent(
video,
caption,
adaptedCaptionEntities
)
animation != null -> AnimationContent(
animation,
document,
caption,
adaptedCaptionEntities
)
2018-12-26 08:07:24 +00:00
document != null -> DocumentContent(
document,
caption,
adaptedCaptionEntities
)
voice != null -> VoiceContent(
voice,
caption,
adaptedCaptionEntities
)
photo != null -> PhotoContent(
photo.toList(),
caption,
adaptedCaptionEntities
)
sticker != null -> StickerContent(sticker)
2020-03-30 15:30:22 +00:00
dice != null -> DiceContent(dice)
2019-08-18 06:31:33 +00:00
game != null -> GameContent(game.asGame)
2018-12-26 08:07:24 +00:00
video_note != null -> VideoNoteContent(video_note)
contact != null -> ContactContent(contact)
location != null -> LocationContent(location)
venue != null -> VenueContent(venue)
2019-04-16 08:04:02 +00:00
poll != null -> PollContent(poll)
invoice != null -> InvoiceContent(invoice)
2018-12-26 08:07:24 +00:00
else -> null
}
}
private val forwarded: ForwardInfo? by lazy {
forward_date
?: return@lazy null // According to the documentation, now any forwarded message contains this field
2019-04-30 07:56:28 +00:00
when {
forward_sender_name != null -> ForwardInfo.ByAnonymous(
2019-04-30 04:53:56 +00:00
forward_date,
forward_sender_name
)
2022-08-04 16:13:02 +00:00
forward_from_chat is ChannelChat -> if (forward_from_message_id == null) {
ForwardInfo.PublicChat.SentByChannel(
2022-08-04 16:13:02 +00:00
forward_date,
forward_from_chat,
forward_signature
)
} else {
ForwardInfo.PublicChat.FromChannel(
2022-08-04 16:13:02 +00:00
forward_date,
forward_from_message_id,
forward_from_chat,
forward_signature
)
}
forward_from_chat is SupergroupChat -> ForwardInfo.PublicChat.FromSupergroup(
2020-10-02 08:59:10 +00:00
forward_date,
forward_from_chat
)
forward_from != null -> ForwardInfo.ByUser(
2018-12-26 08:07:24 +00:00
forward_date,
2019-04-30 07:56:28 +00:00
forward_from
2018-12-26 08:07:24 +00:00
)
2019-04-30 07:56:28 +00:00
else -> null
2018-12-26 08:07:24 +00:00
}
}
private val chatEvent: ChatEvent? by lazy {
when {
new_chat_members != null -> NewChatMembers(new_chat_members.toList())
left_chat_member != null -> LeftChatMember(left_chat_member)
new_chat_title != null -> NewChatTitle(new_chat_title)
new_chat_photo != null -> NewChatPhoto(new_chat_photo.toList())
video_chat_started != null -> video_chat_started
video_chat_scheduled != null -> video_chat_scheduled
message_auto_delete_timer_changed != null -> message_auto_delete_timer_changed
video_chat_ended != null -> video_chat_ended
video_chat_participants_invited != null -> video_chat_participants_invited
2018-12-26 08:07:24 +00:00
delete_chat_photo -> DeleteChatPhoto()
group_chat_created -> GroupChatCreated(
migrate_to_chat_id
)
supergroup_chat_created -> SupergroupChatCreated(
migrate_from_chat_id
)
migrate_from_chat_id != null -> MigratedToSupergroup(
migrate_from_chat_id
)
2018-12-26 08:07:24 +00:00
channel_chat_created -> ChannelChatCreated()
pinned_message != null -> PinnedMessage(pinned_message.asMessage)
2020-11-04 19:12:14 +00:00
proximity_alert_triggered != null -> proximity_alert_triggered
2021-10-03 05:43:15 +00:00
successful_payment != null -> SuccessfulPaymentEvent(successful_payment)
connected_website != null -> UserLoggedIn(connected_website)
2022-04-17 12:36:40 +00:00
web_app_data != null -> web_app_data
2018-12-26 08:07:24 +00:00
else -> null
}
}
val asMessage: Message by lazy {
try {
chatEvent?.let { chatEvent ->
when (chat) {
is SupergroupChat -> CommonSupergroupEventMessage(
2019-01-10 14:09:51 +00:00
messageId,
from ?: error("Supergroup events are expected to contain 'from' field"),
2019-01-10 14:09:51 +00:00
chat,
chatEvent as? SupergroupEvent ?: throwWrongChatEvent(SupergroupEvent::class, chatEvent),
date.asDate
)
is GroupChat -> CommonGroupEventMessage(
messageId,
from ?: error("Supergroup events are expected to contain 'from' field"),
chat,
chatEvent as? GroupEvent ?: throwWrongChatEvent(GroupChat::class, chatEvent),
date.asDate
)
is ChannelChat -> ChannelEventMessage(
messageId,
chat,
chatEvent as? ChannelEvent ?: throwWrongChatEvent(ChannelEvent::class, chatEvent),
date.asDate
)
2021-10-03 05:43:15 +00:00
is PrivateChat -> PrivateEventMessage(
messageId,
chat,
chatEvent as? PrivateEvent ?: throwWrongChatEvent(PrivateEvent::class, chatEvent),
date.asDate
)
else -> error("Expected one of the public chats, but was $chat (in extracting of chat event message)")
}
} ?: content?.let { content ->
media_group_id?.let {
2020-11-02 05:13:16 +00:00
val checkedContent = when (content) {
is PhotoContent -> content
is VideoContent -> content
is AudioContent -> content
is DocumentContent -> content
else -> error("Unsupported content for media group")
}
when (from) {
null -> ChannelMediaGroupMessage(
messageId,
chat,
date.asDate,
it,
2020-11-02 05:13:16 +00:00
checkedContent,
edit_date?.asDate,
has_protected_content == true,
forwarded,
reply_to_message?.asMessage,
reply_markup
)
else -> CommonMediaGroupMessage(
messageId,
from,
chat,
date.asDate,
it,
2020-11-02 05:13:16 +00:00
checkedContent,
edit_date?.asDate,
has_protected_content == true,
forwarded,
reply_to_message?.asMessage,
reply_markup
)
}
} ?: when (chat) {
is PublicChat -> when (chat) {
2021-12-20 08:07:45 +00:00
is ChannelChat -> ChannelContentMessageImpl(
messageId,
chat,
content,
date.asDate,
edit_date?.asDate,
has_protected_content == true,
2021-12-20 08:07:45 +00:00
forwarded,
reply_to_message?.asMessage,
reply_markup,
via_bot,
author_signature
)
is GroupChat -> when (sender_chat) {
2021-12-20 08:07:45 +00:00
is ChannelChat -> if (is_automatic_forward == true) {
ConnectedFromChannelGroupContentMessageImpl(
chat,
sender_chat,
messageId,
date.asDate,
forwarded,
edit_date ?.asDate,
has_protected_content == true,
2021-12-20 08:07:45 +00:00
reply_to_message ?.asMessage,
reply_markup,
content,
via_bot,
author_signature
)
} else {
UnconnectedFromChannelGroupContentMessageImpl(
chat,
sender_chat,
messageId,
date.asDate,
forwarded,
edit_date ?.asDate,
has_protected_content == true,
2021-12-20 08:07:45 +00:00
reply_to_message ?.asMessage,
reply_markup,
content,
via_bot,
author_signature
)
}
2021-02-07 10:54:48 +00:00
is GroupChat -> AnonymousGroupContentMessageImpl(
chat,
messageId,
date.asDate,
forwarded,
edit_date ?.asDate,
has_protected_content == true,
reply_to_message ?.asMessage,
reply_markup,
content,
via_bot,
author_signature
)
2021-02-07 10:54:48 +00:00
null -> CommonGroupContentMessageImpl(
chat,
messageId,
2020-11-12 15:46:33 +00:00
from ?: error("It is expected that in messages from non anonymous users and channels user must be specified"),
date.asDate,
forwarded,
edit_date ?.asDate,
has_protected_content == true,
reply_to_message ?.asMessage,
reply_markup,
content,
via_bot
)
else -> error("Currently in groups supported only fields \"sender_chat\" with channel, group or null, but was $sender_chat")
}
else -> error("Unknown type of public chat: $chat")
}
2021-02-07 10:54:48 +00:00
is PrivateChat -> PrivateContentMessageImpl(
2019-01-10 14:09:51 +00:00
messageId,
from ?: error("Was detected common message, but owner (sender) of the message was not found"),
2019-01-10 14:09:51 +00:00
chat,
content,
2019-01-10 14:09:51 +00:00
date.asDate,
edit_date?.asDate,
has_protected_content == true,
2019-02-17 06:29:17 +00:00
forwarded,
reply_to_message?.asMessage,
reply_markup,
2021-10-03 05:43:15 +00:00
via_bot
2019-01-10 14:09:51 +00:00
)
else -> error("Unknown type of chat: $chat")
2019-01-10 14:09:51 +00:00
}
2021-01-15 10:27:22 +00:00
} ?: passport_data ?.let{
PassportMessage(
messageId,
chat,
2021-01-17 09:35:25 +00:00
from ?: error("For passport must be provided user, but got null"),
2021-01-15 10:27:22 +00:00
date.asDate,
passport_data
)
} ?: error("Was not found supported type of data")
} catch (e: Exception) {
UnknownMessageType(
messageId,
chat,
date.asDate,
e
)
}
2018-12-26 08:07:24 +00:00
}
2021-10-03 05:43:15 +00:00
private fun throwWrongChatEvent(expected: KClass<*>, but: ChatEvent): Nothing {
error("Wrong type of chat event: expected $expected, but was $but")
2018-12-26 08:07:24 +00:00
}
}