Merge branch 'main' of https://git.pvv.ntnu.no/henrkgr/doorbell-matrix-bot
This commit is contained in:
commit
0cef4671c5
13
index.mjs
13
index.mjs
|
@ -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);
|
||||
|
||||
if (["doorbell", "open", "ring", "knock", "ding", "dong", "dingdong"].includes(text)) {
|
||||
fetch('https://homeassistant.pvv.ntnu.no:8123/api/webhook/doorbell-oRkXU_ZUFzkc4wTtc6_m9PFR', {
|
||||
|
|
Loading…
Reference in New Issue