-
Notifications
You must be signed in to change notification settings - Fork 15
/
utils.go
199 lines (149 loc) · 3.77 KB
/
utils.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
package main
import(
"io"
"io/ioutil"
"net/http"
"os"
"strings"
"github.com/bwmarrin/discordgo"
)
// Checks if a []string array contains a value
func (strl StrList) contains(str string) bool {
for _, s := range strl {
if s == str {
return true
}
}
return false
}
// Used to define an embed field to pass to discordSendEmbeddedMsg().
type embedField struct {
name string
value string
inline bool
}
// Returns a sub-string between two deliminators of the core string
func stribet(str string, delimLeft string, delimRight string) string {
// Start reading from where the first deliminator starts plus the length of the deliminator
posFirst := strings.Index(str, delimLeft)
if posFirst == -1 {
return ""
}
posFirst += len(delimLeft)
newStr := str[posFirst:]
// Now find the position of where the second deliminator starts
posLast := strings.Index(newStr, delimRight)
if posLast == -1 {
return ""
}
return newStr[0:posLast]
}
// Pads the left of the string with 'pad' for 'length' bytes
func padLeft(str string, pad string, length int) string {
finalStr := ""
lenPad := length - len(str)
if lenPad > 0 {
finalStr = strings.Repeat(pad, lenPad)
}
finalStr += str
return finalStr
}
// Pads the right of the string with 'pad' for 'length' bytes
func padRight(str string, pad string, length int) string {
finalStr := str
lenPad := length - len(str)
if lenPad > 0 {
finalStr += strings.Repeat(pad, lenPad)
}
return finalStr
}
// Uses HTTP to get page contents of the given URL
func getPageContents(url string) string {
resp, err := http.Get(url)
if err != nil {
return ""
}
defer resp.Body.Close()
html, err := ioutil.ReadAll(resp.Body)
if err != nil {
return ""
}
return string(html[:])
}
// Uses HTTP to fetch page contents and write it to a file
func downloadPageContents(filename string, url string) error {
resp, err := http.Get(url)
if err != nil {
return err
}
defer resp.Body.Close()
outFile, err := os.Create(filename)
if err != nil {
return err
}
defer outFile.Close()
_, err = io.Copy(outFile, resp.Body)
return err
}
// Creates an embed message to send in Discord.
func discordSendEmbeddedMsg(s *discordgo.Session, channel string, sections []embedField, footer string, color int, thumbnail string) {
embed := discordgo.MessageEmbed{
Type: "rich",
Color: color,
}
if footer != "" {
embedFooter := discordgo.MessageEmbedFooter{
Text: footer,
}
embed.Footer = &embedFooter
}
if thumbnail != "" {
embedThumbnail := discordgo.MessageEmbedThumbnail{
URL: thumbnail,
Width: 8,
Height: 8,
}
embed.Thumbnail = &embedThumbnail
}
for _, section := range sections {
embedSection := discordgo.MessageEmbedField{
Name: section.name,
Value: section.value,
Inline: section.inline,
}
embed.Fields = append(
embed.Fields,
&embedSection)
}
_, _ = s.ChannelMessageSendEmbed(channel, &embed)
}
// Creates an embed message to send in Discord, but automatically creates 1 embed field. Good for quick, one field messages like errors.
func discordSendQuickEmbeddedMsg(s *discordgo.Session, channel string, title string, body string, footer string, color int, thumbnail string) {
embed := discordgo.MessageEmbed{
Type: "rich",
Color: color,
}
if footer != "" {
embedFooter := discordgo.MessageEmbedFooter{
Text: footer,
}
embed.Footer = &embedFooter
}
if thumbnail != "" {
embedThumbnail := discordgo.MessageEmbedThumbnail{
URL: thumbnail,
Width: 8,
Height: 8,
}
embed.Thumbnail = &embedThumbnail
}
embedSection := discordgo.MessageEmbedField{
Name: title,
Value: body,
Inline: false,
}
embed.Fields = append(
embed.Fields,
&embedSection)
_, _ = s.ChannelMessageSendEmbed(channel, &embed)
}