mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2025-12-20 21:26:17 +00:00
Compare commits
14 Commits
v1.2.3
...
db06bc4277
| Author | SHA1 | Date | |
|---|---|---|---|
| db06bc4277 | |||
| 1cd9e6132c | |||
| 394ac02389 | |||
| e2294965ff | |||
| 3912ce2ba4 | |||
| 18de209fac | |||
| d6770e1c02 | |||
| 8aaaa86dd4 | |||
| 6b2b0b07f5 | |||
| bb1856de90 | |||
| 41885b8f7b | |||
| a0f9e31b04 | |||
| a7937f297d | |||
| e0ebbfa7ec |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -10,7 +10,5 @@ build/
|
|||||||
out/
|
out/
|
||||||
|
|
||||||
local.properties
|
local.properties
|
||||||
local.*
|
|
||||||
local.*/
|
|
||||||
config.json
|
config.json
|
||||||
secret.gradle
|
secret.gradle
|
||||||
|
|||||||
43
CHANGELOG.md
43
CHANGELOG.md
@@ -1,48 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.2.2
|
|
||||||
|
|
||||||
* `Versions`
|
|
||||||
* `tgbotapi`: `2.1.3`
|
|
||||||
|
|
||||||
## 1.2.2
|
|
||||||
|
|
||||||
* `Versions`
|
|
||||||
* `tgbotapi`: `2.1.2`
|
|
||||||
* `microutils`: `0.11.12`
|
|
||||||
* `coroutines`: `1.6.3`
|
|
||||||
* `ktor`: `2.0.3`
|
|
||||||
|
|
||||||
## 1.2.1
|
|
||||||
|
|
||||||
* `Versions`
|
|
||||||
* `tgbotapi`: `2.1.1`
|
|
||||||
* `microutils`: `0.11.6`
|
|
||||||
* `kslog`: `0.3.2`
|
|
||||||
|
|
||||||
## 1.2.0
|
|
||||||
|
|
||||||
* `Versions`
|
|
||||||
* `tgbotapi`: `2.1.0`
|
|
||||||
|
|
||||||
## 1.1.2
|
|
||||||
|
|
||||||
* `Versions`
|
|
||||||
* `tgbotapi`: `2.0.3`
|
|
||||||
* `microutils`: `0.11.3`
|
|
||||||
* `kslog`: `0.3.1`
|
|
||||||
* `Plugin`:
|
|
||||||
* Now it is possible to use `object`s of plugins instead of classes
|
|
||||||
|
|
||||||
## 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
|
## 1.1.0
|
||||||
|
|
||||||
* `Versions`
|
* `Versions`
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ dependencies {
|
|||||||
|
|
||||||
api libs.tgbotapi
|
api libs.tgbotapi
|
||||||
api libs.microutils.repos.exposed
|
api libs.microutils.repos.exposed
|
||||||
api libs.kslog
|
|
||||||
|
|
||||||
api libs.sqlite
|
api libs.sqlite
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
package dev.inmo.plagubot
|
package dev.inmo.plagubot
|
||||||
|
|
||||||
import dev.inmo.kslog.common.KSLog
|
import dev.inmo.plagubot.config.*
|
||||||
import dev.inmo.kslog.common.i
|
import kotlinx.coroutines.*
|
||||||
import dev.inmo.plagubot.config.Config
|
|
||||||
import dev.inmo.plagubot.config.defaultJsonFormat
|
|
||||||
import kotlinx.serialization.InternalSerializationApi
|
import kotlinx.serialization.InternalSerializationApi
|
||||||
import kotlinx.serialization.json.jsonObject
|
import kotlinx.serialization.json.jsonObject
|
||||||
import java.io.File
|
import java.io.File
|
||||||
@@ -13,13 +11,10 @@ import java.io.File
|
|||||||
*/
|
*/
|
||||||
@InternalSerializationApi
|
@InternalSerializationApi
|
||||||
suspend fun main(args: Array<String>) {
|
suspend fun main(args: Array<String>) {
|
||||||
KSLog.default = KSLog("PlaguBot")
|
|
||||||
val (configPath) = args
|
val (configPath) = args
|
||||||
val file = File(configPath)
|
val file = File(configPath)
|
||||||
KSLog.i("Start read config from ${file.absolutePath}")
|
|
||||||
val json = defaultJsonFormat.parseToJsonElement(file.readText()).jsonObject
|
val json = defaultJsonFormat.parseToJsonElement(file.readText()).jsonObject
|
||||||
val config = defaultJsonFormat.decodeFromJsonElement(Config.serializer(), json)
|
val config = defaultJsonFormat.decodeFromJsonElement(Config.serializer(), json)
|
||||||
KSLog.i("Config has been read")
|
|
||||||
|
|
||||||
PlaguBot(json, config).start().join()
|
PlaguBot(json, config).start().join()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +1,23 @@
|
|||||||
package dev.inmo.plagubot
|
package dev.inmo.plagubot
|
||||||
|
|
||||||
import dev.inmo.kslog.common.*
|
|
||||||
import dev.inmo.tgbotapi.extensions.api.bot.getMe
|
import dev.inmo.tgbotapi.extensions.api.bot.getMe
|
||||||
import dev.inmo.tgbotapi.extensions.api.send.reply
|
import dev.inmo.tgbotapi.extensions.api.send.reply
|
||||||
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContext
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContext
|
||||||
import dev.inmo.tgbotapi.extensions.behaviour_builder.triggers_handling.onCommand
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.triggers_handling.onCommand
|
||||||
import kotlinx.serialization.SerialName
|
import kotlinx.serialization.*
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import kotlinx.serialization.json.Json
|
import kotlinx.serialization.json.Json
|
||||||
import kotlinx.serialization.json.JsonObject
|
import kotlinx.serialization.json.JsonObject
|
||||||
import org.jetbrains.exposed.sql.Database
|
import org.jetbrains.exposed.sql.Database
|
||||||
import org.koin.core.Koin
|
import org.koin.core.Koin
|
||||||
|
import org.koin.core.KoinApplication
|
||||||
|
import org.koin.core.component.KoinComponent
|
||||||
|
import org.koin.core.component.get
|
||||||
import org.koin.core.module.Module
|
import org.koin.core.module.Module
|
||||||
|
import org.koin.dsl.module
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
@SerialName("Hello")
|
@SerialName("Hello")
|
||||||
object HelloPlugin : Plugin {
|
class HelloPlugin : Plugin {
|
||||||
@Serializable
|
@Serializable
|
||||||
data class HelloPluginConfig(
|
data class HelloPluginConfig(
|
||||||
val print: String
|
val print: String
|
||||||
@@ -28,8 +30,8 @@ object HelloPlugin : Plugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun BehaviourContext.setupBotPlugin(koin: Koin) {
|
override suspend fun BehaviourContext.setupBotPlugin(koin: Koin) {
|
||||||
logger.d { koin.get<HelloPluginConfig>().print }
|
println(koin.get<HelloPluginConfig>().print)
|
||||||
logger.dS { getMe().toString() }
|
println(getMe())
|
||||||
onCommand("hello_world") {
|
onCommand("hello_world") {
|
||||||
reply(it, "Hello :)")
|
reply(it, "Hello :)")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,10 @@
|
|||||||
package dev.inmo.plagubot
|
package dev.inmo.plagubot
|
||||||
|
|
||||||
import dev.inmo.kslog.common.*
|
|
||||||
import dev.inmo.micro_utils.common.Warning
|
|
||||||
import dev.inmo.micro_utils.coroutines.runCatchingSafely
|
import dev.inmo.micro_utils.coroutines.runCatchingSafely
|
||||||
import dev.inmo.plagubot.config.Config
|
import dev.inmo.plagubot.config.*
|
||||||
import dev.inmo.plagubot.config.defaultJsonFormat
|
|
||||||
import dev.inmo.tgbotapi.bot.ktor.telegramBot
|
import dev.inmo.tgbotapi.bot.ktor.telegramBot
|
||||||
import dev.inmo.tgbotapi.extensions.api.webhook.deleteWebhook
|
import dev.inmo.tgbotapi.extensions.api.webhook.deleteWebhook
|
||||||
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContext
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.*
|
||||||
import dev.inmo.tgbotapi.extensions.behaviour_builder.buildBehaviour
|
|
||||||
import dev.inmo.tgbotapi.extensions.utils.updates.retrieving.startGettingOfUpdatesByLongPolling
|
import dev.inmo.tgbotapi.extensions.utils.updates.retrieving.startGettingOfUpdatesByLongPolling
|
||||||
import kotlinx.coroutines.*
|
import kotlinx.coroutines.*
|
||||||
import kotlinx.serialization.Serializable
|
import kotlinx.serialization.Serializable
|
||||||
@@ -21,19 +17,19 @@ import org.koin.core.context.GlobalContext
|
|||||||
import org.koin.core.module.Module
|
import org.koin.core.module.Module
|
||||||
import org.koin.core.scope.Scope
|
import org.koin.core.scope.Scope
|
||||||
import org.koin.dsl.module
|
import org.koin.dsl.module
|
||||||
|
import java.util.logging.Level
|
||||||
|
import java.util.logging.Logger
|
||||||
|
|
||||||
val Scope.plagubot: PlaguBot
|
val Scope.plagubot: PlaguBot
|
||||||
get() = get()
|
get() = get()
|
||||||
|
|
||||||
val Koin.plagubot: PlaguBot
|
|
||||||
get() = get()
|
|
||||||
|
|
||||||
@OptIn(Warning::class)
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class PlaguBot(
|
data class PlaguBot(
|
||||||
private val json: JsonObject,
|
private val json: JsonObject,
|
||||||
private val config: Config
|
private val config: Config
|
||||||
) : Plugin {
|
) : Plugin {
|
||||||
|
@Transient
|
||||||
|
private val logger = Logger.getLogger("PlaguBot")
|
||||||
@Transient
|
@Transient
|
||||||
private val bot = telegramBot(config.botToken)
|
private val bot = telegramBot(config.botToken)
|
||||||
|
|
||||||
@@ -54,24 +50,24 @@ data class PlaguBot(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}.onFailure { e ->
|
}.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()
|
}.getOrNull()
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun BehaviourContext.setupBotPlugin(koin: Koin) {
|
override suspend fun BehaviourContext.setupBotPlugin(koin: Koin) {
|
||||||
config.plugins.map { plugin ->
|
config.plugins.map {
|
||||||
launch {
|
launch {
|
||||||
runCatchingSafely {
|
runCatchingSafely {
|
||||||
logger.i("Start loading of $plugin")
|
logger.info("Start loading of $it")
|
||||||
with(plugin) {
|
with(it) {
|
||||||
setupBotPlugin(koin)
|
setupBotPlugin(koin)
|
||||||
}
|
}
|
||||||
}.onFailure { e ->
|
}.onFailure { e ->
|
||||||
logger.w("Unable to load bot part of $plugin", e)
|
logger.log(Level.WARNING, "Unable to load bot part of $it", e)
|
||||||
}.onSuccess {
|
}.onSuccess {
|
||||||
logger.i("Complete loading of $plugin")
|
logger.info("Complete loading of $it")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}.joinAll()
|
}.joinAll()
|
||||||
@@ -83,26 +79,26 @@ data class PlaguBot(
|
|||||||
suspend fun start(
|
suspend fun start(
|
||||||
scope: CoroutineScope = CoroutineScope(Dispatchers.IO)
|
scope: CoroutineScope = CoroutineScope(Dispatchers.IO)
|
||||||
): Job {
|
): Job {
|
||||||
logger.i("Start initialization")
|
logger.info("Start initialization")
|
||||||
val koinApp = KoinApplication.init()
|
val koinApp = KoinApplication.init()
|
||||||
koinApp.modules(
|
koinApp.modules(
|
||||||
module {
|
module {
|
||||||
setupDI(config.databaseConfig.database, json)
|
setupDI(config.databaseConfig.database, json)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
logger.i("Modules loaded")
|
logger.info("Modules loaded")
|
||||||
GlobalContext.startKoin(koinApp)
|
GlobalContext.startKoin(koinApp)
|
||||||
logger.i("Koin started")
|
logger.info("Koin started")
|
||||||
lateinit var behaviourContext: BehaviourContext
|
lateinit var behaviourContext: BehaviourContext
|
||||||
bot.buildBehaviour(scope = scope) {
|
bot.buildBehaviour(scope = scope) {
|
||||||
logger.i("Start setup of bot part")
|
logger.info("Start setup of bot part")
|
||||||
behaviourContext = this
|
behaviourContext = this
|
||||||
setupBotPlugin(koinApp.koin)
|
setupBotPlugin(koinApp.koin)
|
||||||
deleteWebhook()
|
deleteWebhook()
|
||||||
}
|
}
|
||||||
logger.i("Behaviour builder has been setup")
|
logger.info("Behaviour builder has been setup")
|
||||||
return bot.startGettingOfUpdatesByLongPolling(scope = behaviourContext, updatesFilter = behaviourContext).also {
|
return bot.startGettingOfUpdatesByLongPolling(scope = behaviourContext, updatesFilter = behaviourContext).also {
|
||||||
logger.i("Long polling has been started")
|
logger.info("Long polling has been started")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
package dev.inmo.plagubot.config
|
package dev.inmo.plagubot.config
|
||||||
|
|
||||||
import dev.inmo.micro_utils.common.Warning
|
|
||||||
import dev.inmo.plagubot.Plugin
|
import dev.inmo.plagubot.Plugin
|
||||||
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")
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class Config(
|
data class Config(
|
||||||
val botToken: String,
|
val botToken: String,
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ if (new File(projectDir, "secret.gradle").exists()) {
|
|||||||
owner "InsanusMokrassar"
|
owner "InsanusMokrassar"
|
||||||
repo "PlaguBot"
|
repo "PlaguBot"
|
||||||
|
|
||||||
tagName "v${project.version}"
|
tagName "${project.version}"
|
||||||
releaseName "${project.version}"
|
releaseName "${project.version}"
|
||||||
targetCommitish "${project.version}"
|
targetCommitish "${project.version}"
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,4 @@ kotlin.js.generate.externals=true
|
|||||||
kotlin.incremental=true
|
kotlin.incremental=true
|
||||||
|
|
||||||
group=dev.inmo
|
group=dev.inmo
|
||||||
version=1.2.3
|
version=1.1.0
|
||||||
|
|||||||
@@ -2,11 +2,10 @@
|
|||||||
|
|
||||||
kt = "1.6.21"
|
kt = "1.6.21"
|
||||||
kt-serialization = "1.3.3"
|
kt-serialization = "1.3.3"
|
||||||
kt-coroutines = "1.6.3"
|
kt-coroutines = "1.6.1"
|
||||||
|
|
||||||
microutils = "0.11.12"
|
microutils = "0.10.5"
|
||||||
tgbotapi = "2.1.3"
|
tgbotapi = "2.0.0"
|
||||||
kslog = "0.3.2"
|
|
||||||
|
|
||||||
jb-exposed = "0.38.2"
|
jb-exposed = "0.38.2"
|
||||||
jb-dokka = "1.6.21"
|
jb-dokka = "1.6.21"
|
||||||
@@ -14,11 +13,11 @@ jb-dokka = "1.6.21"
|
|||||||
sqlite = "3.36.0.3"
|
sqlite = "3.36.0.3"
|
||||||
|
|
||||||
klock = "2.7.0"
|
klock = "2.7.0"
|
||||||
uuid = "0.4.1"
|
uuid = "0.4.0"
|
||||||
|
|
||||||
ktor = "2.0.3"
|
ktor = "2.0.1"
|
||||||
|
|
||||||
gh-release = "2.4.1"
|
gh-release = "2.3.7"
|
||||||
|
|
||||||
android-gradle = "7.0.4"
|
android-gradle = "7.0.4"
|
||||||
dexcount = "3.1.0"
|
dexcount = "3.1.0"
|
||||||
@@ -33,7 +32,6 @@ kt-serialization = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json"
|
|||||||
|
|
||||||
tgbotapi = { module = "dev.inmo:tgbotapi", version.ref = "tgbotapi" }
|
tgbotapi = { module = "dev.inmo:tgbotapi", version.ref = "tgbotapi" }
|
||||||
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" }
|
||||||
kslog = { module = "dev.inmo:kslog", version.ref = "kslog" }
|
|
||||||
|
|
||||||
koin = { module = "io.insert-koin:koin-core", version.ref = "koin" }
|
koin = { module = "io.insert-koin:koin-core", version.ref = "koin" }
|
||||||
|
|
||||||
|
|||||||
@@ -13,8 +13,7 @@ class PluginSerializer : KSerializer<Plugin> {
|
|||||||
get() = String.serializer().descriptor
|
get() = String.serializer().descriptor
|
||||||
|
|
||||||
override fun deserialize(decoder: Decoder): Plugin {
|
override fun deserialize(decoder: Decoder): Plugin {
|
||||||
val kclass = Class.forName(decoder.decodeString()).kotlin
|
return Class.forName(decoder.decodeString()).getDeclaredConstructor().newInstance() as Plugin
|
||||||
return (kclass.objectInstance ?: kclass.constructors.first { it.parameters.isEmpty() }.call()) as Plugin
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun serialize(encoder: Encoder, value: Plugin) {
|
override fun serialize(encoder: Encoder, value: Plugin) {
|
||||||
|
|||||||
Reference in New Issue
Block a user