1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-01 23:45:25 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/BotCommand.kt

31 lines
1.0 KiB
Kotlin

package dev.inmo.tgbotapi.types
import dev.inmo.tgbotapi.utils.throwRangeError
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
// Made as lazy for correct work in K/JS
val BotCommandNameRegex by lazy {
Regex("^[a-z_0-9]{${botCommandLengthLimit.first},${botCommandLengthLimit.last}}$")
}
@Serializable
data class BotCommand(
@SerialName(botCommandField)
val command: String,
@SerialName(descriptionField)
val description: String
) {
init {
if (command.length !in botCommandLengthLimit) {
throwRangeError("Command name size", botCommandLengthLimit, command.length)
}
if (!command.matches(BotCommandNameRegex)) {
error("Bot command must contains only lowercase English letters, digits and underscores, but incoming command was $command")
}
if (description.length !in botCommandDescriptionLimit) {
throwRangeError("Command description size", botCommandDescriptionLimit, description.length)
}
}
}