forked from botlabs-gg/yagpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
140 lines (112 loc) · 2.81 KB
/
util.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
package bot
import (
"context"
"errors"
"github.com/bwmarrin/snowflake"
"github.com/jonas747/discordgo"
"github.com/jonas747/yagpdb/common"
"github.com/patrickmn/go-cache"
"strings"
"sync"
"time"
)
var (
Cache = cache.New(time.Minute, time.Minute)
currentStatus = "v" + common.VERSION + " :)"
currentStreamingURL = ""
currentPresenceLock sync.Mutex
)
func init() {
// Discord epoch
snowflake.Epoch = 1420070400000
}
func ContextSession(ctx context.Context) *discordgo.Session {
return ctx.Value(common.ContextKeyDiscordSession).(*discordgo.Session)
}
func SendDM(user int64, msg string) error {
if strings.TrimSpace(msg) == "" {
return nil
}
channel, err := common.BotSession.UserChannelCreate(user)
if err != nil {
return err
}
_, err = common.BotSession.ChannelMessageSend(channel.ID, msg)
return err
}
func SendDMEmbed(user int64, embed *discordgo.MessageEmbed) error {
channel, err := common.BotSession.UserChannelCreate(user)
if err != nil {
return err
}
_, err = common.BotSession.ChannelMessageSendEmbed(channel.ID, embed)
return err
}
var (
ErrStartingUp = errors.New("Starting up, caches are being filled...")
ErrGuildNotFound = errors.New("Guild not found")
)
func AdminOrPerm(needed int, userID, channelID int64) (bool, error) {
channel := State.Channel(true, channelID)
if channel == nil {
return false, errors.New("Channel not found")
}
// Ensure the member is in state
GetMember(channel.Guild.ID, userID)
perms, err := channel.Guild.MemberPermissions(true, channelID, userID)
if err != nil {
return false, err
}
if perms&needed != 0 {
return true, nil
}
if perms&discordgo.PermissionManageServer != 0 || perms&discordgo.PermissionAdministrator != 0 {
return true, nil
}
return false, nil
}
// GuildName is a convenience function for getting the name of a guild
func GuildName(gID int64) (name string) {
g := State.Guild(true, gID)
g.RLock()
name = g.Guild.Name
g.RUnlock()
return
}
func SnowflakeToTime(i int64) time.Time {
flake := snowflake.ID(i)
t := time.Unix(flake.Time()/1000, 0)
return t
}
func SetStatus(status string) {
if status == "" {
status = "v" + common.VERSION + " :)"
}
currentPresenceLock.Lock()
currentStatus = status
currentPresenceLock.Unlock()
updateAllShardStatuses()
}
func SetStreaming(streaming, status string) {
if status == "" {
status = "v" + common.VERSION + " :)"
}
currentPresenceLock.Lock()
currentStatus = status
currentStreamingURL = streaming
currentPresenceLock.Unlock()
updateAllShardStatuses()
}
func updateAllShardStatuses() {
currentPresenceLock.Lock()
stremaing := currentStreamingURL
status := currentStatus
currentPresenceLock.Unlock()
for _, v := range ShardManager.Sessions {
if stremaing == "" {
v.UpdateStatus(0, status)
} else {
v.UpdateStreamingStatus(0, status, stremaing)
}
}
}