generated from array-in-a-matrix/matrix-bot-template
23 lines
864 B
JavaScript
23 lines
864 B
JavaScript
import config from './config.json' assert {type: "json"};
|
|
import { MatrixClient, SimpleFsStorageProvider, AutojoinRoomsMixin } from "matrix-bot-sdk";
|
|
|
|
const storage = new SimpleFsStorageProvider("storage.json");
|
|
const client = new MatrixClient(config.homeserver, config.token, storage);
|
|
|
|
AutojoinRoomsMixin.setupOnClient(client);
|
|
client.start().then(() => console.log(`Client has started!`));
|
|
|
|
// ? event listener
|
|
client.on("room.message", (roomId, event) => {
|
|
// ? check if the message's text is not empty and isn't sent by the bot itself
|
|
if (! event["content"] || event["sender"] === config.user) return;
|
|
// ? if message starts with the bot's <prefix + command> then execute the command
|
|
if (event["content"]["body"].toLowerCase().startsWith(config.prefix + "COMMAND")){
|
|
|
|
//
|
|
// TODO: START CODE HERE
|
|
//
|
|
|
|
}
|
|
})
|
|
|