Skip to content

Add days command

Daniel Tischner edited this page Oct 8, 2021 · 6 revisions

Overview

This tutorial shows how to add a custom command, the days command:

  • /days <from> <to>
    • computes the difference in days between the given dates
    • e.g. /days 26.09.2021 03.10.2021 will respond with 7 days

Please read Add a new command first.

What you will learn

  • add a custom command
  • reply to messages
  • add options (arguments) to a command
  • ephemeral messages (only visible to one user)
  • compute the difference in days between two dates

Tutorial

Create class

To get started, we have to create a new class, such as DaysCommand. A good place for it would be in the org.togetherjava.tjbot.commands package. Maybe in a new subpackage or just in the existing org.togetherjava.tjbot.commands.base package.

The class has to implement SlashCommand, or alternatively just extend SlashCommandAdapter which gets most of the work done already. For latter, we have to add a constructor that provides a name, a description and the command visibility. Also, we have to implement the onSlashCommand method, which will be called by the system when /days was triggered by an user. To get started, we will just respond with Hello World. Our first version of this class looks like:

package org.togetherjava.tjbot.commands.basic;

import net.dv8tion.jda.api.events.interaction.SlashCommandEvent;
import org.jetbrains.annotations.NotNull;
import org.togetherjava.tjbot.commands.SlashCommandAdapter;
import org.togetherjava.tjbot.commands.SlashCommandVisibility;

public final class DaysCommand extends SlashCommandAdapter {

    public DaysCommand() {
        super("days", "Computes the difference in days between given dates", SlashCommandVisibility.GUILD);
    }

    @Override
    public void onSlashCommand(@NotNull SlashCommandEvent event) {
        event.reply("Hello World!").queue();
    }
}

Register command

Next up, we have to register the command in the command system. Therefore, we open the Commands class (in package org.togetherjava.tjbot.commands) and simply append an instance of our new command to the createSlashCommands method. For example:

public static @NotNull Collection<SlashCommand> createSlashCommands(@NotNull Database database) {
    return List.of(new PingCommand(), new DatabaseCommand(database), new DaysCommand());
}

Try it out

The command is now ready and can already be used.

After starting up the bot, we have to use /reload to tell Discord that we changed the slash-commands. To be precise, you have to use /reload each time you change the commands signature. That is mostly whenever you add or remove commands, change their names or descriptions or anything related to their CommandData.

Now, we can use /days and it will respond with "Hello World!".

days command hello world

Add options

The next step is to add the two options to our command, i.e. being able to write something like /days 26.09.2021 03.10.2021. The options are both supposed to be required.

This has to be configured during the setup of the command, via the CommandData returned by getData(). We should do this in the constructor of our command. Like so:

public DaysCommand() {
    super("days", "Computes the difference in days between given dates",
            SlashCommandVisibility.GUILD);

    getData().addOption(OptionType.STRING, "from",
                    "the start date, in the format 'dd.MM.yyyy'", true)
            .addOption(OptionType.STRING, "to",
                    "the end date, in the format 'dd.MM.yyyy'", true);
}

For starters, let us try to respond back with both entered values instead of just writing "Hello World!". Therefore, in onSlashCommand, we retrieve the entered values using event.getOption(...), like so:

@Override
public void onSlashCommand(@NotNull SlashCommandEvent event) {
    String from = event.getOption("from").getAsString();
    String to = event.getOption("to").getAsString();

    event.reply(from + ", " + to).queue();
}

If we restart the bot, pop /reload again (since we added options to the command), we should now be able to enter two values and the bot will respond back with them:

days command options dialog days command options response

Date validation

The bot still allows us to enter any string we want. While it is not possible to restrict the input directly in the dialog box, we can easily refuse any invalid input and respond back with an error message instead. We can also use setEphemeral(true) on the reply, to make the error message only appear to the user who triggered the command.

All in all, the code for the method now looks like:

String from = event.getOption("from").getAsString();
String to = event.getOption("to").getAsString();

DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd.MM.yyyy");
try {
    LocalDate fromDate = LocalDate.parse(from, formatter);
    LocalDate toDate = LocalDate.parse(to, formatter);

    event.reply(from + ", " + to).queue();
} catch (DateTimeParseException e) {
    event.reply("The dates must be in the format 'dd.MM.yyyy', try again.")
        .setEphemeral(true)
        .queue();
}

For trying it out, we do not have to use /reload again, since we only changed our logic but not the command structure itself.

days command invalid input

Compute days

Now that we have two valid dates, we only have to compute the difference in days and respond back with the result. Luckily, the java.time API got us covered, we can simply use ChronoUnit.DAYS.between(fromDate, toDate):

long days = ChronoUnit.DAYS.between(fromDate, toDate);
event.reply(days + " days").queue();

days command days difference

Full code

After some cleanup and minor code improvements, the full code for DaysCommand is:

package org.togetherjava.tjbot.commands.basic;

import net.dv8tion.jda.api.events.interaction.SlashCommandEvent;
import net.dv8tion.jda.api.interactions.commands.OptionType;
import org.jetbrains.annotations.NotNull;
import org.togetherjava.tjbot.commands.SlashCommandAdapter;
import org.togetherjava.tjbot.commands.SlashCommandVisibility;

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
import java.time.temporal.ChronoUnit;
import java.util.Objects;

/**
 * This creates a command called {@code /days}, which can calculate the difference between two given
 * dates in days.
 * <p>
 * For example:
 * 
 * <pre>
 * {@code
 * /days from: 26.09.2021 to: 03.10.2021
 * // TJ-Bot: The difference between 26.09.2021 and 03.10.2021 are 7 days
 * }
 * </pre>
 */
public final class DaysCommand extends SlashCommandAdapter {
    private static final String FROM_OPTION = "from";
    private static final String TO_OPTION = "to";
    private static final String FORMAT = "dd.MM.yyyy";
    private static final DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern(FORMAT);

    /**
     * Creates an instance of the command.
     */
    public DaysCommand() {
        super("days", "Computes the difference in days between given dates",
                SlashCommandVisibility.GUILD);

        getData()
            .addOption(OptionType.STRING, FROM_OPTION, "the start date, in the format '"
                + FORMAT + "'", true)
            .addOption(OptionType.STRING, TO_OPTION, "the end date, in the format '"
                + FORMAT + "'", true);
    }

    @Override
    public void onSlashCommand(@NotNull SlashCommandEvent event) {
        String from = Objects.requireNonNull(event.getOption(FROM_OPTION)).getAsString();
        String to = Objects.requireNonNull(event.getOption(TO_OPTION)).getAsString();

        LocalDate fromDate;
        LocalDate toDate;
        try {
            fromDate = LocalDate.parse(from, FORMATTER);
            toDate = LocalDate.parse(to, FORMATTER);
        } catch (DateTimeParseException e) {
            event.reply("The dates must be in the format '" + FORMAT + "', try again.")
                .setEphemeral(true)
                .queue();
            return;
        }

        long days = ChronoUnit.DAYS.between(fromDate, toDate);
        event.reply("The difference between %s and %s are %d days".formatted(from, to, days))
            .queue();
    }
}
Clone this wiki locally