-
Notifications
You must be signed in to change notification settings - Fork 927
/
reddit.go
111 lines (88 loc) · 2.76 KB
/
reddit.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
package reddit
//go:generate sqlboiler psql
import (
"context"
"strconv"
"strings"
"sync"
"github.com/botlabs-gg/yagpdb/v2/common"
"github.com/botlabs-gg/yagpdb/v2/common/mqueue"
"github.com/botlabs-gg/yagpdb/v2/common/pubsub"
"github.com/botlabs-gg/yagpdb/v2/lib/go-reddit"
"github.com/botlabs-gg/yagpdb/v2/premium"
"github.com/botlabs-gg/yagpdb/v2/reddit/models"
)
const (
FilterNSFWNone = 0 // allow both nsfw and non nsfw content
FilterNSFWIgnore = 1 // only allow non-nsfw content
FilterNSFWRequire = 2 // only allow nsfw content
)
var logger = common.GetPluginLogger(&Plugin{})
type Plugin struct {
stopFeedChan chan *sync.WaitGroup
redditClient *reddit.Client
}
func (p *Plugin) PluginInfo() *common.PluginInfo {
return &common.PluginInfo{
Name: "Reddit",
SysName: "reddit",
Category: common.PluginCategoryFeeds,
}
}
var _ mqueue.PluginWithSourceDisabler = (*Plugin)(nil)
// Remove feeds if they don't point to a proper channel
func (p *Plugin) DisableFeed(elem *mqueue.QueuedElement, err error) {
if strings.Contains(elem.SourceItemID, ":") {
// legacy format leftover, ignore...
return
}
feedID, err := strconv.ParseInt(elem.SourceItemID, 10, 64)
if err != nil {
logger.WithError(err).WithField("source_id", elem.SourceItemID).Error("failed parsing sourceID!??!")
return
}
_, err = models.RedditFeeds(models.RedditFeedWhere.ID.EQ(feedID)).UpdateAllG(context.Background(), models.M{"disabled": true})
if err != nil {
logger.WithError(err).WithField("feed_id", feedID).Error("failed removing reddit feed")
}
}
var _ mqueue.PluginWithWebhookAvatar = (*Plugin)(nil)
func (p *Plugin) WebhookAvatar() string {
return RedditLogoPNGB64
}
func RegisterPlugin() {
common.InitSchemas("reddit", DBSchemas...)
plugin := &Plugin{
stopFeedChan: make(chan *sync.WaitGroup),
}
if confClientID.GetString() == "" || confClientSecret.GetString() == "" || confRefreshToken.GetString() == "" {
logger.Warn("Missing reddit config, not enabling plugin")
return
}
plugin.redditClient = setupClient()
common.RegisterPlugin(plugin)
mqueue.RegisterSource("reddit", plugin)
pubsub.AddHandler("reddit_clear_subreddit_cache", func(evt *pubsub.Event) {
dataCast := evt.Data.(*PubSubSubredditEventData)
if dataCast.Slow {
configCache.Delete(KeySlowFeeds(strings.ToLower(dataCast.Subreddit)))
} else {
configCache.Delete(KeyFastFeeds(strings.ToLower(dataCast.Subreddit)))
}
}, PubSubSubredditEventData{})
}
type PubSubSubredditEventData struct {
Subreddit string `json:"subreddit"`
Slow bool `json:"slow"`
}
const (
// Max feeds per guild
GuildMaxFeedsNormal = 100
GuildMaxFeedsPremium = 1000
)
func MaxFeedForCtx(ctx context.Context) int {
if premium.ContextPremium(ctx) {
return GuildMaxFeedsPremium
}
return GuildMaxFeedsNormal
}