mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
feat: add automod thread_archive and thread_unarchive triggers (#292)
Co-authored-by: Almeida <almeidx@pm.me>
This commit is contained in:
parent
6709115166
commit
446f188e16
6 changed files with 160 additions and 1 deletions
|
@ -32,6 +32,8 @@ import { ThreadDeleteTrigger } from "./threadDelete";
|
|||
import { UnbanTrigger } from "./unban";
|
||||
import { UnmuteTrigger } from "./unmute";
|
||||
import { WarnTrigger } from "./warn";
|
||||
import { ThreadArchiveTrigger } from "./threadArchive";
|
||||
import { ThreadUnarchiveTrigger } from "./threadUnarchive";
|
||||
|
||||
export const availableTriggers: Record<string, AutomodTriggerBlueprint<any, any>> = {
|
||||
any_message: AnyMessageTrigger,
|
||||
|
@ -71,6 +73,8 @@ export const availableTriggers: Record<string, AutomodTriggerBlueprint<any, any>
|
|||
|
||||
thread_create: ThreadCreateTrigger,
|
||||
thread_delete: ThreadDeleteTrigger,
|
||||
thread_archive: ThreadArchiveTrigger,
|
||||
thread_unarchive: ThreadUnarchiveTrigger,
|
||||
};
|
||||
|
||||
export const AvailableTriggers = t.type({
|
||||
|
@ -112,4 +116,6 @@ export const AvailableTriggers = t.type({
|
|||
|
||||
thread_create: ThreadCreateTrigger.configType,
|
||||
thread_delete: ThreadDeleteTrigger.configType,
|
||||
thread_archive: ThreadArchiveTrigger.configType,
|
||||
thread_unarchive: ThreadUnarchiveTrigger.configType,
|
||||
});
|
||||
|
|
56
backend/src/plugins/Automod/triggers/threadArchive.ts
Normal file
56
backend/src/plugins/Automod/triggers/threadArchive.ts
Normal file
|
@ -0,0 +1,56 @@
|
|||
import { Snowflake } from "discord-api-types";
|
||||
import { User, Util } from "discord.js";
|
||||
import * as t from "io-ts";
|
||||
import { tNullable } from "../../../utils";
|
||||
import { automodTrigger } from "../helpers";
|
||||
|
||||
interface ThreadArchiveResult {
|
||||
matchedThreadId: Snowflake;
|
||||
matchedThreadName: string;
|
||||
matchedThreadParentId: Snowflake;
|
||||
matchedThreadParentName: string;
|
||||
matchedThreadOwner: User | undefined;
|
||||
}
|
||||
|
||||
export const ThreadArchiveTrigger = automodTrigger<ThreadArchiveResult>()({
|
||||
configType: t.type({
|
||||
locked: tNullable(t.boolean),
|
||||
}),
|
||||
|
||||
defaultConfig: {},
|
||||
|
||||
async match({ context, triggerConfig }) {
|
||||
if (!context.threadChange?.archived) {
|
||||
return;
|
||||
}
|
||||
|
||||
const thread = context.threadChange.archived;
|
||||
|
||||
if (typeof triggerConfig.locked === "boolean" && thread.locked !== triggerConfig.locked) {
|
||||
return;
|
||||
}
|
||||
|
||||
return {
|
||||
extra: {
|
||||
matchedThreadId: thread.id,
|
||||
matchedThreadName: thread.name,
|
||||
matchedThreadParentId: thread.parentId ?? "Unknown",
|
||||
matchedThreadParentName: thread.parent?.name ?? "Unknown",
|
||||
matchedThreadOwner: context.user,
|
||||
},
|
||||
};
|
||||
},
|
||||
|
||||
async renderMatchInformation({ matchResult }) {
|
||||
const threadId = matchResult.extra.matchedThreadId;
|
||||
const threadName = matchResult.extra.matchedThreadName;
|
||||
const threadOwner = matchResult.extra.matchedThreadOwner;
|
||||
const parentId = matchResult.extra.matchedThreadParentId;
|
||||
const parentName = matchResult.extra.matchedThreadParentName;
|
||||
const base = `Thread **#${threadName}** (\`${threadId}\`) has been archived in the **#${parentName}** (\`${parentId}\`) channel`;
|
||||
if (threadOwner) {
|
||||
return `${base} by **${Util.escapeBold(threadOwner.tag)}** (\`${threadOwner.id}\`)`;
|
||||
}
|
||||
return base;
|
||||
},
|
||||
});
|
56
backend/src/plugins/Automod/triggers/threadUnarchive.ts
Normal file
56
backend/src/plugins/Automod/triggers/threadUnarchive.ts
Normal file
|
@ -0,0 +1,56 @@
|
|||
import { Snowflake } from "discord-api-types";
|
||||
import { User, Util } from "discord.js";
|
||||
import * as t from "io-ts";
|
||||
import { tNullable } from "../../../utils";
|
||||
import { automodTrigger } from "../helpers";
|
||||
|
||||
interface ThreadUnarchiveResult {
|
||||
matchedThreadId: Snowflake;
|
||||
matchedThreadName: string;
|
||||
matchedThreadParentId: Snowflake;
|
||||
matchedThreadParentName: string;
|
||||
matchedThreadOwner: User | undefined;
|
||||
}
|
||||
|
||||
export const ThreadUnarchiveTrigger = automodTrigger<ThreadUnarchiveResult>()({
|
||||
configType: t.type({
|
||||
locked: tNullable(t.boolean),
|
||||
}),
|
||||
|
||||
defaultConfig: {},
|
||||
|
||||
async match({ context, triggerConfig }) {
|
||||
if (!context.threadChange?.unarchived) {
|
||||
return;
|
||||
}
|
||||
|
||||
const thread = context.threadChange.unarchived;
|
||||
|
||||
if (typeof triggerConfig.locked === "boolean" && thread.locked !== triggerConfig.locked) {
|
||||
return;
|
||||
}
|
||||
|
||||
return {
|
||||
extra: {
|
||||
matchedThreadId: thread.id,
|
||||
matchedThreadName: thread.name,
|
||||
matchedThreadParentId: thread.parentId ?? "Unknown",
|
||||
matchedThreadParentName: thread.parent?.name ?? "Unknown",
|
||||
matchedThreadOwner: context.user,
|
||||
},
|
||||
};
|
||||
},
|
||||
|
||||
async renderMatchInformation({ matchResult }) {
|
||||
const threadId = matchResult.extra.matchedThreadId;
|
||||
const threadName = matchResult.extra.matchedThreadName;
|
||||
const threadOwner = matchResult.extra.matchedThreadOwner;
|
||||
const parentId = matchResult.extra.matchedThreadParentId;
|
||||
const parentName = matchResult.extra.matchedThreadParentName;
|
||||
const base = `Thread **#${threadName}** (\`${threadId}\`) has been unarchived in the **#${parentName}** (\`${parentId}\`) channel`;
|
||||
if (threadOwner) {
|
||||
return `${base} by **${Util.escapeBold(threadOwner.tag)}** (\`${threadOwner.id}\`)`;
|
||||
}
|
||||
return base;
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue