Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

command: Respond to direct messages #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,27 @@
import net.dv8tion.jda.api.events.message.MessageReceivedEvent;
import net.dv8tion.jda.api.hooks.ListenerAdapter;
import org.togetherjava.discordbot.commands.CommandContext.JdaRequestContext;
import org.togetherjava.discordbot.util.Messages;

/**
* A command listener for JDA. It is responsible for listening to messages an invoking commands.
*/
@Singleton
public class CommandListener extends ListenerAdapter {

private JdaExecutor executor;
private final JdaExecutor executor;
private final Messages messages;

/**
* Creates a new command listener.
*
* @param executor the jda executor
* @param messages the messages container
*/
@Inject
public CommandListener(JdaExecutor executor) {
public CommandListener(JdaExecutor executor, Messages messages) {
this.executor = executor;
this.messages = messages;
}

@Override
Expand All @@ -44,6 +48,9 @@ public void onMessageReceived(@Nonnull MessageReceivedEvent event) {
);
executor.execute(content, context);
} catch (CommandNotFoundException | NoSeparatorException ignored) {
if (event.getMessage().getMentionedUsers().contains(event.getJDA().getSelfUser())) {
event.getChannel().sendMessage(messages.tr("commands.on-mention.response")).queue();
}
} catch (ParseException | AbnormalCommandResultException | CommandException e) {
if (e.getCause() != null && e.getCause().getMessage() != null) {
event.getChannel()
Expand Down
4 changes: 3 additions & 1 deletion src/main/resources/messages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ commands:
usage: "ban <id|mention> <duration in days> [reason]"
free:
short-description: "Shows the time since the last message in help channels."
usage: "free"
usage: "free"
on-mention:
response: "I'm available! Please use '>help' to get a list of commands."