forked from DigitalPulseSoftware/NotaBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule_modo.lua
419 lines (349 loc) · 11.2 KB
/
module_modo.lua
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
-- Copyright (C) 2018 Jérôme Leclercq
-- This file is part of the "Not a Bot" application
-- For conditions of distribution and use, see copyright notice in LICENSE
local client = Client
local discordia = Discordia
local bot = Bot
local enums = discordia.enums
local bit = require("bit")
Module.Name = "modo"
function Module:GetConfigTable()
return {
{
Name = "Trigger",
Description = "Triggering emoji",
Type = bot.ConfigType.Emoji,
Default = "modo"
},
{
Name = "AlertChannel",
Description = "Channel where alerts will be posted",
Type = bot.ConfigType.Channel,
Default = ""
},
{
Array = true,
Name = "ImmunityRoles",
Description = "Roles immune to moderators reactions",
Type = bot.ConfigType.Role,
Default = {}
},
{
Name = "ModeratorPingThreshold",
Description = "How many moderation emoji reactions are required to trigger a moderator ping (0 to disable)",
Type = bot.ConfigType.Integer,
Default = 5
},
{
Name = "ModeratorRole",
Description = "Which role should be pinged when a message reach the moderator ping threshold",
Type = bot.ConfigType.Role,
Default = ""
},
{
Name = "MuteThreshold",
Description = "How many moderation emoji reactions are required to auto-mute the original poster (0 to disable)",
Type = bot.ConfigType.Integer,
Default = 10
},
{
Name = "MuteDuration",
Description = "Duration of auto-mute",
Type = bot.ConfigType.Duration,
Default = 10 * 60
},
{
Name = "MuteRole",
Description = "Auto-mute role to be applied (no need to configure its permissions)",
Type = bot.ConfigType.Role,
Default = ""
}
}
end
function Module:OnLoaded()
self.Clock = discordia.Clock()
self.Clock:on("min", function ()
local now = os.time()
self:ForEachGuild(function (guildId, config, data, persistentData)
local guild = client:getGuild(guildId)
if (guild) then
for userId,endTime in pairs(persistentData.MutedUsers) do
if (now >= endTime) then
self:Unmute(guild, userId)
end
end
end
end)
end)
return true
end
function Module:OnReady()
self.Clock:start()
end
function Module:OnEnable(guild)
local config = self:GetConfig(guild)
local mentionEmoji = bot:GetEmojiData(guild, config.Trigger)
if (not mentionEmoji) then
return false, "Emoji \"" .. config.Trigger .. "\" not found (check your configuration)"
end
local alertChannel = guild:getChannel(config.AlertChannel)
if (not alertChannel) then
return false, "Alert channel not found (check your configuration)"
end
local data = self:GetPersistentData(guild)
data.MutedUsers = data.MutedUsers or {}
data.ReportedMessages = data.ReportedMessages or {}
self:LogInfo(guild, "Checking mute role permission on all channels...")
if (config.MuteRole) then
for _, channel in pairs(guild.textChannels) do
self:CheckTextMutePermissions(channel)
end
for _, channel in pairs(guild.voiceChannels) do
self:CheckVoiceMutePermissions(channel)
end
else
self:LogWarning(guild, "No mute role has been set")
end
return true
end
function Module:OnUnload()
if (self.Clock) then
self.Clock:stop()
end
end
local DenyPermission = function (permissionOverwrite, permission)
if (bit.band(permissionOverwrite.deniedPermissions, permission) ~= permission and not permissionOverwrite:denyPermissions(permission)) then
client:warning("[%s] Failed to deny permissions on channel %s", permissionOverwrite.guild.name, permissionOverwrite.channel.name)
end
end
function Module:CheckTextMutePermissions(channel)
local config = self:GetConfig(channel.guild)
local mutedRole = channel.guild:getRole(config.MuteRole)
if (not mutedRole) then
self:LogError(channel.guild, "Invalid muted role")
return
end
local permissions = channel:getPermissionOverwriteFor(mutedRole)
assert(permissions)
DenyPermission(permissions, enums.permission.addReactions)
DenyPermission(permissions, enums.permission.sendMessages)
end
function Module:CheckVoiceMutePermissions(channel)
local config = self:GetConfig(channel.guild)
local mutedRole = channel.guild:getRole(config.MuteRole)
if (not mutedRole) then
self:LogError(channel.guild, "Invalid muted role")
return
end
local permissions = channel:getPermissionOverwriteFor(mutedRole)
assert(permissions)
DenyPermission(permissions, enums.permission.speak)
end
function Module:HandleEmojiAdd(userId, message)
if (message.author.bot) then
-- Ignore bot
return
end
local messageMember = message.member
if (not messageMember) then
-- Ignore PM
return
end
local guild = message.guild
local config = self:GetConfig(guild)
for _, roleId in pairs(config.ImmunityRoles) do
if (messageMember:hasRole(roleId)) then
return
end
end
local alertChannel = client:getChannel(config.AlertChannel)
assert(alertChannel)
local data = self:GetPersistentData(guild)
local reportedMessage = data.ReportedMessages[message.id]
if (reportedMessage) then
-- Check if user already reported this message
if (table.search(reportedMessage.ReporterIds, userId)) then
return
end
-- Update alert message embed
table.insert(reportedMessage.ReporterIds, userId)
local reporters = {}
for _,reporterId in pairs(reportedMessage.ReporterIds) do
local user = client:getUser(reporterId)
table.insert(reporters, user.mentionString)
end
reportedMessage.Embed.title = #reporters .. " users reported a message"
reportedMessage.Embed.fields[2].name = "Reporters"
reportedMessage.Embed.fields[2].value = table.concat(reporters, "\n")
local alertMessage = alertChannel:getMessage(reportedMessage.AlertMessageId)
if (alertMessage) then
alertMessage:setEmbed(reportedMessage.Embed)
end
local reporterCount = #reporters
if (config.MuteThreshold > 0 and reporterCount >= config.MuteThreshold and not reportedMessage.MuteApplied) then
-- Auto-mute
if (config.muteRole) then
local reportedUser = client:getUser(reportedMessage.ReportedUserId)
if (self:Mute(guild, reportedMessage.ReportedUserId)) then
local messageLink = alertMessage and bot:GenerateMessageLink(alertMessage) or "<error>"
local durationStr = util.FormatTime(config.MuteDuration, 2)
alertChannel:send(string.format("%s has been auto-muted for %s\n<%s>", reportedUser.mentionString, durationStr, messageLink))
message.channel:send(string.format("%s has been auto-muted for %s due to reporting", reportedUser.mentionString, durationStr, messageLink))
else
alertChannel:send(string.format("Failed to mute %s", reportedUser.mentionString))
end
end
reportedMessage.MuteApplied = true
end
if (config.ModeratorPingThreshold > 0 and reporterCount >= config.ModeratorPingThreshold and not reportedMessage.ModeratorPinged) then
-- Ping moderators
local moderatorRole = guild:getRole(config.ModeratorRole)
if (moderatorRole) then
alertChannel:send(string.format("A message has been reported %d times %s\n<%s>", reporterCount, moderatorRole.mentionString, alertMessage and bot:GenerateMessageLink(alertMessage) or "<error>"))
end
reportedMessage.ModeratorPinged = true
end
else
local reporterUser = client:getUser(userId)
local content = message.cleanContent
if (#content > 800) then
content = content:sub(1, 800) .. "...<truncated>"
end
local embedContent = {
title = "One user reported a message",
fields = {
{
name = "Reported user",
value = message.author.mentionString,
inline = true
},
{
name = "Reporter",
value = reporterUser.mentionString,
inline = true
},
{
name = "Message channel",
value = message.channel.mentionString
},
{
name = "Message content",
value = content or "<empty>"
},
{
name = "Message Link",
value = bot:GenerateMessageLink(message)
}
},
timestamp = discordia.Date():toISO('T', 'Z')
}
local alertMessage = alertChannel:send({
embed = embedContent
})
if (not alertMessage) then
self:LogError(message.guild, "Failed to post alert message (too long?) for %s", bot:GenerateMessageLink(message))
end
data.ReportedMessages[message.id] = {
AlertMessageId = alertMessage and alertMessage.id,
Embed = embedContent,
ReportedUserId = message.author.id,
ReporterIds = { userId }
}
end
end
function Module:HandleMessageRemove(channel, messageId)
local data = self:GetPersistentData(channel.guild)
local reportedMessage = data.ReportedMessages[messageId]
if (not reportedMessage) then
return
end
local config = self:GetConfig(channel.guild)
reportedMessage.Embed.fields[5].value = "<Message deleted>"
local alertChannel = client:getChannel(config.AlertChannel)
assert(alertChannel)
if (reportedMessage.AlertMessageId) then
local alertMessage = alertChannel:getMessage(reportedMessage.AlertMessageId)
if (alertMessage) then
alertMessage:setEmbed(reportedMessage.Embed)
end
end
end
function Module:Mute(guild, userId)
local config = self:GetConfig(guild)
local member = guild:getMember(userId)
if (member and member:addRole(config.MuteRole)) then
local data = self:GetPersistentData(guild)
data.MutedUsers[userId] = os.time() + config.MuteDuration
return true
end
return false
end
function Module:Unmute(guild, userId)
local config = self:GetConfig(guild)
local data = self:GetPersistentData(guild)
data.MutedUsers[userId] = nil
local member = guild:getMember(userId)
if (member) then
if (member:removeRole(config.MuteRole)) then
return true
else
self:LogError(guild, "Failed to unmute %s", member.fullname)
end
end
return false
end
function Module:OnChannelCreate(channel)
if (channel.type == enums.channelType.text) then
self:CheckTextMutePermissions(channel)
elseif (channel.type == enums.channelType.voice) then
self:CheckVoiceMutePermissions(channel)
end
end
function Module:OnReactionAdd(reaction, userId)
if (reaction.message.channel.type ~= enums.channelType.text) then
return
end
local guild = reaction.message.guild
local config = self:GetConfig(guild)
local emojiData = bot:GetEmojiData(guild, reaction.emojiId or reaction.emojiName)
if (not emojiData) then
self:LogWarning(guild, "Emoji %s was used but not found in guild", reaction.emojiName)
return
end
if (emojiData.Name ~= config.Trigger or (emojiData.Custom and emojiData.FromGuild ~= guild)) then
return
end
self:HandleEmojiAdd(userId, reaction.message)
end
function Module:OnReactionAddUncached(channel, messageId, reactionIdorName, userId)
if (channel.type ~= enums.channelType.text) then
return
end
local guild = channel.guild
local config = self:GetConfig(guild)
local emojiData = bot:GetEmojiData(guild, reactionIdorName)
if (not emojiData) then
self:LogWarning(guild, "Emoji %s was used but not found in guild", reactionIdorName)
return
end
if (emojiData.Name ~= config.Trigger or (emojiData.Custom and emojiData.FromGuild ~= guild)) then
return
end
local message = channel:getMessage(messageId)
if (not message) then
return
end
self:HandleEmojiAdd(userId, message)
end
function Module:OnMessageDelete(message)
if (message.channel.type ~= enums.channelType.text) then
return
end
self:HandleMessageRemove(message.channel, message.id)
end
function Module:OnMessageDeleteUncached(channel, messageId)
if (channel.type ~= enums.channelType.text) then
return
end
self:HandleMessageRemove(channel, messageId)
end