-
Notifications
You must be signed in to change notification settings - Fork 947
/
Copy pathrules.go
443 lines (340 loc) · 9.53 KB
/
rules.go
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
package automod_legacy
import (
"fmt"
"net/url"
"strconv"
"strings"
"time"
"github.com/jonas747/discordgo/v2"
"github.com/jonas747/dstate/v4"
"github.com/jonas747/yagpdb/bot"
"github.com/jonas747/yagpdb/common"
"github.com/jonas747/yagpdb/safebrowsing"
"github.com/mediocregopher/radix/v3"
)
var forwardSlashReplacer = strings.NewReplacer("\\", "")
type Punishment int
const (
PunishNone Punishment = iota
PunishMute
PunishKick
PunishBan
)
type Rule interface {
Check(m *discordgo.Message, cs *dstate.ChannelState) (del bool, punishment Punishment, msg string, err error)
ShouldIgnore(msg *discordgo.Message, m *dstate.MemberState) bool
GetMuteDuration() int
}
type BaseRule struct {
Enabled bool
// Name string
ViolationsExpire int `valid:"0,44640"`
// Execute these punishments after certain number of repeated violaions
MuteAfter int `valid:"0,1000"`
MuteDuration int `valid:"0,44640"`
KickAfter int `valid:"0,1000"`
BanAfter int `valid:"0,1000"`
IgnoreRole string `valid:"role,true"`
IgnoreChannels []string `valid:"channel,false"`
}
func (r BaseRule) GetMuteDuration() int {
return r.MuteDuration
}
func (r BaseRule) IgnoreRoleInt() int64 {
ir, _ := strconv.ParseInt(r.IgnoreRole, 10, 64)
return ir
}
func (r BaseRule) IgnoreChannelsParsed() []int64 {
result := make([]int64, 0, len(r.IgnoreChannels))
for _, str := range r.IgnoreChannels {
parsed, err := strconv.ParseInt(str, 10, 64)
if err == nil && parsed != 0 {
result = append(result, parsed)
}
}
return result
}
func (r BaseRule) PushViolation(key string) (p Punishment, err error) {
violations := 0
err = common.RedisPool.Do(radix.Cmd(&violations, "INCR", key))
if err != nil {
return
}
common.RedisPool.Do(radix.FlatCmd(nil, "EXPIRE", key, r.ViolationsExpire))
mute := r.MuteAfter > 0 && violations >= r.MuteAfter
kick := r.KickAfter > 0 && violations >= r.KickAfter
ban := r.BanAfter > 0 && violations >= r.BanAfter
if ban {
p = PunishBan
} else if kick {
p = PunishKick
} else if mute {
p = PunishMute
}
return
}
// Returns true if this rule should be ignored
func (r BaseRule) ShouldIgnore(evt *discordgo.Message, ms *dstate.MemberState) bool {
if !r.Enabled {
return true
}
strC := discordgo.StrID(evt.ChannelID)
for _, ignoreChannel := range r.IgnoreChannels {
if ignoreChannel == strC {
return true
}
}
for _, role := range ms.Member.Roles {
if r.IgnoreRoleInt() == role {
return true
}
}
return false
}
type SpamRule struct {
BaseRule `valid:"traverse"`
NumMessages int `valid:"0,1000"`
Within int `valid:"0,100"`
}
// Triggers when a certain number of messages is found by the same author within a timeframe
func (s *SpamRule) Check(evt *discordgo.Message, cs *dstate.ChannelState) (del bool, punishment Punishment, msg string, err error) {
if !s.FindSpam(evt, cs) {
return
}
del = true
punishment, err = s.PushViolation(KeyViolations(cs.GuildID, evt.Author.ID, "spam"))
if err != nil {
return
}
msg = "Sending messages too fast."
return
}
func (s *SpamRule) FindSpam(evt *discordgo.Message, cs *dstate.ChannelState) bool {
within := time.Duration(s.Within) * time.Second
now := time.Now()
amount := 1
messages := bot.State.GetMessages(cs.GuildID, cs.ID, &dstate.MessagesQuery{
Limit: 1000,
})
for _, v := range messages {
age := now.Sub(v.ParsedCreatedAt)
if age > within {
break
}
if v.Author.ID == evt.Author.ID && evt.ID != v.ID {
amount++
}
}
return amount >= s.NumMessages && s.NumMessages != 1
}
type InviteRule struct {
BaseRule `valid:"traverse"`
}
func (i *InviteRule) Check(evt *discordgo.Message, cs *dstate.ChannelState) (del bool, punishment Punishment, msg string, err error) {
if !CheckMessageForBadInvites(evt.ContentWithMentionsReplaced(), cs.GuildID) {
return
}
del = true
punishment, err = i.PushViolation(KeyViolations(cs.GuildID, evt.Author.ID, "invite"))
if err != nil {
return
}
msg = "Sending server invites to another server."
return
}
func CheckMessageForBadInvites(msg string, guildID int64) (containsBadInvites bool) {
// check third party sites
if common.ContainsInvite(msg, false, true) != nil {
return true
}
matches := common.DiscordInviteSource.Regex.FindAllStringSubmatch(msg, -1)
if len(matches) < 1 {
return false
}
// Only check each invite id once
checked := make([]string, 0)
OUTER:
for _, v := range matches {
if len(v) < 3 {
continue
}
id := v[2]
// only check each link once
for _, c := range checked {
if id == c {
continue OUTER
}
}
checked = append(checked, id)
// Check to see if its a valid id, and if so check if its to the same server were on
invite, err := common.BotSession.Invite(id)
if err != nil {
logger.WithError(err).WithField("guild", guildID).Error("Failed checking invite ", invite)
return true // assume bad since discord...
}
if invite == nil || invite.Guild == nil {
continue
}
// Ignore invites to this server
if invite.Guild.ID == guildID {
continue
}
return true
}
// If we got here then there's no bad invites
return false
}
type MentionRule struct {
BaseRule `valid:"traverse"`
Treshold int `valid:"0,500"`
}
func (m *MentionRule) Check(evt *discordgo.Message, cs *dstate.ChannelState) (del bool, punishment Punishment, msg string, err error) {
if len(evt.Mentions) < m.Treshold {
return
}
del = true
punishment, err = m.PushViolation(KeyViolations(cs.GuildID, evt.Author.ID, "mention"))
if err != nil {
return
}
msg = "Sending too many mentions."
return
}
type LinksRule struct {
BaseRule `valid:"traverse"`
}
func (l *LinksRule) Check(evt *discordgo.Message, cs *dstate.ChannelState) (del bool, punishment Punishment, msg string, err error) {
if !common.LinkRegex.MatchString(forwardSlashReplacer.Replace(evt.Content)) {
return
}
del = true
punishment, err = l.PushViolation(KeyViolations(cs.GuildID, evt.Author.ID, "links"))
if err != nil {
return
}
msg = "You do not have permission to send links"
return
}
type WordsRule struct {
BaseRule `valid:"traverse"`
BuiltinSwearWords bool
BannedWords string `valid:",25000"`
compiledWords map[string]bool `json:"-"`
}
func (w *WordsRule) GetCompiled() map[string]bool {
if w.compiledWords != nil {
return w.compiledWords
}
w.compiledWords = make(map[string]bool)
fields := strings.Fields(w.BannedWords)
for _, word := range fields {
w.compiledWords[strings.ToLower(word)] = true
}
return w.compiledWords
}
func (w *WordsRule) Check(evt *discordgo.Message, cs *dstate.ChannelState) (del bool, punishment Punishment, msg string, err error) {
word := w.CheckMessage(evt.Content)
if word == "" {
return
}
// Fonud a bad word!
del = true
punishment, err = w.PushViolation(KeyViolations(cs.GuildID, evt.Author.ID, "badword"))
msg = fmt.Sprintf("The word `%s` is banned, watch your language.", word)
return
}
func (w *WordsRule) CheckMessage(content string) (word string) {
userBanned := w.GetCompiled()
lower := strings.ToLower(content)
messageWords := strings.Fields(lower)
for _, v := range messageWords {
if _, ok := userBanned[v]; ok {
return v
}
if w.BuiltinSwearWords {
if _, ok := BuiltinSwearWords[v]; ok {
return v
}
}
}
return ""
}
type SitesRule struct {
BaseRule `valid:"traverse"`
BuiltinBadSites bool
GoogleSafeBrowsingEnabled bool
BannedWebsites string `valid:",10000"`
compiledWebsites []string
}
func (w *SitesRule) GetCompiled() []string {
if w.compiledWebsites != nil {
return w.compiledWebsites
}
fields := strings.Fields(w.BannedWebsites)
w.compiledWebsites = make([]string, len(fields))
for i, field := range fields {
w.compiledWebsites[i] = strings.ToLower(field)
}
return w.compiledWebsites
}
func (s *SitesRule) Check(evt *discordgo.Message, cs *dstate.ChannelState) (del bool, punishment Punishment, msg string, err error) {
banned, item, threatList := s.checkMessage(forwardSlashReplacer.Replace(evt.Content))
if !banned {
return
}
punishment, err = s.PushViolation(KeyViolations(cs.GuildID, evt.Author.ID, "badlink"))
extraInfo := ""
if threatList != "" {
extraInfo = "(sb: " + threatList + ")"
}
msg = fmt.Sprintf("The website `%s` is banned %s", item, extraInfo)
del = true
return
}
func (s *SitesRule) checkMessage(message string) (banned bool, item string, threatList string) {
matches := common.LinkRegex.FindAllString(message, -1)
for _, v := range matches {
if !strings.HasPrefix(v, "http://") && !strings.HasPrefix(v, "https://") && !strings.HasPrefix(v, "steam://") {
v = "http://" + v
}
parsed, err := url.ParseRequestURI(v)
if err != nil {
logger.WithError(err).WithField("url", v).Error("Failed parsing request url matched with regex")
} else {
if banned, item := s.isBanned(parsed.Host); banned {
return true, item, ""
}
}
}
// Check safebrowsing
if !s.GoogleSafeBrowsingEnabled {
return false, "", ""
}
threat, err := safebrowsing.CheckString(message)
if err != nil {
logger.WithError(err).Error("Failed checking urls against google safebrowser")
return false, "", ""
}
if threat != nil {
return true, threat.Pattern, threat.ThreatType.String()
}
return false, "", ""
}
func (s *SitesRule) isBanned(host string) (bool, string) {
if index := strings.Index(host, ":"); index > -1 {
host = host[:index]
}
host = strings.ToLower(host)
for _, v := range s.compiledWebsites {
if s.matchesItem(v, host) {
return true, v
}
}
return false, ""
}
func (s *SitesRule) matchesItem(filter, str string) bool {
if strings.HasSuffix(str, "."+filter) {
return true
}
return str == filter
}