try https for request
This commit is contained in:
parent
04b0fa8855
commit
f97d1e32bf
5 changed files with 44 additions and 0 deletions
3
app.js
3
app.js
|
@ -37,6 +37,9 @@ function handle_application_command(state, data, channel_id) {
|
||||||
case "blep":
|
case "blep":
|
||||||
return blep(state);
|
return blep(state);
|
||||||
|
|
||||||
|
case "catfact":
|
||||||
|
return catfact(state);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
console.error(`unknown command: ${name}`);
|
console.error(`unknown command: ${name}`);
|
||||||
return res.status(400).json({ error: "unknown command" });
|
return res.status(400).json({ error: "unknown command" });
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import { InteractionResponseType } from "discord-interactions";
|
import { InteractionResponseType } from "discord-interactions";
|
||||||
import { Message } from "./message-scheduler.js";
|
import { Message } from "./message-scheduler.js";
|
||||||
import { ActionRowBuilder, ButtonBuilder, ButtonStyle } from "discord.js";
|
import { ActionRowBuilder, ButtonBuilder, ButtonStyle } from "discord.js";
|
||||||
|
import { request } from "https";
|
||||||
|
|
||||||
function send(state, data) {
|
function send(state, data) {
|
||||||
return state.res.send({
|
return state.res.send({
|
||||||
|
@ -45,3 +46,28 @@ Here are the available commands and their descriptions:
|
||||||
export function blep(state) {
|
export function blep(state) {
|
||||||
return send(state, { content: "≽^•𐃷•^≼" });
|
return send(state, { content: "≽^•𐃷•^≼" });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function catfact(state) {
|
||||||
|
const options = {
|
||||||
|
hostname: "meowfacts.herokuapp.com",
|
||||||
|
path: "/",
|
||||||
|
port: 443,
|
||||||
|
method: "GET",
|
||||||
|
};
|
||||||
|
|
||||||
|
let body = [];
|
||||||
|
|
||||||
|
const req = request(options, (res) => {
|
||||||
|
res.on("data", (chunk) => body.push(chunk));
|
||||||
|
res.on("end", () => {
|
||||||
|
const data = Buffer.concat(body).toString();
|
||||||
|
resolve(data);
|
||||||
|
console.log(data);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
req.on("error", (e) => {
|
||||||
|
console.log(`https error: ${e}`);
|
||||||
|
reject(e);
|
||||||
|
});
|
||||||
|
req.end();
|
||||||
|
}
|
||||||
|
|
|
@ -24,6 +24,13 @@ const commands = [
|
||||||
integration_types: [0],
|
integration_types: [0],
|
||||||
contexts: [0],
|
contexts: [0],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "catfact",
|
||||||
|
description: "get a cat fact",
|
||||||
|
type: 1,
|
||||||
|
integration_types: [0],
|
||||||
|
contexts: [0],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "schedule_message",
|
name: "schedule_message",
|
||||||
description: "Register a message to run as a cron job",
|
description: "Register a message to run as a cron job",
|
||||||
|
|
7
package-lock.json
generated
7
package-lock.json
generated
|
@ -13,6 +13,7 @@
|
||||||
"discord.js": "^14.16.3",
|
"discord.js": "^14.16.3",
|
||||||
"dotenv": "^16.0.3",
|
"dotenv": "^16.0.3",
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
|
"https": "^1.0.0",
|
||||||
"node-cron": "^3.0.3",
|
"node-cron": "^3.0.3",
|
||||||
"uuid": "^11.0.3"
|
"uuid": "^11.0.3"
|
||||||
},
|
},
|
||||||
|
@ -838,6 +839,12 @@
|
||||||
"node": ">= 0.8"
|
"node": ">= 0.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/https": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/https/-/https-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-4EC57ddXrkaF0x83Oj8sM6SLQHAWXw90Skqu2M4AEWENZ3F02dFJE/GARA8igO79tcgYqGrD7ae4f5L3um2lgg==",
|
||||||
|
"license": "ISC"
|
||||||
|
},
|
||||||
"node_modules/iconv-lite": {
|
"node_modules/iconv-lite": {
|
||||||
"version": "0.4.24",
|
"version": "0.4.24",
|
||||||
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
"discord.js": "^14.16.3",
|
"discord.js": "^14.16.3",
|
||||||
"dotenv": "^16.0.3",
|
"dotenv": "^16.0.3",
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
|
"https": "^1.0.0",
|
||||||
"node-cron": "^3.0.3",
|
"node-cron": "^3.0.3",
|
||||||
"uuid": "^11.0.3"
|
"uuid": "^11.0.3"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue