io.github.freya022.botcommands.internal.commands.application.autobuilder.MessageContextCommandAutoBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BotCommands Show documentation
Show all versions of BotCommands Show documentation
A Kotlin-first (and Java) framework that makes creating Discord bots a piece of cake, using the JDA library.
package io.github.freya022.botcommands.internal.commands.application.autobuilder
import io.github.freya022.botcommands.api.commands.CommandPath
import io.github.freya022.botcommands.api.commands.annotations.Command
import io.github.freya022.botcommands.api.commands.application.CommandScope
import io.github.freya022.botcommands.api.commands.application.annotations.CommandId
import io.github.freya022.botcommands.api.commands.application.context.annotations.JDAMessageCommand
import io.github.freya022.botcommands.api.commands.application.context.message.GlobalMessageEvent
import io.github.freya022.botcommands.api.commands.application.provider.AbstractApplicationCommandManager
import io.github.freya022.botcommands.api.commands.application.provider.GlobalApplicationCommandManager
import io.github.freya022.botcommands.api.commands.application.provider.GuildApplicationCommandManager
import io.github.freya022.botcommands.api.core.config.BApplicationConfig
import io.github.freya022.botcommands.api.core.service.annotations.BService
import io.github.freya022.botcommands.api.parameters.ResolverContainer
import io.github.freya022.botcommands.internal.commands.SkipLogger
import io.github.freya022.botcommands.internal.commands.application.autobuilder.metadata.MessageContextFunctionMetadata
import io.github.freya022.botcommands.internal.commands.autobuilder.*
import io.github.freya022.botcommands.internal.core.requiredFilter
import io.github.freya022.botcommands.internal.core.service.FunctionAnnotationsMap
import io.github.freya022.botcommands.internal.utils.FunctionFilter
import io.github.freya022.botcommands.internal.utils.annotationRef
import io.github.freya022.botcommands.internal.utils.throwInternal
import io.github.oshai.kotlinlogging.KotlinLogging
import kotlin.reflect.full.findAnnotation
import net.dv8tion.jda.api.interactions.commands.Command.Type as CommandType
private val logger = KotlinLogging.logger { }
@BService
internal class MessageContextCommandAutoBuilder(
applicationConfig: BApplicationConfig,
resolverContainer: ResolverContainer,
functionAnnotationsMap: FunctionAnnotationsMap
) : ContextCommandAutoBuilder(applicationConfig, resolverContainer) {
private val messageFunctions: List
init {
messageFunctions = functionAnnotationsMap
.getWithClassAnnotation()
.requiredFilter(FunctionFilter.nonStatic())
.requiredFilter(FunctionFilter.firstArg(GlobalMessageEvent::class))
.map {
val func = it.function
val annotation = func.findAnnotation() ?: throwInternal("${annotationRef()} should be present")
val path = CommandPath.ofName(annotation.name)
val commandId = func.findAnnotation()?.value
MessageContextFunctionMetadata(it, annotation, path, commandId)
}
}
//Separated functions so global command errors don't prevent guild commands from being registered
override fun declareGlobalApplicationCommands(manager: GlobalApplicationCommandManager) = declareMessage(manager)
override fun declareGuildApplicationCommands(manager: GuildApplicationCommandManager) = declareMessage(manager)
private fun declareMessage(manager: AbstractApplicationCommandManager) {
val skipLogger = SkipLogger(logger)
messageFunctions.forEachWithDelayedExceptions { metadata ->
runFiltered(
manager,
skipLogger,
forceGuildCommands,
metadata.path,
metadata.instance,
metadata.commandId,
metadata.func,
metadata.annotation.scope
) { processMessageCommand(manager, metadata) }
}
skipLogger.log((manager as? GuildApplicationCommandManager)?.guild, CommandType.MESSAGE)
}
private fun processMessageCommand(manager: AbstractApplicationCommandManager, metadata: MessageContextFunctionMetadata) {
val func = metadata.func
val instance = metadata.instance
val path = metadata.path
val commandId = metadata.commandId
val annotation = metadata.annotation
val actualScope = if (forceGuildCommands) CommandScope.GUILD else annotation.scope
manager.messageCommand(path.name, actualScope, func.castFunction()) {
fillCommandBuilder(func)
fillApplicationCommandBuilder(func)
isDefaultLocked = annotation.defaultLocked
nsfw = annotation.nsfw
processOptions((manager as? GuildApplicationCommandManager)?.guild, func, instance, commandId)
}
}
}