mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2024-12-02 12:20:05 +00:00
Compare commits
No commits in common. "5ec1c8c55faa26b01d06e852e84c61edec05085f" and "1b5361eb283e551f13c7c21a8817410f9c4bd7c2" have entirely different histories.
5ec1c8c55f
...
1b5361eb28
2
.gitignore
vendored
2
.gitignore
vendored
@ -10,7 +10,5 @@ build/
|
||||
out/
|
||||
|
||||
local.properties
|
||||
local.*
|
||||
local.*/
|
||||
config.json
|
||||
secret.gradle
|
||||
|
@ -1,14 +1,5 @@
|
||||
# Changelog
|
||||
|
||||
## 1.1.1
|
||||
|
||||
* `Versions`
|
||||
* `coroutines`: `1.6.2`
|
||||
* `tgbotapi`: `2.0.2`
|
||||
* `microutils`: `0.11.0`
|
||||
* `ktor`: `2.0.2`
|
||||
* `uuid`: `0.4.1`
|
||||
|
||||
## 1.1.0
|
||||
|
||||
* `Versions`
|
||||
|
@ -17,7 +17,6 @@ dependencies {
|
||||
|
||||
api libs.tgbotapi
|
||||
api libs.microutils.repos.exposed
|
||||
api libs.kslog
|
||||
|
||||
api libs.sqlite
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
package dev.inmo.plagubot
|
||||
|
||||
import dev.inmo.kslog.common.*
|
||||
import dev.inmo.plagubot.config.*
|
||||
import kotlinx.coroutines.*
|
||||
import kotlinx.serialization.InternalSerializationApi
|
||||
import kotlinx.serialization.json.jsonObject
|
||||
import java.io.File
|
||||
@ -11,13 +11,10 @@ import java.io.File
|
||||
*/
|
||||
@InternalSerializationApi
|
||||
suspend fun main(args: Array<String>) {
|
||||
KSLog.default = KSLog("PlaguBot")
|
||||
val (configPath) = args
|
||||
val file = File(configPath)
|
||||
KSLog.i("Start read config from ${file.absolutePath}")
|
||||
val json = defaultJsonFormat.parseToJsonElement(file.readText()).jsonObject
|
||||
val config = defaultJsonFormat.decodeFromJsonElement(Config.serializer(), json)
|
||||
KSLog.i("Config has been read")
|
||||
|
||||
PlaguBot(json, config).start().join()
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
package dev.inmo.plagubot
|
||||
|
||||
import dev.inmo.kslog.common.*
|
||||
import dev.inmo.tgbotapi.extensions.api.bot.getMe
|
||||
import dev.inmo.tgbotapi.extensions.api.send.reply
|
||||
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContext
|
||||
@ -31,8 +30,8 @@ class HelloPlugin : Plugin {
|
||||
}
|
||||
|
||||
override suspend fun BehaviourContext.setupBotPlugin(koin: Koin) {
|
||||
logger.d { koin.get<HelloPluginConfig>().print }
|
||||
logger.dS { getMe().toString() }
|
||||
println(koin.get<HelloPluginConfig>().print)
|
||||
println(getMe())
|
||||
onCommand("hello_world") {
|
||||
reply(it, "Hello :)")
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
package dev.inmo.plagubot
|
||||
|
||||
import dev.inmo.kslog.common.*
|
||||
import dev.inmo.micro_utils.coroutines.runCatchingSafely
|
||||
import dev.inmo.plagubot.config.*
|
||||
import dev.inmo.tgbotapi.bot.ktor.telegramBot
|
||||
@ -29,6 +28,8 @@ data class PlaguBot(
|
||||
private val json: JsonObject,
|
||||
private val config: Config
|
||||
) : Plugin {
|
||||
@Transient
|
||||
private val logger = Logger.getLogger("PlaguBot")
|
||||
@Transient
|
||||
private val bot = telegramBot(config.botToken)
|
||||
|
||||
@ -49,7 +50,7 @@ data class PlaguBot(
|
||||
}
|
||||
}
|
||||
}.onFailure { e ->
|
||||
logger.w("Unable to load DI part of $it", e)
|
||||
logger.log(Level.WARNING, "Unable to load DI part of $it", e)
|
||||
}.getOrNull()
|
||||
}
|
||||
)
|
||||
@ -59,14 +60,14 @@ data class PlaguBot(
|
||||
config.plugins.map {
|
||||
launch {
|
||||
runCatchingSafely {
|
||||
logger.i("Start loading of $it")
|
||||
logger.info("Start loading of $it")
|
||||
with(it) {
|
||||
setupBotPlugin(koin)
|
||||
}
|
||||
}.onFailure { e ->
|
||||
logger.w("Unable to load bot part of $it", e)
|
||||
logger.log(Level.WARNING, "Unable to load bot part of $it", e)
|
||||
}.onSuccess {
|
||||
logger.i("Complete loading of $it")
|
||||
logger.info("Complete loading of $it")
|
||||
}
|
||||
}
|
||||
}.joinAll()
|
||||
@ -78,26 +79,26 @@ data class PlaguBot(
|
||||
suspend fun start(
|
||||
scope: CoroutineScope = CoroutineScope(Dispatchers.IO)
|
||||
): Job {
|
||||
logger.i("Start initialization")
|
||||
logger.info("Start initialization")
|
||||
val koinApp = KoinApplication.init()
|
||||
koinApp.modules(
|
||||
module {
|
||||
setupDI(config.databaseConfig.database, json)
|
||||
}
|
||||
)
|
||||
logger.i("Modules loaded")
|
||||
logger.info("Modules loaded")
|
||||
GlobalContext.startKoin(koinApp)
|
||||
logger.i("Koin started")
|
||||
logger.info("Koin started")
|
||||
lateinit var behaviourContext: BehaviourContext
|
||||
bot.buildBehaviour(scope = scope) {
|
||||
logger.i("Start setup of bot part")
|
||||
logger.info("Start setup of bot part")
|
||||
behaviourContext = this
|
||||
setupBotPlugin(koinApp.koin)
|
||||
deleteWebhook()
|
||||
}
|
||||
logger.i("Behaviour builder has been setup")
|
||||
logger.info("Behaviour builder has been setup")
|
||||
return bot.startGettingOfUpdatesByLongPolling(scope = behaviourContext, updatesFilter = behaviourContext).also {
|
||||
logger.i("Long polling has been started")
|
||||
logger.info("Long polling has been started")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -5,4 +5,4 @@ kotlin.js.generate.externals=true
|
||||
kotlin.incremental=true
|
||||
|
||||
group=dev.inmo
|
||||
version=1.1.1
|
||||
version=1.1.0
|
||||
|
@ -2,11 +2,10 @@
|
||||
|
||||
kt = "1.6.21"
|
||||
kt-serialization = "1.3.3"
|
||||
kt-coroutines = "1.6.2"
|
||||
kt-coroutines = "1.6.1"
|
||||
|
||||
microutils = "0.11.0"
|
||||
tgbotapi = "2.0.2"
|
||||
kslog = "0.3.0"
|
||||
microutils = "0.10.5"
|
||||
tgbotapi = "2.0.0"
|
||||
|
||||
jb-exposed = "0.38.2"
|
||||
jb-dokka = "1.6.21"
|
||||
@ -14,9 +13,9 @@ jb-dokka = "1.6.21"
|
||||
sqlite = "3.36.0.3"
|
||||
|
||||
klock = "2.7.0"
|
||||
uuid = "0.4.1"
|
||||
uuid = "0.4.0"
|
||||
|
||||
ktor = "2.0.2"
|
||||
ktor = "2.0.1"
|
||||
|
||||
gh-release = "2.3.7"
|
||||
|
||||
@ -33,7 +32,6 @@ kt-serialization = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json"
|
||||
|
||||
tgbotapi = { module = "dev.inmo:tgbotapi", version.ref = "tgbotapi" }
|
||||
microutils-repos-exposed = { module = "dev.inmo:micro_utils.repos.exposed", version.ref = "microutils" }
|
||||
kslog = { module = "dev.inmo:kslog", version.ref = "kslog" }
|
||||
|
||||
koin = { module = "io.insert-koin:koin-core", version.ref = "koin" }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user