mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-24 02:58:43 +00:00
improvements in RawMessageEntity
This commit is contained in:
parent
bc8da1120e
commit
1f6ddd97e3
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## 18.2.2
|
## 18.2.2
|
||||||
|
|
||||||
|
* `Core`:
|
||||||
|
* Fixes in blockquotes serializations
|
||||||
|
* Now `RawMessageEntity` is public. It is still under `Warning` annotation and is subject of changes
|
||||||
* `BehaviourBuilder`:
|
* `BehaviourBuilder`:
|
||||||
* Add `CommonMessageFilterExcludeCommand` to filter commands in messages
|
* Add `CommonMessageFilterExcludeCommand` to filter commands in messages
|
||||||
* Add `minus` operation for `SimpleFilter`s
|
* Add `minus` operation for `SimpleFilter`s
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package dev.inmo.tgbotapi.types.message
|
package dev.inmo.tgbotapi.types.message
|
||||||
|
|
||||||
|
import dev.inmo.micro_utils.common.Warning
|
||||||
import dev.inmo.micro_utils.serialization.mapper.MapperSerializer
|
import dev.inmo.micro_utils.serialization.mapper.MapperSerializer
|
||||||
import dev.inmo.tgbotapi.types.CustomEmojiId
|
import dev.inmo.tgbotapi.types.CustomEmojiId
|
||||||
import dev.inmo.tgbotapi.types.chat.User
|
import dev.inmo.tgbotapi.types.chat.User
|
||||||
@ -9,7 +10,8 @@ import kotlinx.serialization.Serializable
|
|||||||
import kotlinx.serialization.builtins.ListSerializer
|
import kotlinx.serialization.builtins.ListSerializer
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
internal data class RawMessageEntity(
|
@Warning("This thing is subject of changes. Library do not guarantee stability of this class")
|
||||||
|
data class RawMessageEntity(
|
||||||
val type: String,
|
val type: String,
|
||||||
val offset: Int,
|
val offset: Int,
|
||||||
val length: Int,
|
val length: Int,
|
||||||
@ -49,7 +51,8 @@ internal data class RawMessageEntity(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal fun RawMessageEntity.asTextSource(
|
@Warning("This thing is subject of changes. Library do not guarantee stability of this extension")
|
||||||
|
fun RawMessageEntity.asTextSource(
|
||||||
source: String,
|
source: String,
|
||||||
subParts: List<Pair<Int, TextSource>>
|
subParts: List<Pair<Int, TextSource>>
|
||||||
): TextSource {
|
): TextSource {
|
||||||
@ -92,6 +95,7 @@ private inline operator fun <T : Comparable<T>> ClosedRange<T>.contains(other: C
|
|||||||
return start <= other.start && endInclusive >= other.endInclusive
|
return start <= other.start && endInclusive >= other.endInclusive
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Warning("This thing is subject of changes. Library do not guarantee stability of this extension")
|
||||||
internal fun List<Pair<Int, TextSource>>.fillWithRegulars(source: String): TextSourcesList {
|
internal fun List<Pair<Int, TextSource>>.fillWithRegulars(source: String): TextSourcesList {
|
||||||
var index = 0
|
var index = 0
|
||||||
val result = mutableListOf<TextSource>()
|
val result = mutableListOf<TextSource>()
|
||||||
@ -174,7 +178,8 @@ private fun createTextSources(
|
|||||||
return resultList
|
return resultList
|
||||||
}
|
}
|
||||||
|
|
||||||
internal fun TextSource.toRawMessageEntities(offset: Int = 0): List<RawMessageEntity> {
|
@Warning("This thing is subject of changes. Library do not guarantee stability of this extension")
|
||||||
|
fun TextSource.toRawMessageEntities(offset: Int = 0): List<RawMessageEntity> {
|
||||||
val source = source
|
val source = source
|
||||||
val length = source.length
|
val length = source.length
|
||||||
return listOfNotNull(
|
return listOfNotNull(
|
||||||
@ -208,7 +213,8 @@ internal fun TextSource.toRawMessageEntities(offset: Int = 0): List<RawMessageEn
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
internal fun TextSourcesList.toRawMessageEntities(preOffset: Int = 0): List<RawMessageEntity> {
|
@Warning("This thing is subject of changes. Library do not guarantee stability of this extension")
|
||||||
|
fun TextSourcesList.toRawMessageEntities(preOffset: Int = 0): List<RawMessageEntity> {
|
||||||
var i = preOffset
|
var i = preOffset
|
||||||
return flatMap { textSource ->
|
return flatMap { textSource ->
|
||||||
textSource.toRawMessageEntities(i).also {
|
textSource.toRawMessageEntities(i).also {
|
||||||
@ -217,9 +223,12 @@ internal fun TextSourcesList.toRawMessageEntities(preOffset: Int = 0): List<RawM
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal fun TextSourcesList.toRawMessageEntities(): List<RawMessageEntity> = toRawMessageEntities(0)
|
@Warning("This thing is subject of changes. Library do not guarantee stability of this extension")
|
||||||
|
fun TextSourcesList.toRawMessageEntities(): List<RawMessageEntity> = toRawMessageEntities(0)
|
||||||
|
|
||||||
internal fun RawMessageEntities.asTextSources(sourceString: String): TextSourcesList =
|
@Warning("This thing is subject of changes. Library do not guarantee stability of this extension")
|
||||||
|
fun RawMessageEntities.asTextSources(sourceString: String): TextSourcesList =
|
||||||
createTextSources(sourceString, this).fillWithRegulars(sourceString)
|
createTextSources(sourceString, this).fillWithRegulars(sourceString)
|
||||||
|
|
||||||
internal typealias RawMessageEntities = List<RawMessageEntity>
|
@Warning("This thing is subject of changes. Library do not guarantee stability of this typealias")
|
||||||
|
typealias RawMessageEntities = List<RawMessageEntity>
|
||||||
|
@ -7,27 +7,6 @@ import kotlinx.serialization.encoding.CompositeEncoder
|
|||||||
import kotlinx.serialization.encoding.Decoder
|
import kotlinx.serialization.encoding.Decoder
|
||||||
import kotlinx.serialization.encoding.Encoder
|
import kotlinx.serialization.encoding.Encoder
|
||||||
|
|
||||||
//private val baseSerializers: Map<String, KSerializer<out TextSource>> = mapOf(
|
|
||||||
// "regular" to RegularTextSource.serializer(),
|
|
||||||
// "text_link" to TextLinkTextSource.serializer(),
|
|
||||||
// "code" to CodeTextSource.serializer(),
|
|
||||||
// "url" to URLTextSource.serializer(),
|
|
||||||
// "pre" to PreTextSource.serializer(),
|
|
||||||
// "bot_command" to BotCommandTextSource.serializer(),
|
|
||||||
// "strikethrough" to StrikethroughTextSource.serializer(),
|
|
||||||
// "italic" to ItalicTextSource.serializer(),
|
|
||||||
// "bold" to BoldTextSource.serializer(),
|
|
||||||
// "email" to EMailTextSource.serializer(),
|
|
||||||
// "underline" to UnderlineTextSource.serializer(),
|
|
||||||
// "mention" to MentionTextSource.serializer(),
|
|
||||||
// "phone_number" to PhoneNumberTextSource.serializer(),
|
|
||||||
// "text_mention" to TextMentionTextSource.serializer(),
|
|
||||||
// "hashtag" to HashTagTextSource.serializer(),
|
|
||||||
// "cashtag" to CashTagTextSource.serializer(),
|
|
||||||
// "spoiler" to SpoilerTextSource.serializer(),
|
|
||||||
// "custom_emoji" to CustomEmojiTextSource.serializer(),
|
|
||||||
//)
|
|
||||||
|
|
||||||
object TextSourceSerializer : TypedSerializer<TextSource>(TextSource::class, emptyMap()) {
|
object TextSourceSerializer : TypedSerializer<TextSource>(TextSource::class, emptyMap()) {
|
||||||
private val baseSerializers: Map<String, KSerializer<out TextSource>> by lazy {
|
private val baseSerializers: Map<String, KSerializer<out TextSource>> by lazy {
|
||||||
mapOf(
|
mapOf(
|
||||||
@ -49,6 +28,8 @@ object TextSourceSerializer : TypedSerializer<TextSource>(TextSource::class, emp
|
|||||||
"cashtag" to CashTagTextSource.serializer(),
|
"cashtag" to CashTagTextSource.serializer(),
|
||||||
"spoiler" to SpoilerTextSource.serializer(),
|
"spoiler" to SpoilerTextSource.serializer(),
|
||||||
"custom_emoji" to CustomEmojiTextSource.serializer(),
|
"custom_emoji" to CustomEmojiTextSource.serializer(),
|
||||||
|
"blockquote" to BlockquoteTextSource.serializer(),
|
||||||
|
"expandable_blockquote" to ExpandableBlockquoteTextSource.serializer(),
|
||||||
).also {
|
).also {
|
||||||
it.forEach { (k, s) ->
|
it.forEach { (k, s) ->
|
||||||
include(k, s)
|
include(k, s)
|
||||||
|
Loading…
Reference in New Issue
Block a user