forked from jtgi/automod
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathregular.ts
98 lines (90 loc) · 2.44 KB
/
regular.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import { db } from "~/lib/db.server";
import { CheckFunction, CheckFunctionArgs, RuleDefinition } from "~/rules/rules.type";
async function manuallyApprove(args: CheckFunctionArgs) {
// remove existing moderation logs
const { channel, user } = args;
await db.moderationLog.deleteMany({
where: {
channelId: channel.id,
affectedUserFid: user.fid.toString(),
},
});
return {
result: false,
message: "Need manual approval by channel moderators",
};
}
function and(args: CheckFunctionArgs) {
return { result: true, message: "And rule always passes" };
}
function or(args: CheckFunctionArgs) {
return { result: true, message: "Or rule always passes" };
}
function alwaysInclude(args: CheckFunctionArgs) {
return { result: true, message: "Everything included by default" };
}
type RuleName = "manuallyApprove" | "and" | "or" | "alwaysInclude";
export const regularRulesFunction: Record<RuleName, CheckFunction> = {
manuallyApprove,
and,
or,
alwaysInclude,
};
export const regularRulesDefinitions: Record<RuleName, RuleDefinition> = {
and: {
author: "modbot",
authorUrl: "https://modbot.sh",
authorIcon: `/icons/modbot.png`,
allowMultiple: true,
name: "and",
category: "all",
friendlyName: "And",
checkType: "cast",
description: "Combine multiple rules together",
hidden: true,
invertable: false,
args: {},
},
or: {
author: "modbot",
authorUrl: "https://modbot.sh",
authorIcon: `/icons/modbot.png`,
allowMultiple: true,
name: "or",
category: "all",
friendlyName: "Or",
checkType: "cast",
hidden: true,
invertable: false,
description: "Combine multiple rules together",
args: {},
},
alwaysInclude: {
name: "alwaysInclude",
author: "modbot",
authorUrl: "https://modbot.sh",
authorIcon: `/icons/modbot.png`,
allowMultiple: false,
category: "inclusion",
friendlyName: "Anyone Can Join",
checkType: "cast",
description: "Anyone can join your channel.",
hidden: false,
invertable: false,
args: {},
},
manuallyApprove: {
name: "manuallyApprove",
author: "modbot",
authorUrl: "https://modbot.sh",
authorIcon: `/icons/modbot.png`,
allowMultiple: false,
category: "inclusion",
friendlyName: " Manually Approve",
checkType: "cast",
description: "Manually approve member requests in Activity tab",
hidden: false,
invertable: false,
args: {},
},
};