23 lines
694 B
TypeScript
23 lines
694 B
TypeScript
import { dbClient } from '../db.ts';
|
|
import {
|
|
// Discordeno deps
|
|
DiscordenoMessage,
|
|
log,
|
|
// Log4Deno deps
|
|
LT,
|
|
} from '../../deps.ts';
|
|
import { constantCmds } from '../constantCmds.ts';
|
|
|
|
export const handleMentions = (message: DiscordenoMessage) => {
|
|
log(LT.LOG, `Handling @mention message: ${JSON.stringify(message)}`);
|
|
|
|
// Light telemetry to see how many times a command is being run
|
|
dbClient.execute(`CALL INC_CNT("mention");`).catch((e) => {
|
|
log(LT.ERROR, `Failed to call stored procedure INC_CNT: ${JSON.stringify(e)}`);
|
|
});
|
|
|
|
message.send(constantCmds.mention).catch((e) => {
|
|
log(LT.ERROR, `Failed to send message: ${JSON.stringify(message)} | ${JSON.stringify(e)}`);
|
|
});
|
|
};
|