All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
ubot.plugins.commands.0.23.0.source-code.CommandsKeeper.kt Maven / Gradle / Ivy
package dev.inmo.plagubot.plugins.commands
import dev.inmo.micro_utils.language_codes.IetfLang
import dev.inmo.tgbotapi.types.BotCommand
import dev.inmo.tgbotapi.types.commands.BotCommandScope
import dev.inmo.tgbotapi.types.commands.BotCommandScopeDefault
import kotlinx.coroutines.flow.MutableSharedFlow
import kotlinx.coroutines.sync.Mutex
import kotlinx.coroutines.sync.withLock
/**
* In memory commands keeper. Contains all the registered commands inside and can be useful in case you wish to
* [addCommand] or [removeCommand]
*/
class CommandsKeeper(
preset: List = emptyList()
) {
internal val onScopeChanged = MutableSharedFlow()
private val scopesCommands: MutableMap> = preset.groupBy {
it.key
}.mapValues { (_, v) ->
v.map { it.command }.toMutableSet()
}.toMutableMap()
private val changesMutex = Mutex()
suspend fun addCommand(scope: CommandsKeeperKey, command: BotCommand) {
changesMutex.withLock {
val added = scopesCommands.getOrPut(scope) {
mutableSetOf()
}.add(command)
if (added) {
onScopeChanged.emit(scope)
}
}
}
suspend fun addCommand(
scope: BotCommandScope,
command: BotCommand
) = addCommand(
CommandsKeeperKey(scope, null),
command
)
suspend fun addCommand(
languageCode: String,
command: BotCommand
) = addCommand(
CommandsKeeperKey(languageCode = languageCode),
command
)
suspend fun addCommand(
languageCode: IetfLang,
command: BotCommand
) = addCommand(
CommandsKeeperKey(BotCommandScopeDefault, languageCode),
command
)
suspend fun addCommand(
scope: BotCommandScope,
languageCode: IetfLang,
command: BotCommand
) = addCommand(
CommandsKeeperKey(scope, languageCode),
command
)
suspend fun addCommand(
scope: BotCommandScope,
languageCode: String,
command: BotCommand
) = addCommand(
CommandsKeeperKey(scope, languageCode),
command
)
suspend fun addCommand(
command: BotCommand
) = addCommand(
CommandsKeeperKey.DEFAULT,
command
)
suspend fun removeCommand(scope: CommandsKeeperKey, command: BotCommand) {
changesMutex.withLock {
val removed = scopesCommands[scope] ?.remove(command) == true
if (removed) {
onScopeChanged.emit(scope)
}
}
}
suspend fun removeCommand(
scope: BotCommandScope,
command: BotCommand
) = removeCommand(
CommandsKeeperKey(scope),
command
)
suspend fun removeCommand(
languageCode: String,
command: BotCommand
) = removeCommand(
CommandsKeeperKey(languageCode = languageCode),
command
)
suspend fun removeCommand(
languageCode: IetfLang,
command: BotCommand
) = removeCommand(
CommandsKeeperKey(BotCommandScopeDefault, languageCode),
command
)
suspend fun removeCommand(
scope: BotCommandScope,
languageCode: IetfLang,
command: BotCommand
) = removeCommand(
CommandsKeeperKey(scope, languageCode),
command
)
suspend fun removeCommand(
scope: BotCommandScope,
languageCode: String,
command: BotCommand
) = removeCommand(
CommandsKeeperKey(scope, languageCode),
command
)
suspend fun removeCommand(
command: BotCommand
) = removeCommand(
CommandsKeeperKey.DEFAULT,
command
)
internal fun getCommands(scope: CommandsKeeperKey) = scopesCommands[scope] ?.toList()
internal fun getKeys() = scopesCommands.keys.toList()
}