forked from botlabs-gg/yagpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.go
79 lines (65 loc) · 1.68 KB
/
bot.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
package reddit
import (
"context"
"github.com/jonas747/yagpdb/bot"
"github.com/jonas747/yagpdb/common"
"github.com/jonas747/yagpdb/reddit/models"
"github.com/pkg/errors"
)
var _ bot.RemoveGuildHandler = (*Plugin)(nil)
func (p *Plugin) RemoveGuild(g int64) error {
_, err := models.RedditFeeds(models.RedditFeedWhere.GuildID.EQ(g)).DeleteAll(context.Background(), common.PQ)
if err != nil {
return errors.Wrap(err, "failed removing reddit feeds")
}
return nil
}
// func (p *Plugin) Status() (string, string) {
// subs := 0
// channels := 0
// cursor := "0"
// common.
// for {
// reply := client.Cmd("SCAN", cursor, "MATCH", "global_subreddit_watch:*")
// if reply.Err != nil {
// logrus.WithError(reply.Err).Error("Error scanning")
// break
// }
// elems, err := reply.Array()
// if err != nil {
// logrus.WithError(err).Error("Error reading reply")
// break
// }
// if len(elems) < 2 {
// logrus.Error("Invalid scan")
// break
// }
// newCursor, err := elems[0].Str()
// if err != nil {
// logrus.WithError(err).Error("Failed retrieving new cursor")
// break
// }
// cursor = newCursor
// list, err := elems[1].List()
// if err != nil {
// logrus.WithError(err).Error("Failed retrieving list")
// break
// }
// for _, key := range list {
// config, err := GetConfig(key)
// if err != nil {
// logrus.WithError(err).Error("Failed reading global config")
// continue
// }
// if len(config) < 1 {
// continue
// }
// subs++
// channels += len(config)
// }
// if cursor == "" || cursor == "0" {
// break
// }
// }
// return "Subs/Channels", fmt.Sprintf("%d/%d", subs, channels)
// }