forked from jtgi/automod
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuser-follow.ts
162 lines (146 loc) · 4.67 KB
/
user-follow.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import { neynar } from "~/lib/neynar.server";
import { isFollowingChannel } from "~/lib/warpcast.server";
import { CheckFunction, CheckFunctionArgs, RuleDefinition, SelectOption } from "~/rules/rules.type";
export async function userFollowsChannel(args: CheckFunctionArgs) {
const { user, rule } = args;
const { channelSlug } = rule.args;
const follows = await isFollowingChannel({ channel: channelSlug, fid: user.fid });
return {
result: follows,
message: follows ? `User follows /${channelSlug}` : `User does not follow /${channelSlug}`,
};
}
export async function userFollowedBy(args: CheckFunctionArgs) {
const { user, rule } = args;
const { users } = rule.args as { users: SelectOption[] };
if (users.some((u) => u.value === user.fid)) {
return {
result: true,
message: "User implicitly followed by themselves",
};
}
const followingStatus = await neynar
.fetchBulkUsers(
users.map((u) => u.value),
{
viewerFid: user.fid,
}
)
.then((rsp) => rsp.users);
const isFollowing = followingStatus.find((f) => f.viewer_context?.followed_by);
return {
result: !!isFollowing,
message: isFollowing
? `@${user.username} is followed by @${isFollowing.username}`
: `@${user.username} is not followed by ${
users.length > 1 ? `any of ${users.map((u) => `@${u.label}`).join(", ")}` : `@${users[0].label}`
}`,
};
}
export async function userFollows(args: CheckFunctionArgs) {
const { user, rule } = args;
const { users } = rule.args as { users: SelectOption[] };
if (users.some((u) => u.value === user.fid)) {
return {
result: true,
message: "User implicitly follow themselves",
};
}
const followingStatus = await neynar
.fetchBulkUsers(
users.map((u) => u.value),
{
viewerFid: user.fid,
}
)
.catch((err) => {
console.error(err);
return Promise.reject(err);
})
.then((rsp) => rsp.users);
const isFollowing = followingStatus.find((f) => f.viewer_context?.following);
return {
result: !!isFollowing,
message: isFollowing
? `@${user.username} follows @${isFollowing.username}`
: `@${user.username} does not follow ${
users.length > 1 ? `any of ${users.map((u) => `@${u.label}`).join(", ")}` : `@${users[0].label}`
}`,
};
}
type RuleName = "userDoesNotFollow" | "userIsNotFollowedBy";
export const userFollowRulesFunction: Record<RuleName, CheckFunction> = {
userDoesNotFollow: userFollows,
userIsNotFollowedBy: userFollowedBy,
};
export const userFollowRulesDefinitions: Record<RuleName, RuleDefinition> = {
// userFollowsChannel: {
// name: "userFollowsChannel",
// author: "modbot",
// authorUrl: "https://modbot.sh",
// authorIcon: `/icons/modbot.png`,
// allowMultiple: true,
// category: "all",
// friendlyName: "Follows Channel",
// checkType: "user",
// hidden: false,
// invertable: false,
// description: "Check if the user follows a channel",
// args: {
// channelSlug: {
// type: "string",
// friendlyName: "Channel ID",
// placeholder: "dont-do-this",
// required: true,
// pattern: "/^[a-zA-Z0-9-]+$/",
// description: "The id of the channel to check",
// },
// },
// },
userDoesNotFollow: {
name: "userDoesNotFollow",
author: "modbot",
authorUrl: "https://modbot.sh",
authorIcon: `/icons/modbot.png`,
allowMultiple: true,
category: "all",
friendlyName: "Following",
checkType: "user",
description: "Check if the user follows certain accounts",
hidden: false,
invertable: false,
args: {
users: {
type: "farcasterUserPickerMulti",
required: true,
friendlyName: "Farcaster Usernames",
placeholder: "Enter a username...",
description:
"Example: If you enter jtgi and riotgoools, it will check that the user follows either jtgi or riotgools.",
},
},
},
userIsNotFollowedBy: {
name: "userIsNotFollowedBy",
author: "modbot",
authorUrl: "https://modbot.sh",
authorIcon: `/icons/modbot.png`,
allowMultiple: true,
category: "all",
friendlyName: "Followed By",
checkType: "user",
description: "Check if the user is followed by certain accounts",
hidden: false,
invertable: true,
args: {
users: {
type: "farcasterUserPickerMulti",
required: true,
friendlyName: "Usernames",
placeholder: "Enter a username...",
description:
"Example: If you enter jtgi and riotgoools, it will check that either jtgi or riotgools follow the user requesting an invite.",
},
},
},
};