Remove CatCommand
will be replaced with DogCommand
This commit is contained in:
parent
9544aa677f
commit
ad09706b77
|
@ -1,71 +0,0 @@
|
|||
package moe.oko.Kiafumi.command.image;
|
||||
|
||||
import moe.oko.Kiafumi.command.CommandClass;
|
||||
import moe.oko.Kiafumi.util.CommandInfo;
|
||||
import moe.oko.Kiafumi.util.CommandType;
|
||||
import moe.oko.Kiafumi.util.EmbedUI;
|
||||
import net.dv8tion.jda.api.EmbedBuilder;
|
||||
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
|
||||
import org.apache.http.client.methods.HttpGet;
|
||||
import org.apache.http.impl.client.HttpClients;
|
||||
import org.json.JSONArray;
|
||||
|
||||
import java.net.URI;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import static moe.oko.Kiafumi.util.LoggingManager.error;
|
||||
import static moe.oko.Kiafumi.util.LoggingManager.slashLog;
|
||||
import static moe.oko.Kiafumi.util.ResponseHandlers.STRING_RESPONSE_HANDLER;
|
||||
|
||||
/**
|
||||
* Mrow :3
|
||||
* @author Kay
|
||||
*/
|
||||
public class CatCommand extends CommandClass {
|
||||
|
||||
private final URI catUrl = URI.create("https://api.thecatapi.com/v1/images/search");
|
||||
|
||||
@Override
|
||||
public boolean isEnabled() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "Cat";
|
||||
}
|
||||
|
||||
@Override
|
||||
public void newCommand(String name, SlashCommandInteractionEvent e) {
|
||||
switch (name) {
|
||||
case "cat":
|
||||
slashLog(e);
|
||||
e.deferReply().queue();
|
||||
|
||||
var httpClient = HttpClients.createDefault();
|
||||
var httpGet = new HttpGet(catUrl);
|
||||
try {
|
||||
var responseBody = httpClient.execute(httpGet, STRING_RESPONSE_HANDLER);
|
||||
var array = new JSONArray(responseBody);
|
||||
var obj = array.getJSONObject(0);
|
||||
var eb = new EmbedBuilder()
|
||||
.setColor(EmbedUI.INFO)
|
||||
.setTitle("meow")
|
||||
.setImage(obj.getString("url"))
|
||||
.setFooter(EmbedUI.BRAND);
|
||||
e.getHook().sendMessageEmbeds(eb.build()).queue();
|
||||
} catch (Exception ex) {
|
||||
ex.printStackTrace();
|
||||
error("Error using CatCommand.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<CommandInfo> getSlashCommandInfo() {
|
||||
List<CommandInfo> cil = new ArrayList<>();
|
||||
cil.add(new CommandInfo("cat", "Provides a random cat!", CommandType.COMMAND));
|
||||
return cil;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue