forked from botlabs-gg/yagpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
effects.go
666 lines (524 loc) · 15.5 KB
/
effects.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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
package automod
import (
"context"
"time"
"github.com/jonas747/dstate"
"github.com/jonas747/yagpdb/automod/models"
"github.com/jonas747/yagpdb/bot"
"github.com/jonas747/yagpdb/common"
"github.com/jonas747/yagpdb/common/scheduledevents2"
"github.com/jonas747/yagpdb/moderation"
"github.com/volatiletech/null"
"github.com/volatiletech/sqlboiler/boil"
"github.com/volatiletech/sqlboiler/queries/qm"
)
type Effect interface {
Apply(ctxData *TriggeredRuleData, settings interface{}) error
}
///////////////////////////////////////////////////////
type DeleteMessageEffect struct{}
func (del *DeleteMessageEffect) Kind() RulePartType {
return RulePartEffect
}
func (del *DeleteMessageEffect) DataType() interface{} {
return nil
}
func (del *DeleteMessageEffect) Name() (name string) {
return "Delete Message"
}
func (del *DeleteMessageEffect) Description() (description string) {
return "Deletes the message"
}
func (del *DeleteMessageEffect) UserSettings() []*SettingDef {
return []*SettingDef{}
}
func (del *DeleteMessageEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
if ctxData.Message == nil {
return nil // no message to delete
}
go func(cID int64, messages []int64) {
// deleting messages too fast can sometimes make them still show in the discord client even after deleted
time.Sleep(500 * time.Millisecond)
bot.MessageDeleteQueue.DeleteMessages(cID, messages...)
}(ctxData.Message.ChannelID, []int64{ctxData.Message.ID})
return nil
}
func (del *DeleteMessageEffect) MergeDuplicates(data []interface{}) interface{} {
return nil // no user data
}
///////////////////////////////////////////////////////
type DeleteMessagesEffectData struct {
NumMessages int
TimeLimit int
}
type DeleteMessagesEffect struct{}
func (del *DeleteMessagesEffect) Kind() RulePartType {
return RulePartEffect
}
func (del *DeleteMessagesEffect) DataType() interface{} {
return &DeleteMessagesEffectData{}
}
func (del *DeleteMessagesEffect) Name() (name string) {
return "Delete mutliple messages"
}
func (del *DeleteMessagesEffect) Description() (description string) {
return "Deletes a certain number of the users last messages in this channel"
}
func (del *DeleteMessagesEffect) UserSettings() []*SettingDef {
return []*SettingDef{
&SettingDef{
Name: "Number of messages",
Key: "NumMessages",
Kind: SettingTypeInt,
Min: 1,
Max: 100,
Default: 3,
},
&SettingDef{
Name: "Max age (seconds)",
Key: "TimeLimit",
Kind: SettingTypeInt,
Min: 1,
Max: 1000000,
Default: 15,
},
}
}
func (del *DeleteMessagesEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
settingsCast := settings.(*DeleteMessagesEffectData)
timeLimit := time.Now().Add(-time.Second * time.Duration(settingsCast.TimeLimit))
ctxData.GS.RLock()
defer ctxData.GS.RUnlock()
var channel *dstate.ChannelState
if ctxData.CS != nil {
channel = ctxData.CS
} else {
// no channel in context, attempt to find the last channel the user spoke in
var lastMessage *dstate.MessageState
for _, c := range ctxData.GS.Channels {
for i := len(c.Messages) - 1; i >= 0; i-- {
cMsg := c.Messages[i]
if settingsCast.TimeLimit > 0 && timeLimit.After(cMsg.ParsedCreated) {
break
}
if lastMessage != nil && lastMessage.ParsedCreated.After(cMsg.ParsedCreated) {
break
}
if cMsg.Author.ID == ctxData.MS.ID {
channel = c
lastMessage = cMsg
break
}
}
}
}
if channel == nil {
return nil
}
messages := make([]int64, 0, 100)
for i := len(channel.Messages) - 1; i >= 0; i-- {
cMsg := channel.Messages[i]
if settingsCast.TimeLimit > 0 && timeLimit.After(cMsg.ParsedCreated) {
break
}
if cMsg.Author.ID != ctxData.MS.ID {
continue
}
messages = append(messages, cMsg.ID)
if len(messages) >= 100 || len(messages) >= settingsCast.NumMessages {
break
}
}
if len(messages) < 0 {
return nil
}
go func(cID int64, messages []int64) {
// deleting messages too fast can sometimes make them still show in the discord client even after deleted
time.Sleep(500 * time.Millisecond)
bot.MessageDeleteQueue.DeleteMessages(cID, messages...)
}(channel.ID, messages)
return nil
}
func (del *DeleteMessagesEffect) MergeDuplicates(data []interface{}) interface{} {
return data[0]
}
///////////////////////////////////////////////////////
type AddViolationEffect struct{}
type AddViolationEffectData struct {
Name string `valid:",1,100,trimspace"`
}
func (vio *AddViolationEffect) Kind() RulePartType {
return RulePartEffect
}
func (vio *AddViolationEffect) DataType() interface{} {
return &AddViolationEffectData{}
}
func (vio *AddViolationEffect) Name() (name string) {
return "+Violation"
}
func (vio *AddViolationEffect) Description() (description string) {
return "Adds a violation (use with violation tirggers)"
}
func (vio *AddViolationEffect) UserSettings() []*SettingDef {
return []*SettingDef{
&SettingDef{
Name: "Name",
Key: "Name",
Kind: SettingTypeString,
Min: 1,
Max: 50,
Default: "violation name",
},
}
}
func (vio *AddViolationEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
settingsCast := settings.(*AddViolationEffectData)
violation := &models.AutomodViolation{
GuildID: ctxData.GS.ID,
UserID: ctxData.MS.ID,
RuleID: null.Int64From(ctxData.CurrentRule.Model.ID),
Name: settingsCast.Name,
}
err := violation.InsertG(context.Background(), boil.Infer())
if err != nil {
return err
}
newData := ctxData.Clone()
newData.PreviousReasons = append(newData.PreviousReasons, ctxData.ConstructReason(false))
newData.RecursionCounter++
go ctxData.Plugin.checkViolationTriggers(newData, settingsCast.Name)
logger.Debug("Added violation to ", settingsCast.Name)
return err
}
///////////////////////////////////////////////////////
type KickUserEffect struct{}
type KickUserEffectData struct {
CustomReason string `valid:",0,150,trimspace"`
}
func (kick *KickUserEffect) Kind() RulePartType {
return RulePartEffect
}
func (kick *KickUserEffect) DataType() interface{} {
return &KickUserEffectData{}
}
func (kick *KickUserEffect) Name() (name string) {
return "Kick user"
}
func (kick *KickUserEffect) Description() (description string) {
return "Kicks the user"
}
func (kick *KickUserEffect) UserSettings() []*SettingDef {
return []*SettingDef{
&SettingDef{
Name: "Custom message (empty for default)",
Key: "CustomReason",
Min: 0,
Max: 150,
Kind: SettingTypeString,
},
}
}
func (kick *KickUserEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
settingsCast := settings.(*KickUserEffectData)
var cID int64
if ctxData.CS != nil {
cID = ctxData.CS.ID
}
reason := "Automoderator:\n"
if settingsCast.CustomReason != "" {
reason += settingsCast.CustomReason
} else {
reason += ctxData.ConstructReason(true)
}
err := moderation.KickUser(nil, ctxData.GS.ID, cID, common.BotUser, reason, ctxData.MS.DGoUser())
return err
}
func (kick *KickUserEffect) MergeDuplicates(data []interface{}) interface{} {
return data[0]
}
///////////////////////////////////////////////////////
type BanUserEffect struct{}
type BanUserEffectData struct {
Duration int
CustomReason string `valid:",0,150,trimspace"`
}
func (ban *BanUserEffect) Kind() RulePartType {
return RulePartEffect
}
func (ban *BanUserEffect) DataType() interface{} {
return &BanUserEffectData{}
}
func (ban *BanUserEffect) Name() (name string) {
return "Ban user"
}
func (ban *BanUserEffect) Description() (description string) {
return "Bans the user"
}
func (ban *BanUserEffect) UserSettings() []*SettingDef {
return []*SettingDef{
&SettingDef{
Name: "Duration (minutes, 0 for permanent)",
Key: "Duration",
Kind: SettingTypeInt,
Default: 0,
},
&SettingDef{
Name: "Custom message (empty for default)",
Key: "CustomReason",
Min: 0,
Max: 150,
Kind: SettingTypeString,
},
}
}
func (ban *BanUserEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
settingsCast := settings.(*BanUserEffectData)
var cID int64
if ctxData.CS != nil {
cID = ctxData.CS.ID
}
reason := "Automoderator:\n"
if settingsCast.CustomReason != "" {
reason += settingsCast.CustomReason
} else {
reason += ctxData.ConstructReason(true)
}
duration := time.Duration(settingsCast.Duration) * time.Minute
err := moderation.BanUserWithDuration(nil, ctxData.GS.ID, cID, common.BotUser, reason, ctxData.MS.DGoUser(), duration)
return err
}
func (ban *BanUserEffect) MergeDuplicates(data []interface{}) interface{} {
return data[0]
}
///////////////////////////////////////////////////////
type MuteUserEffect struct{}
type MuteUserEffectData struct {
Duration int
CustomReason string `valid:",0,150,trimspace"`
}
func (mute *MuteUserEffect) Kind() RulePartType {
return RulePartEffect
}
func (mute *MuteUserEffect) DataType() interface{} {
return &MuteUserEffectData{}
}
func (mute *MuteUserEffect) UserSettings() []*SettingDef {
return []*SettingDef{
&SettingDef{
Name: "Duration (minutes)",
Key: "Duration",
Min: 1,
Max: 10080, // 7 days
Kind: SettingTypeInt,
Default: 10,
},
&SettingDef{
Name: "Custom message (empty for default)",
Key: "CustomReason",
Min: 0,
Max: 150,
Kind: SettingTypeString,
},
}
}
func (mute *MuteUserEffect) Name() (name string) {
return "Mute user"
}
func (mute *MuteUserEffect) Description() (description string) {
return "Mutes the user"
}
func (mute *MuteUserEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
settingsCast := settings.(*MuteUserEffectData)
var cID int64
if ctxData.CS != nil {
cID = ctxData.CS.ID
}
reason := "Automoderator:\n"
if settingsCast.CustomReason != "" {
reason += settingsCast.CustomReason
} else {
reason += ctxData.ConstructReason(true)
}
err := moderation.MuteUnmuteUser(nil, true, ctxData.GS.ID, cID, common.BotUser, reason, ctxData.MS, settingsCast.Duration)
return err
}
func (mute *MuteUserEffect) MergeDuplicates(data []interface{}) interface{} {
return data[0]
}
///////////////////////////////////////////////////////
type WarnUserEffect struct{}
type WarnUserEffectData struct {
CustomReason string `valid:",0,150,trimspace"`
}
func (warn *WarnUserEffect) Kind() RulePartType {
return RulePartEffect
}
func (warn *WarnUserEffect) DataType() interface{} {
return &WarnUserEffectData{}
}
func (warn *WarnUserEffect) UserSettings() []*SettingDef {
return []*SettingDef{
&SettingDef{
Name: "Custom message (empty for default)",
Key: "CustomReason",
Min: 0,
Max: 150,
Kind: SettingTypeString,
},
}
}
func (warn *WarnUserEffect) Name() (name string) {
return "Warn user"
}
func (warn *WarnUserEffect) Description() (description string) {
return "Warns the user, with an optional custom warning message"
}
func (warn *WarnUserEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
settingsCast := settings.(*WarnUserEffectData)
var cID int64
if ctxData.CS != nil {
cID = ctxData.CS.ID
}
reason := "Automoderator:\n"
if settingsCast.CustomReason != "" {
reason += settingsCast.CustomReason
} else {
reason += ctxData.ConstructReason(true)
}
err := moderation.WarnUser(nil, ctxData.GS.ID, cID, common.BotUser, ctxData.MS.DGoUser(), reason)
return err
}
func (warn *WarnUserEffect) MergeDuplicates(data []interface{}) interface{} {
return nil // no user data
}
/////////////////////////////////////////////////////////////
type SetNicknameEffect struct{}
type SetNicknameEffectData struct {
NewName string `valid:",0,32,trimspace"`
}
func (sn *SetNicknameEffect) Kind() RulePartType {
return RulePartEffect
}
func (sn *SetNicknameEffect) DataType() interface{} {
return &SetNicknameEffectData{}
}
func (sn *SetNicknameEffect) UserSettings() []*SettingDef {
return []*SettingDef{
&SettingDef{
Name: "New Nickname (empty for removal)",
Key: "NewName",
Min: 0,
Max: 32,
Kind: SettingTypeString,
},
}
}
func (sn *SetNicknameEffect) Name() (name string) {
return "Set Nickname"
}
func (sn *SetNicknameEffect) Description() (description string) {
return "Sets the nickname of the user"
}
func (sn *SetNicknameEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
settingsCast := settings.(*SetNicknameEffectData)
curNick := ""
ctxData.GS.RLock()
curNick = ctxData.MS.Nick
ctxData.GS.RUnlock()
if curNick == settingsCast.NewName {
// Avoid infinite recursion
return nil
}
logger.WithField("guild", ctxData.GS.ID).Info("set nickname: ", settingsCast.NewName)
err := common.BotSession.GuildMemberNickname(ctxData.GS.ID, ctxData.MS.ID, settingsCast.NewName)
return err
}
func (sn *SetNicknameEffect) MergeDuplicates(data []interface{}) interface{} {
return data[0]
}
/////////////////////////////////////////////////////////////
type ResetViolationsEffect struct{}
type ResetViolationsEffectData struct {
Name string `valid:",0,50,trimspace"`
}
func (rv *ResetViolationsEffect) Kind() RulePartType {
return RulePartEffect
}
func (rv *ResetViolationsEffect) DataType() interface{} {
return &ResetViolationsEffectData{}
}
func (rv *ResetViolationsEffect) UserSettings() []*SettingDef {
return []*SettingDef{
&SettingDef{
Name: "Name",
Key: "Name",
Default: "name",
Min: 0,
Max: 50,
Kind: SettingTypeString,
},
}
}
func (rv *ResetViolationsEffect) Name() (name string) {
return "Reset violations"
}
func (rv *ResetViolationsEffect) Description() (description string) {
return "Resets the violations of a user"
}
func (rv *ResetViolationsEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
settingsCast := settings.(*ResetViolationsEffectData)
_, err := models.AutomodViolations(qm.Where("guild_id = ? AND user_id = ? AND name = ?", ctxData.GS.ID, ctxData.MS.ID, settingsCast.Name)).DeleteAll(context.Background(), common.PQ)
return err
}
/////////////////////////////////////////////////////////////
type GiveRoleEffect struct{}
type GiveRoleEffectData struct {
Duration int `valid:",0,604800,trimspace"`
Role int64
}
func (gr *GiveRoleEffect) Kind() RulePartType {
return RulePartEffect
}
func (gf *GiveRoleEffect) DataType() interface{} {
return &GiveRoleEffectData{}
}
func (gf *GiveRoleEffect) UserSettings() []*SettingDef {
return []*SettingDef{
&SettingDef{
Name: "Duration in seconds, 0 for permanent",
Key: "Duration",
Default: 0,
Min: 0,
Max: 604800,
Kind: SettingTypeInt,
},
&SettingDef{
Name: "Role",
Key: "Role",
Kind: SettingTypeRole,
},
}
}
func (gf *GiveRoleEffect) Name() (name string) {
return "Give role"
}
func (gf *GiveRoleEffect) Description() (description string) {
return "Gives the specified role to the user, optionally with a duration after which the role is removed from the user."
}
func (gf *GiveRoleEffect) Apply(ctxData *TriggeredRuleData, settings interface{}) error {
settingsCast := settings.(*GiveRoleEffectData)
err := common.AddRoleDS(ctxData.MS, settingsCast.Role)
if err != nil {
if code, _ := common.DiscordError(err); code != 0 {
return nil // discord responded with a proper error, we know that shit didn't happen
}
// discord was not the cause of the error, in some cases even if the gateway times out the action is performed so just in case, scehdule the role removal
}
if settingsCast.Duration > 0 {
err := scheduledevents2.ScheduleRemoveRole(context.Background(), ctxData.GS.ID, ctxData.MS.ID, settingsCast.Role, time.Now().Add(time.Second*time.Duration(settingsCast.Duration)))
if err != nil {
return err
}
}
return nil
}