mirror of
https://github.com/discord/discord-example-app.git
synced 2026-08-24 02:24:14 -05:00
* Update dependencies * Update docs links * Use components v2 in examples * Update interaction link * Fix text display fields * Update app.js to match tutorial
72 lines
2.1 KiB
JavaScript
72 lines
2.1 KiB
JavaScript
import 'dotenv/config';
|
|
import express from 'express';
|
|
import {
|
|
ButtonStyleTypes,
|
|
InteractionResponseFlags,
|
|
InteractionResponseType,
|
|
InteractionType,
|
|
MessageComponentTypes,
|
|
verifyKeyMiddleware,
|
|
} from 'discord-interactions';
|
|
import { getRandomEmoji, DiscordRequest } from './utils.js';
|
|
import { getShuffledOptions, getResult } from './game.js';
|
|
|
|
// Create an express app
|
|
const app = express();
|
|
// Get port, or default to 3000
|
|
const PORT = process.env.PORT || 3000;
|
|
// To keep track of our active games
|
|
const activeGames = {};
|
|
|
|
/**
|
|
* Interactions endpoint URL where Discord will send HTTP requests
|
|
* Parse request body and verifies incoming requests using discord-interactions package
|
|
*/
|
|
app.post('/interactions', verifyKeyMiddleware(process.env.PUBLIC_KEY), async function (req, res) {
|
|
// Interaction id, type and data
|
|
const { id, type, data } = req.body;
|
|
|
|
/**
|
|
* Handle verification requests
|
|
*/
|
|
if (type === InteractionType.PING) {
|
|
return res.send({ type: InteractionResponseType.PONG });
|
|
}
|
|
|
|
/**
|
|
* Handle slash command requests
|
|
* See https://discord.com/developers/docs/interactions/application-commands#slash-commands
|
|
*/
|
|
if (type === InteractionType.APPLICATION_COMMAND) {
|
|
const { name } = data;
|
|
|
|
// "test" command
|
|
if (name === 'test') {
|
|
// Send a message into the channel where command was triggered from
|
|
return res.send({
|
|
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
|
|
data: {
|
|
flags: InteractionResponseFlags.IS_COMPONENTS_V2,
|
|
components: [
|
|
{
|
|
type: MessageComponentTypes.TEXT_DISPLAY,
|
|
// Fetches a random emoji to send from a helper function
|
|
content: `hello world ${getRandomEmoji()}`
|
|
}
|
|
]
|
|
},
|
|
});
|
|
}
|
|
|
|
console.error(`unknown command: ${name}`);
|
|
return res.status(400).json({ error: 'unknown command' });
|
|
}
|
|
|
|
console.error('unknown interaction type', type);
|
|
return res.status(400).json({ error: 'unknown interaction type' });
|
|
});
|
|
|
|
app.listen(PORT, () => {
|
|
console.log('Listening on port', PORT);
|
|
});
|