net.dv8tion.jda.internal.handle.InteractionCreateHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JDA Show documentation
Show all versions of JDA Show documentation
Java wrapper for the popular chat & VOIP service: Discord https://discord.com
/*
* Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and the JDA contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.dv8tion.jda.internal.handle;
import net.dv8tion.jda.api.entities.Guild;
import net.dv8tion.jda.api.entities.GuildChannel;
import net.dv8tion.jda.api.events.interaction.GenericInteractionCreateEvent;
import net.dv8tion.jda.api.events.interaction.ModalInteractionEvent;
import net.dv8tion.jda.api.events.interaction.command.CommandAutoCompleteInteractionEvent;
import net.dv8tion.jda.api.events.interaction.command.MessageContextInteractionEvent;
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
import net.dv8tion.jda.api.events.interaction.command.UserContextInteractionEvent;
import net.dv8tion.jda.api.events.interaction.component.ButtonInteractionEvent;
import net.dv8tion.jda.api.events.interaction.component.SelectMenuInteractionEvent;
import net.dv8tion.jda.api.interactions.InteractionType;
import net.dv8tion.jda.api.interactions.commands.Command;
import net.dv8tion.jda.api.interactions.components.Component;
import net.dv8tion.jda.api.utils.data.DataObject;
import net.dv8tion.jda.internal.JDAImpl;
import net.dv8tion.jda.internal.interactions.InteractionImpl;
import net.dv8tion.jda.internal.interactions.ModalInteractionImpl;
import net.dv8tion.jda.internal.interactions.command.CommandAutoCompleteInteractionImpl;
import net.dv8tion.jda.internal.interactions.command.MessageContextInteractionImpl;
import net.dv8tion.jda.internal.interactions.command.SlashCommandInteractionImpl;
import net.dv8tion.jda.internal.interactions.command.UserContextInteractionImpl;
import net.dv8tion.jda.internal.interactions.component.ButtonInteractionImpl;
import net.dv8tion.jda.internal.interactions.component.SelectMenuInteractionImpl;
import net.dv8tion.jda.internal.requests.WebSocketClient;
public class InteractionCreateHandler extends SocketHandler
{
public InteractionCreateHandler(JDAImpl api)
{
super(api);
}
@Override
protected Long handleInternally(DataObject content)
{
int type = content.getInt("type");
if (content.getInt("version", 1) != 1)
{
WebSocketClient.LOG.debug("Received interaction with version {}. This version is currently unsupported by this version of JDA. Consider updating!", content.getInt("version", 1));
return null;
}
long guildId = content.getUnsignedLong("guild_id", 0);
Guild guild = api.getGuildById(guildId);
if (api.getGuildSetupController().isLocked(guildId))
return guildId;
if (guildId != 0 && guild == null)
return null; // discard event if it is not from a guild we are currently in
if (guild != null)
{
GuildChannel channel = guild.getGuildChannelById(content.getUnsignedLong("channel_id", 0));
if (channel == null || !channel.getType().isMessage()) // TODO: This might break when interactions can be used outside of message channels in the future, not the case right now though!
{
WebSocketClient.LOG.debug("Discarding INTERACTION_CREATE event from unexpected channel type. Channel: {}", channel);
return null;
}
}
switch (InteractionType.fromKey(type))
{
case COMMAND: // slash commands
handleCommand(content);
break;
case COMPONENT: // buttons/components
handleAction(content);
break;
case COMMAND_AUTOCOMPLETE:
api.handleEvent(
new CommandAutoCompleteInteractionEvent(api, responseNumber,
new CommandAutoCompleteInteractionImpl(api, content)));
break;
case MODAL_SUBMIT:
api.handleEvent(
new ModalInteractionEvent(api, responseNumber,
new ModalInteractionImpl(api, content)));
break;
default:
api.handleEvent(
new GenericInteractionCreateEvent(api, responseNumber,
new InteractionImpl(api, content)));
}
return null;
}
private void handleCommand(DataObject content)
{
switch (Command.Type.fromId(content.getObject("data").getInt("type")))
{
case SLASH:
api.handleEvent(
new SlashCommandInteractionEvent(api, responseNumber,
new SlashCommandInteractionImpl(api, content)));
break;
case MESSAGE:
api.handleEvent(
new MessageContextInteractionEvent(api, responseNumber,
new MessageContextInteractionImpl(api, content)));
break;
case USER:
api.handleEvent(
new UserContextInteractionEvent(api, responseNumber,
new UserContextInteractionImpl(api, content)));
break;
}
}
private void handleAction(DataObject content)
{
switch (Component.Type.fromKey(content.getObject("data").getInt("component_type")))
{
case BUTTON:
api.handleEvent(
new ButtonInteractionEvent(api, responseNumber,
new ButtonInteractionImpl(api, content)));
break;
case SELECT_MENU:
api.handleEvent(
new SelectMenuInteractionEvent(api, responseNumber,
new SelectMenuInteractionImpl(api, content)));
break;
}
}
}