aboutsummaryrefslogtreecommitdiff
path: root/src/commands/dark.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/dark.js')
-rw-r--r--src/commands/dark.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/commands/dark.js b/src/commands/dark.js
new file mode 100644
index 0000000..54a486d
--- /dev/null
+++ b/src/commands/dark.js
@@ -0,0 +1,29 @@
+const axios = require('axios').default;
+const { MessageEmbed } = require('discord.js');
+const instance = axios.create({
+ baseURL: 'https://dark-api.herokuapp.com/api/v1'
+});
+
+async function getRandomQuotes(message, args) {
+ const randomQuotesUrl = "/quote/random";
+ try {
+ const result = await instance.get(randomQuotesUrl);
+ const { author, season, episode, quote } = result.data;
+ const randomQuoteMessage = new MessageEmbed()
+ .setDescription(quote)
+ .setFooter(`${author}, S${season} : Episode - ${episode}`);
+ message.channel.send(randomQuoteMessage);
+ } catch (error) {
+ const errorMessage = new MessageEmbed()
+ .setTitle("Something went wrong: Error getting quotes from Mikkel Nielsen")
+ .setColor("RED");
+ message.channel.send(errorMessage);
+ }
+}
+
+module.exports = {
+ execute(client, message, args) {
+ getRandomQuotes(message, args);
+ }
+}
+