mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-22 16:23:48 +00:00
Update BotCommandTextSource.kt
This commit is contained in:
parent
bd91d4a0c0
commit
ac7bf60182
@ -13,14 +13,14 @@ private val commandRegex = Regex("[/!][^@\\s]*")
|
|||||||
* @see botCommand
|
* @see botCommand
|
||||||
*/
|
*/
|
||||||
@Serializable
|
@Serializable
|
||||||
data class BotCommandTextSource @RiskFeature(DirectInvocationOfTextSourceConstructor) constructor(
|
data class BotCommandTextSource @RiskFeature(DirectInvocationOfTextSourceConstructor) constructor (
|
||||||
override val source: String
|
override val source: String
|
||||||
) : TextSource {
|
) : TextSource {
|
||||||
val command: String by lazy {
|
val command: String by lazy {
|
||||||
commandRegex.find(source)?.value?.substring(1) ?: source.substring(1)// skip first symbol like "/" or "!"
|
commandRegex.find(source) ?.value ?.substring(1) ?: source.substring(1)// skip first symbol like "/" or "!"
|
||||||
}
|
}
|
||||||
val username: Username? by lazy {
|
val username: Username? by lazy {
|
||||||
Username(usernameRegex.find(source)?.value ?: return@lazy null)
|
Username(usernameRegex.find(source) ?.value ?: return@lazy null)
|
||||||
}
|
}
|
||||||
|
|
||||||
override val markdown: String by lazy { source.commandMarkdown() }
|
override val markdown: String by lazy { source.commandMarkdown() }
|
||||||
|
Loading…
Reference in New Issue
Block a user