All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.freya022.botcommands.api.commands.application.ApplicationCommandMap Maven / Gradle / Ivy

Go to download

A Kotlin-first (and Java) framework that makes creating Discord bots a piece of cake, using the JDA library.

There is a newer version: 3.0.0-alpha.18
Show newest version
package io.github.freya022.botcommands.api.commands.application;

import io.github.freya022.botcommands.api.commands.CommandPath;
import io.github.freya022.botcommands.internal.commands.application.ApplicationCommandInfo;
import io.github.freya022.botcommands.internal.commands.application.CommandMap;
import io.github.freya022.botcommands.internal.commands.application.MutableCommandMap;
import io.github.freya022.botcommands.internal.commands.application.context.message.MessageCommandInfo;
import io.github.freya022.botcommands.internal.commands.application.context.user.UserCommandInfo;
import io.github.freya022.botcommands.internal.commands.application.slash.SlashCommandInfo;
import net.dv8tion.jda.api.interactions.commands.Command;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.UnmodifiableView;

import java.util.Collection;
import java.util.Map;

public abstract class ApplicationCommandMap {
	@UnmodifiableView
	public Collection getAllApplicationCommands() {
		return getRawTypeMap().values()
				.stream()
				.flatMap(map -> map.values().stream())
				.toList();
	}

	public ApplicationCommandInfo get(Command.Type type, CommandPath path) {
		return getTypeMap(type).get(path);
	}

	@UnmodifiableView
	public CommandMap getSlashCommands() {
		return getTypeMap(Command.Type.SLASH);
	}

	@UnmodifiableView
	public CommandMap getUserCommands() {
		return getTypeMap(Command.Type.USER);
	}

	@UnmodifiableView
	public CommandMap getMessageCommands() {
		return getTypeMap(Command.Type.MESSAGE);
	}

	@Nullable
	public SlashCommandInfo findSlashCommand(@NotNull CommandPath path) {
		return this.getSlashCommands().get(path);
	}

	@Nullable
	public UserCommandInfo findUserCommand(@NotNull String name) {
		return this.getUserCommands().get(CommandPath.ofName(name));
	}

	@Nullable
	public MessageCommandInfo findMessageCommand(@NotNull String name) {
		return this.getMessageCommands().get(CommandPath.ofName(name));
	}

	@SuppressWarnings("unchecked")
	public  CommandMap getTypeMap(Command.Type type) {
		return (CommandMap) getRawTypeMap().computeIfAbsent(type, x -> new MutableCommandMap<>());
	}

	protected abstract Map> getRawTypeMap();

	@NotNull
	public abstract ApplicationCommandMap plus(@NotNull ApplicationCommandMap liveApplicationCommandsMap);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy