mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2025-12-31 10:29:16 +00:00
Compare commits
7 Commits
7.4.2
...
36608937af
| Author | SHA1 | Date | |
|---|---|---|---|
| 36608937af | |||
| 1b1b069d93 | |||
| 37b5b8e867 | |||
| 468310c819 | |||
| 0d27a4f6f7 | |||
| f9d131866f | |||
| 451b2bbc39 |
11
CHANGELOG.md
11
CHANGELOG.md
@@ -1,5 +1,16 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 8.1.0
|
||||||
|
|
||||||
|
* Integrate `dev.inmo:micro_utils.startup` into project
|
||||||
|
|
||||||
|
## 8.0.0
|
||||||
|
|
||||||
|
* `Versions`:
|
||||||
|
* `tgbotapi`: `1.0.0`
|
||||||
|
* `MicroUtils`: `0.20.26`
|
||||||
|
* `Exposed`: `0.46.0`
|
||||||
|
|
||||||
## 7.4.2
|
## 7.4.2
|
||||||
|
|
||||||
* `Versions`:
|
* `Versions`:
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ dependencies {
|
|||||||
api libs.tgbotapi.behaviourBuilder.fsm
|
api libs.tgbotapi.behaviourBuilder.fsm
|
||||||
api libs.microutils.repos.exposed
|
api libs.microutils.repos.exposed
|
||||||
api libs.microutils.koin
|
api libs.microutils.koin
|
||||||
|
api libs.microutils.startup.launcher
|
||||||
|
|
||||||
api libs.sqlite
|
api libs.sqlite
|
||||||
|
|
||||||
|
|||||||
@@ -32,8 +32,6 @@ object HelloPlugin : Plugin {
|
|||||||
override fun Module.setupDI(database: Database, params: JsonObject) {
|
override fun Module.setupDI(database: Database, params: JsonObject) {
|
||||||
single {
|
single {
|
||||||
get<Json>().decodeFromJsonElement(HelloPluginConfig.serializer(), params["helloPlugin"] ?: return@single null)
|
get<Json>().decodeFromJsonElement(HelloPluginConfig.serializer(), params["helloPlugin"] ?: return@single null)
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -43,6 +41,11 @@ object HelloPlugin : Plugin {
|
|||||||
data class SaidHelloOnce(override val context: IdChatIdentifier) : InternalFSMState
|
data class SaidHelloOnce(override val context: IdChatIdentifier) : InternalFSMState
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override suspend fun startPlugin(koin: Koin) {
|
||||||
|
super.startPlugin(koin)
|
||||||
|
logger.i { "This logic called BEFORE the bot will be started and setup" }
|
||||||
|
}
|
||||||
|
|
||||||
override suspend fun BehaviourContextWithFSM<State>.setupBotPlugin(koin: Koin) {
|
override suspend fun BehaviourContextWithFSM<State>.setupBotPlugin(koin: Koin) {
|
||||||
val toPrint = koin.getOrNull<HelloPluginConfig>() ?.print ?: "Hello :)"
|
val toPrint = koin.getOrNull<HelloPluginConfig>() ?.print ?: "Hello :)"
|
||||||
logger.d { toPrint }
|
logger.d { toPrint }
|
||||||
|
|||||||
@@ -46,24 +46,28 @@ data class PlaguBot(
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun KtorRequestsExecutorBuilder.setupBotClient() {
|
override fun KtorRequestsExecutorBuilder.setupBotClient() {
|
||||||
config.plugins.forEach {
|
config.botPlugins.forEach {
|
||||||
with(it) {
|
with(it) {
|
||||||
setupBotClient()
|
setupBotClient()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun Module.setupDI(database: Database, params: JsonObject) {
|
override fun Module.setupDI(config: JsonObject) {
|
||||||
single { config }
|
single { this@PlaguBot.config }
|
||||||
single { config.plugins }
|
single { this@PlaguBot.config.plugins }
|
||||||
single { config.databaseConfig }
|
single { this@PlaguBot.config.databaseConfig }
|
||||||
single { config.databaseConfig.database }
|
single { this@PlaguBot.config.databaseConfig.database }
|
||||||
single { defaultJsonFormat }
|
single { defaultJsonFormat }
|
||||||
single { this@PlaguBot }
|
single { this@PlaguBot }
|
||||||
single { bot }
|
single { bot }
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun Module.setupDI(database: Database, params: JsonObject) {
|
||||||
|
setupDI(params)
|
||||||
|
|
||||||
includes(
|
includes(
|
||||||
config.plugins.mapNotNull {
|
config.botPlugins.mapNotNull {
|
||||||
runCatching {
|
runCatching {
|
||||||
module {
|
module {
|
||||||
with(it) {
|
with(it) {
|
||||||
@@ -71,14 +75,31 @@ data class PlaguBot(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}.onFailure { e ->
|
}.onFailure { e ->
|
||||||
logger.w("Unable to load DI part of $it", e)
|
logger.w(e) { "Unable to load DI part of $it" }
|
||||||
}.getOrNull()
|
}.getOrNull()
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun BehaviourContextWithFSM<State>.setupBotPlugin(koin: Koin) {
|
override suspend fun startPlugin(koin: Koin) {
|
||||||
|
super.startPlugin(koin)
|
||||||
|
|
||||||
config.plugins.forEach { plugin ->
|
config.plugins.forEach { plugin ->
|
||||||
|
runCatchingSafely {
|
||||||
|
logger.i { "Starting of $plugin common logic" }
|
||||||
|
with(plugin) {
|
||||||
|
startPlugin(koin)
|
||||||
|
}
|
||||||
|
}.onFailure { e ->
|
||||||
|
logger.w(e) { "Unable to load common logic of $plugin" }
|
||||||
|
}.onSuccess {
|
||||||
|
logger.i { "Complete loading of $plugin common logic" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun BehaviourContextWithFSM<State>.setupBotPlugin(koin: Koin) {
|
||||||
|
config.botPlugins.forEach { plugin ->
|
||||||
runCatchingSafely {
|
runCatchingSafely {
|
||||||
logger.i("Start loading of $plugin")
|
logger.i("Start loading of $plugin")
|
||||||
with(plugin) {
|
with(plugin) {
|
||||||
@@ -105,9 +126,11 @@ data class PlaguBot(
|
|||||||
setupDI(config.databaseConfig.database, json)
|
setupDI(config.databaseConfig.database, json)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
logger.i("Modules loaded")
|
logger.i("Modules loaded. Starting koin")
|
||||||
GlobalContext.startKoin(koinApp)
|
GlobalContext.startKoin(koinApp)
|
||||||
logger.i("Koin started")
|
logger.i("Koin started. Starting plugins common logic")
|
||||||
|
startPlugin(koinApp.koin)
|
||||||
|
logger.i("Plugins common logic started. Starting setup of bot logic part")
|
||||||
lateinit var behaviourContext: BehaviourContext
|
lateinit var behaviourContext: BehaviourContext
|
||||||
val onStartContextsConflictResolver by lazy { koinApp.koin.getAllDistinct<OnStartContextsConflictResolver>() }
|
val onStartContextsConflictResolver by lazy { koinApp.koin.getAllDistinct<OnStartContextsConflictResolver>() }
|
||||||
val onUpdateContextsConflictResolver by lazy { koinApp.koin.getAllDistinct<OnUpdateContextsConflictResolver>() }
|
val onUpdateContextsConflictResolver by lazy { koinApp.koin.getAllDistinct<OnUpdateContextsConflictResolver>() }
|
||||||
|
|||||||
@@ -1,17 +1,20 @@
|
|||||||
package dev.inmo.plagubot.config
|
package dev.inmo.plagubot.config
|
||||||
|
|
||||||
import dev.inmo.micro_utils.common.Warning
|
import dev.inmo.micro_utils.common.Warning
|
||||||
|
import dev.inmo.micro_utils.startup.plugin.StartPlugin
|
||||||
import dev.inmo.plagubot.Plugin
|
import dev.inmo.plagubot.Plugin
|
||||||
import dev.inmo.tgbotapi.utils.telegramBotAPIDefaultUrl
|
import dev.inmo.tgbotapi.utils.telegramBotAPIDefaultUrl
|
||||||
import kotlinx.serialization.SerialName
|
import kotlinx.serialization.SerialName
|
||||||
import kotlinx.serialization.Serializable
|
import kotlinx.serialization.Serializable
|
||||||
|
|
||||||
@Warning("This API is internal and can be changed without notifications of mentions of changes")
|
@Warning("This API is internal and can be changed without notifications or mentions of changes")
|
||||||
@Serializable
|
@Serializable
|
||||||
data class Config(
|
data class Config(
|
||||||
val botToken: String,
|
val botToken: String,
|
||||||
val plugins: List<Plugin>,
|
val plugins: List<StartPlugin>,
|
||||||
@SerialName("database")
|
@SerialName("database")
|
||||||
val databaseConfig: DatabaseConfig = DatabaseConfig(),
|
val databaseConfig: DatabaseConfig = DatabaseConfig(),
|
||||||
val botApiServer: String = telegramBotAPIDefaultUrl
|
val botApiServer: String = telegramBotAPIDefaultUrl
|
||||||
)
|
) {
|
||||||
|
val botPlugins = plugins.filterIsInstance<Plugin>()
|
||||||
|
}
|
||||||
|
|||||||
@@ -5,4 +5,4 @@ kotlin.js.generate.externals=true
|
|||||||
kotlin.incremental=true
|
kotlin.incremental=true
|
||||||
|
|
||||||
group=dev.inmo
|
group=dev.inmo
|
||||||
version=7.4.2
|
version=8.1.0
|
||||||
|
|||||||
@@ -4,21 +4,16 @@ kt = "1.9.22"
|
|||||||
kt-serialization = "1.6.2"
|
kt-serialization = "1.6.2"
|
||||||
kt-coroutines = "1.7.3"
|
kt-coroutines = "1.7.3"
|
||||||
|
|
||||||
microutils = "0.20.23"
|
microutils = "0.20.26"
|
||||||
tgbotapi = "9.4.3"
|
tgbotapi = "10.0.0"
|
||||||
|
|
||||||
ksp = "1.9.21-1.0.16"
|
ksp = "1.9.22-1.0.16"
|
||||||
|
|
||||||
jb-exposed = "0.45.0"
|
jb-exposed = "0.46.0"
|
||||||
jb-dokka = "1.9.10"
|
jb-dokka = "1.9.10"
|
||||||
|
|
||||||
sqlite = "3.44.1.0"
|
sqlite = "3.44.1.0"
|
||||||
|
|
||||||
klock = "4.0.10"
|
|
||||||
uuid = "0.8.2"
|
|
||||||
|
|
||||||
ktor = "2.3.7"
|
|
||||||
|
|
||||||
gh-release = "2.4.1"
|
gh-release = "2.4.1"
|
||||||
|
|
||||||
koin = "3.5.3"
|
koin = "3.5.3"
|
||||||
@@ -35,6 +30,8 @@ tgbotapi-behaviourBuilder-fsm = { module = "dev.inmo:tgbotapi.behaviour_builder.
|
|||||||
microutils-repos-exposed = { module = "dev.inmo:micro_utils.repos.exposed", version.ref = "microutils" }
|
microutils-repos-exposed = { module = "dev.inmo:micro_utils.repos.exposed", version.ref = "microutils" }
|
||||||
microutils-koin = { module = "dev.inmo:micro_utils.koin", version.ref = "microutils" }
|
microutils-koin = { module = "dev.inmo:micro_utils.koin", version.ref = "microutils" }
|
||||||
microutils-koin-generator = { module = "dev.inmo:micro_utils.koin.generator", version.ref = "microutils" }
|
microutils-koin-generator = { module = "dev.inmo:micro_utils.koin.generator", version.ref = "microutils" }
|
||||||
|
microutils-startup-launcher = { module = "dev.inmo:micro_utils.startup.launcher", version.ref = "microutils" }
|
||||||
|
microutils-startup-plugin = { module = "dev.inmo:micro_utils.startup.plugin", version.ref = "microutils" }
|
||||||
|
|
||||||
koin = { module = "io.insert-koin:koin-core", version.ref = "koin" }
|
koin = { module = "io.insert-koin:koin-core", version.ref = "koin" }
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ dependencies {
|
|||||||
|
|
||||||
api libs.tgbotapi
|
api libs.tgbotapi
|
||||||
api libs.microutils.repos.exposed
|
api libs.microutils.repos.exposed
|
||||||
|
api libs.microutils.startup.plugin
|
||||||
|
|
||||||
api libs.koin
|
api libs.koin
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package dev.inmo.plagubot
|
package dev.inmo.plagubot
|
||||||
|
|
||||||
import dev.inmo.micro_utils.fsm.common.State
|
import dev.inmo.micro_utils.fsm.common.State
|
||||||
|
import dev.inmo.micro_utils.startup.plugin.StartPlugin
|
||||||
import dev.inmo.tgbotapi.bot.ktor.KtorRequestsExecutorBuilder
|
import dev.inmo.tgbotapi.bot.ktor.KtorRequestsExecutorBuilder
|
||||||
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContext
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContext
|
||||||
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContextWithFSM
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContextWithFSM
|
||||||
@@ -18,7 +19,7 @@ import org.koin.core.module.Module
|
|||||||
* too.
|
* too.
|
||||||
*/
|
*/
|
||||||
@Serializable(PluginSerializer::class)
|
@Serializable(PluginSerializer::class)
|
||||||
interface Plugin {
|
interface Plugin : StartPlugin {
|
||||||
fun KtorRequestsExecutorBuilder.setupBotClient() {}
|
fun KtorRequestsExecutorBuilder.setupBotClient() {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -27,7 +28,9 @@ interface Plugin {
|
|||||||
fun Module.setupDI(
|
fun Module.setupDI(
|
||||||
database: Database,
|
database: Database,
|
||||||
params: JsonObject
|
params: JsonObject
|
||||||
) {}
|
) {
|
||||||
|
setupDI(params)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Override this method in cases when you want to declare common bot behaviour. In case you wish to use FSM, you
|
* Override this method in cases when you want to declare common bot behaviour. In case you wish to use FSM, you
|
||||||
|
|||||||
Reference in New Issue
Block a user