Compare commits

...

2 Commits

Author SHA1 Message Date
murm 47700fce82 update tags to allow for matrix html funnies 2023-03-17 01:42:28 -04:00
murm 8f8d5972aa add support for html-formatted matrix messages 2023-03-17 01:42:10 -04:00
2 changed files with 15 additions and 4 deletions

View File

@ -20,7 +20,7 @@ class TagsCommand extends Command {
const result = await database.setTag(tagName, { content: this.type === "classic" ? this.args.slice(2).join(" ") : this.optionsArray[0].options[1].value, author: this.message.sender }, this.channel);
this.success = true;
if (result) return result;
return `The tag \`${tagName}\` has been added!`;
return { html: `The tag <font color=\"#ff00ff\">${tagName}</font> has been <b>added</b>!` };
} else if (cmd === "delete" || cmd === "remove") {
if (!tagName || !tagName.trim()) return "You need to provide the name of the tag you want to delete!";
const getResult = await database.getTag(this.channel, tagName);
@ -29,7 +29,7 @@ class TagsCommand extends Command {
if (getResult.author !== this.author && !owners.includes(this.author)) return "You don't own this tag!";
await database.removeTag(tagName, this.channel);
this.success = true;
return `The tag \`${tagName}\` has been deleted!`;
return { html: `The tag <font color=\"#ff00ff\">${tagName}</font> has been <b>deleted</b>!` };
} else if (cmd === "edit") {
if (!tagName || !tagName.trim()) return "You need to provide the name of the tag you want to edit!";
const getResult = await database.getTag(this.channel, tagName);
@ -38,7 +38,7 @@ class TagsCommand extends Command {
if (getResult.author !== this.author && !owners.includes(this.author)) return "You don't own this tag!";
await database.editTag(tagName, { content: this.type === "classic" ? this.args.slice(2).join(" ") : this.optionsArray[0].options[1].value, author: this.message.sender }, this.channel);
this.success = true;
return `The tag \`${tagName}\` has been edited!`;
return { html: `The tag <font color=\"#ff00ff\">${tagName}</font> has been <b>edited</b>!` };
} else if (cmd === "own" || cmd === "owner") {
if (!tagName || !tagName.trim()) return "You need to provide the name of the tag you want to check the owner of!";
const getResult = await database.getTag(this.channel, tagName);
@ -102,7 +102,7 @@ class TagsCommand extends Command {
}],
};
}
return getResult.content;
return { html: getResult.content };
}
}

View File

@ -71,6 +71,17 @@ export default async function (matrixClient, event, room, toStartOfTimeline) {
});
} else if (typeof result === "object") {
// console.log(result)
if (result.html) {
const content = {
format: "org.matrix.custom.html",
body: result.html,
formatted_body: result.html,
msgtype: "m.text",
};
matrixClient.sendEvent(event.event.room_id, "m.room.message", content, "", (err, res) => {
console.log(err);
});
}
if (result.contents && result.name) {
let fileSize = 52428308;
if (result.contents.length > fileSize) {