Bot now respects prefixes

This commit is contained in:
Henrik Kjernmoen Gran 2024-08-15 23:14:31 +02:00
parent f58db13fe2
commit 922e151485
1 changed files with 6 additions and 7 deletions

View File

@ -27,10 +27,7 @@ client.addPreprocessor(new RichRepliesPreprocessor(false));
// We also want to make sure we can receive events - this is where we will
// handle our command.
client.on("room.message", handleCommand);
client.on("room.invite", (roomId, inviteEvent) => {
console.log(inviteEvent);
console.log(roomId);
console.log(rooms[0]);
client.on("room.invite", (roomId) => {
if (rooms.includes(roomId)) {
return client.joinRoom(roomId);
}
@ -40,7 +37,7 @@ client.on("room.invite", (roomId, inviteEvent) => {
// client up. This will start it syncing.
client.start().then(() => console.log("Client started!"));
// This is our event handler for dealing with the `!hello` command.
// This is our event handler for dealing with commands.
async function handleCommand(roomId, event) {
// Don't handle events that don't have contents (they were probably redacted)
if (!event["content"]) return;
@ -56,8 +53,10 @@ async function handleCommand(roomId, event) {
// If not in any authorized rooms, ignore
if (!rooms.includes(roomId)) return;
const text = event["content"]["body"];
if (!text) return;
// Check that the message starts with the prefix, and get the prefix-less message
const rawText = event["content"]["body"];
if (!rawText || !rawText.startsWith(prefix)) return;
const text = rawText.substring(prefix.length);
console.log(text);