mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2024-11-22 15:43:47 +00:00
66 lines
2.4 KiB
Kotlin
66 lines
2.4 KiB
Kotlin
package dev.inmo.plagubot
|
|
|
|
import dev.inmo.kslog.common.*
|
|
import dev.inmo.micro_utils.fsm.common.State
|
|
import dev.inmo.plagubot.HelloPlugin.setupBotPlugin
|
|
import dev.inmo.tgbotapi.extensions.api.bot.getMe
|
|
import dev.inmo.tgbotapi.extensions.api.send.reply
|
|
import dev.inmo.tgbotapi.extensions.api.send.sendMessage
|
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.*
|
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.expectations.waitText
|
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.expectations.waitTextMessage
|
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.triggers_handling.onCommand
|
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.triggers_handling.onUnhandledCommand
|
|
import dev.inmo.tgbotapi.types.ChatId
|
|
import kotlinx.coroutines.flow.first
|
|
import kotlinx.serialization.SerialName
|
|
import kotlinx.serialization.Serializable
|
|
import kotlinx.serialization.json.Json
|
|
import kotlinx.serialization.json.JsonObject
|
|
import org.jetbrains.exposed.sql.Database
|
|
import org.koin.core.Koin
|
|
import org.koin.core.module.Module
|
|
|
|
@Serializable
|
|
@SerialName("Hello")
|
|
object HelloPlugin : Plugin {
|
|
@Serializable
|
|
data class HelloPluginConfig(
|
|
val print: String
|
|
)
|
|
|
|
override fun Module.setupDI(database: Database, params: JsonObject) {
|
|
single {
|
|
get<Json>().decodeFromJsonElement(HelloPluginConfig.serializer(), params["helloPlugin"] ?: return@single null)
|
|
|
|
|
|
}
|
|
}
|
|
|
|
private sealed interface InternalFSMState : State {
|
|
override val context: ChatId
|
|
data class DidntSaidHello(override val context: ChatId) : InternalFSMState
|
|
data class SaidHelloOnce(override val context: ChatId) : InternalFSMState
|
|
}
|
|
|
|
override suspend fun BehaviourContextWithFSM<State>.setupBotPlugin(koin: Koin) {
|
|
val toPrint = koin.getOrNull<HelloPluginConfig>() ?.print ?: "Hello :)"
|
|
logger.d { toPrint }
|
|
logger.dS { getMe().toString() }
|
|
onCommand("hello_world") {
|
|
startChain(InternalFSMState.DidntSaidHello(it.chat.id))
|
|
}
|
|
|
|
strictlyOn { state: InternalFSMState.DidntSaidHello ->
|
|
sendMessage(state.context, toPrint)
|
|
InternalFSMState.SaidHelloOnce(state.context)
|
|
}
|
|
|
|
strictlyOn { state: InternalFSMState.SaidHelloOnce ->
|
|
val message = waitTextMessage().first()
|
|
reply(message, "Sorry, I can answer only this: $toPrint")
|
|
InternalFSMState.SaidHelloOnce(state.context)
|
|
}
|
|
}
|
|
}
|