generated from ACM-VIT/hacktoberfest-readme
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmain.go
665 lines (578 loc) · 20.1 KB
/
main.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
package main
import (
// Import the Discordgo package, and other required packages.
"flag"
"fmt"
"log"
"math/rand"
"os"
"os/signal"
"regexp"
"strconv"
"strings"
"syscall"
"time"
"github.com/Krognol/go-wolfram"
owm "github.com/briandowns/openweathermap"
"github.com/bwmarrin/discordgo"
"github.com/joho/godotenv"
emj "github.com/kenshaw/emoji"
)
var (
GuildID = flag.String("guild", "", "Test guild ID. If not passed - bot registers commands globally")
RemoveCommands = flag.Bool("rmcmd", true, "Remove all commands after shutdowning or not")
EnableAutoMod = flag.Bool("enable-automod", false, "Enable the auto-moderation")
)
var (
//declaring secrets
token = ""
aptly = ""
logChannelID = ""
botPrefix = ""
computeAppID = ""
youtubeAPIKey = ""
buffer = make([][]byte, 0)
commands = []*discordgo.ApplicationCommand{
{
Name: "time",
Description: "return current time.",
},
{
Name: "whisper",
Description: "send anonymous direct message to a user.",
Options: []*discordgo.ApplicationCommandOption{
{
Type: discordgo.ApplicationCommandOptionUser,
Name: "user",
Description: "User",
Required: true,
},
{
Type: discordgo.ApplicationCommandOptionString,
Name: "message",
Description: "Message",
Required: true,
},
},
},
}
commandHandlers = map[string]func(s *discordgo.Session, i *discordgo.InteractionCreate){
"time": func(s *discordgo.Session, i *discordgo.InteractionCreate) {
s.InteractionRespond(i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseChannelMessageWithSource,
Data: &discordgo.InteractionResponseData{
Flags: discordgo.MessageFlagsEphemeral,
Content: "<t:" + strconv.FormatInt(time.Now().Unix(), 10) + ">",
},
})
logCommand(s, i.GuildID, "time", i.Member.User)
},
"whisper": func(s *discordgo.Session, i *discordgo.InteractionCreate) {
var userID string
var message = "You have a new anonymous whisper: "
options := i.ApplicationCommandData().Options
// Get the options entered with the slash command
optionMap := make(map[string]*discordgo.ApplicationCommandInteractionDataOption, len(options))
for _, opt := range options {
optionMap[opt.Name] = opt
}
// Get the user from the option map.
if option, ok := optionMap["user"]; ok {
userID = option.UserValue(nil).ID
}
// Get the message from the option map.
if option, ok := optionMap["message"]; ok {
message = message + option.StringValue()
}
sendDirectMessage(s, i.ChannelID, userID, message)
s.InteractionRespond(i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseChannelMessageWithSource,
Data: &discordgo.InteractionResponseData{
Flags: discordgo.MessageFlagsEphemeral,
Content: fmt.Sprintf("The whisper was delivered!"),
},
})
logCommand(s, i.GuildID, "whisper", i.Member.User)
},
}
)
var greetings = []string{
"Hey",
"It's good to see you again",
"What's up?",
"It's a pleasure to meet you",
}
var rpschoices = []string{
"rock", "paper", "scissors",
}
func init() { flag.Parse() }
// Main function of the bot, called on startup.
func main() {
//load env variables
err := godotenv.Load(".env")
if err != nil {
log.Fatalf("Error loading .env file")
return
}
//apply env variables to secrets
token = os.Getenv("TOKEN")
aptly = os.Getenv("API_KEY")
logChannelID = os.Getenv("LOG_CHANNEL_ID")
botPrefix = os.Getenv("BOT_PREFIX")
computeAppID = os.Getenv("WOLFRAM_API_KEY")
youtubeAPIKey = os.Getenv("YOUTUBE_API_KEY")
// Load the sound file.
loadPresetDCAFiles()
// Create a new Discord session using the provided bot token.
dg, err := discordgo.New("Bot " + token)
if err != nil {
fmt.Println("error creating Discord session,", err)
return
}
// Enable message tracking to the session.
trackSessionMessages(dg)
// Register the messageCreate func as a callback for MessageCreate events.
dg.AddHandler(messageCreate)
// Setup intents
dg.Identify.Intents = discordgo.IntentsGuilds | discordgo.IntentsGuildMessages | discordgo.IntentsGuildMembers | discordgo.IntentsGuildPresences | discordgo.IntentsGuildVoiceStates | discordgo.IntentAutoModerationExecution | discordgo.IntentMessageContent
if *EnableAutoMod {
rule := initAutoModeration(dg)
defer func() {
fmt.Println("Removing AutoModerationRule")
dg.AutoModerationRuleDelete(*GuildID, rule.ID)
}()
}
// Open a websocket connection to Discord and begin listening.
err = dg.Open()
if err != nil {
fmt.Println("error opening connection,", err)
return
}
dg.AddHandler(func(s *discordgo.Session, i *discordgo.InteractionCreate) {
if h, ok := commandHandlers[i.ApplicationCommandData().Name]; ok {
h(s, i)
}
})
// Register the guildMemberJoin func as a callback for GuildMemberAdd events.
dg.AddHandler(guildMemberJoin)
// Register the guildMemberLeave func as a callback for GuildMemberRemove events.
dg.AddHandler(guildMemberLeave)
fmt.Println("Adding commands...")
registeredCommands := make([]*discordgo.ApplicationCommand, len(commands))
for i, v := range commands {
cmd, err := dg.ApplicationCommandCreate(dg.State.User.ID, *GuildID, v)
if err != nil {
log.Panicf("Cannot create '%v' command: %v", v.Name, err)
}
registeredCommands[i] = cmd
}
defer dg.Close()
// Wait here until CTRL-C or other term signal is received.
fmt.Println("Bot is now running. Press CTRL-C to exit.")
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt)
<-sc
if *RemoveCommands {
fmt.Println("\nRemoving commands...")
for _, v := range registeredCommands {
err := dg.ApplicationCommandDelete(dg.State.User.ID, *GuildID, v.ID)
if err != nil {
log.Panicf("Cannot delete '%v' command: %v", v.Name, err)
}
}
}
dg.Close()
}
func logCommand(s *discordgo.Session, gID, command string, user *discordgo.User) {
// Add slash prefix to the log if given command is a slash command
// Else add prefix as BotPrefix
var prefix = "Slash"
if strings.Contains(command, botPrefix) {
prefix = "BotPrefix"
}
// Log commands in the channel
if logChannelID != "" {
guild, err := s.Guild(gID)
if err != nil {
fmt.Printf("Error getting guild info: %s", err)
return
}
s.ChannelMessageSend(
logChannelID,
fmt.Sprintf(`[%s] %s > %s > %s`, prefix, guild.Name, user, command),
)
}
}
// Sets the maximum number of messages to track for a session
func trackSessionMessages(dg *discordgo.Session) {
dg.State.MaxMessageCount = 10000
}
func getGuild(s *discordgo.Session, channelID string) (*discordgo.Guild, error) {
// Find the channel that the message came from.
c, err := s.State.Channel(channelID)
if err != nil {
return nil, fmt.Errorf("could not find channel")
}
// Find the guild for that channel.
g, err := s.State.Guild(c.GuildID)
if err != nil {
return nil, fmt.Errorf("could not find guild")
}
return g, nil
}
// This handles all commands sent to the bot
func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
if m.Author.ID == s.State.User.ID {
return
}
// if the message starts with the prefix, then we know it's a command
if strings.HasPrefix(m.Content, botPrefix) {
switch strings.ToLower(strings.Split(m.Content, " ")[0]) {
case botPrefix + "gollyhelp":
s.ChannelMessageSend(m.ChannelID, formatHelpMessage())
case botPrefix + "ping":
s.ChannelMessageSend(m.ChannelID, "pong!")
case botPrefix + "greet": // if the command is !greet
s.ChannelMessageSend(m.ChannelID, randomGreeting(s, m))
case botPrefix + "coinflip":
s.ChannelMessageSend(m.ChannelID, coinFlip(s, m))
case botPrefix + "horn":
g, err := getGuild(s, m.ChannelID)
if err != nil {
fmt.Println("Error getting guild:", err)
}
// Look for the message sender in that guild's current voice states.
for _, vs := range g.VoiceStates {
if vs.UserID == m.Author.ID {
err = playSound(s, g.ID, vs.ChannelID)
if err != nil {
fmt.Println("Error playing sound:", err)
}
return
}
}
case botPrefix + "weather":
w, err := owm.NewCurrent("F", "EN", aptly) // Returns weather in fahrenheit and English
if err != nil {
log.Fatalln(err)
}
var location = strings.Title(strings.ToLower(strings.SplitN(m.Content, " ", 2)[1]))
w.CurrentByName(location)
var result = fmt.Sprintf("Feels Like: %.2f°F\nTemperature: %.2f°F\nMin Temperature: %.2f°F\nMax Temperature: %.2f°F\nHumidity: %d%%\nWind speed: %.2fm/s\n", w.Main.FeelsLike, w.Main.Temp, w.Main.TempMin, w.Main.TempMax, w.Main.Humidity, w.Wind.Speed)
for _, item := range w.Weather {
result += fmt.Sprintf("%s: %s\n", item.Main, item.Description)
}
s.ChannelMessageSend(m.ChannelID, result)
case botPrefix + "serverinfo":
// sends embed containing server info
s.ChannelMessageSendEmbed(m.ChannelID, serverinfo(s, m))
case botPrefix + "remindme": //!remindme command
var remindMessage = strings.SplitN(m.Content, " ", 3)[2]
timer, err := strconv.Atoi(strings.SplitN(m.Content, " ", 3)[1])
if err != nil {
s.ChannelMessageSend(m.ChannelID, fmt.Sprintf("Error! %s\nPlease use the correct syntax: !remindme <seconds> <message>", err))
} else {
s.ChannelMessageSend(m.ChannelID, "Reminder added!")
s.ChannelMessageSend(m.ChannelID, remindMe(s, m, remindMessage, timer))
}
case botPrefix + "raffle":
var msgContent = strings.Split(m.Content, " ")
// Check if message ID and emoji are present
if len(strings.Split(m.Content, " ")) < 3 {
fmt.Println("Error finding message id or emoji")
s.ChannelMessageSend(m.ChannelID, "Something went wrong, try again!\nPlease use the correct syntax : !raffle <message id> <reaction>\n")
}
var messageID = msgContent[1]
var emoji = msgContent[2]
s.ChannelMessageSend(m.ChannelID, raffle(s, m.ChannelID, messageID, emoji))
case botPrefix + "playrps":
var rpsChoice = strings.ToLower(strings.Split(m.Content, " ")[1])
if rps(s, m, rpsChoice) == "" {
s.ChannelMessageSend(m.ChannelID, "Invalid choice! Use syntax `!playrps <choice>`.\nYour choices are: rock, paper and scissors")
} else {
s.ChannelMessageSend(m.ChannelID, rps(s, m, rpsChoice))
}
case botPrefix + "nickchange":
st, err := s.UserChannelCreate(m.Author.ID)
if err != nil {
s.ChannelMessageSend(m.ChannelID, fmt.Sprintf("could not create a private channel for %v", m.Author))
}
nickArgs := strings.SplitN(m.Content, " ", 3)
user := regexp.MustCompile(`[^a-zA-Z0-9 ]+`).ReplaceAllString((nickArgs[1]), "")
nick := nickArgs[2]
g, err := getGuild(s, m.ChannelID)
if err != nil {
s.ChannelMessageSend(st.ID, fmt.Sprintf("an error getting guild: %v", err))
}
if err := s.GuildMemberNickname(g.ID, user, nick); err != nil {
s.ChannelMessageSend(st.ID, fmt.Sprintf("an error occured while changing the nickname of %v to %v: %v", user, nick, err))
return
}
s.ChannelMessageSend(st.ID, fmt.Sprintf("the nick of <@%v> has been changed", user))
return
case botPrefix + "compute":
var mathProb = strings.SplitN(m.Content, " ", 2)[1]
//Initialize a new client
c := &wolfram.Client{AppID: computeAppID}
//Get result by making a query using the WolframAlpha API
res, err := c.GetShortAnswerQuery(mathProb, wolfram.Metric, 1000)
if err != nil {
panic(err)
}
s.ChannelMessageSend(m.ChannelID, res)
case botPrefix + "searchyt":
var query = strings.Join(strings.Split(m.Content, " ")[1:], " ")
title, link := searchYT(query, youtubeAPIKey)
s.ChannelMessageSend(m.ChannelID, title+"\n"+link)
default:
fmt.Println("Command not implemented")
return
}
logCommand(s, m.GuildID, m.Content, m.Author)
// if the message doesn't start with the prefix, then we check if it matches
// one of the predefined messages to respond too
} else {
switch strings.Contains(strings.ToLower(m.Content), "hi golly") {
case true:
s.ChannelMessageSend(m.ChannelID, randomGreeting(s, m))
}
}
}
func formatHelpMessage() string {
commands := map[string]string{
"ping": "Reply with pong",
"greet": "Reply with a greeting message",
"coinflip": "Flip the coin!",
"horn": "Honk the summoner",
"weather <location>": "How is the weather in <location> ? ",
"remindme <seconds> <message>": "Create a reminder",
"raffle <message id> <emoji>": "Reply with a random user who reacted to given message with given emoji",
"playrps <choice>": "Play rock, paper and scissors",
"compute <query>": "Ask general questions or mathematical/computational questions to WolframAlpha compute engine",
"searchyt <query>": "Returns first search result from Youtube for searched query.",
}
helpMessage := "Available commands:\n"
for cmd, desc := range commands {
helpMessage += fmt.Sprintf("- `%s%s`: %s\n", botPrefix, cmd, desc)
}
return helpMessage
}
func randomGreeting(s *discordgo.Session, m *discordgo.MessageCreate) (greeting string) {
// Seed the random number generator
rand.Seed(time.Now().UnixNano())
// Shuffle the greetings to return a random greeting
rand.Shuffle(len(greetings), func(i, j int) {
greetings[i], greetings[j] = greetings[j], greetings[i]
})
return fmt.Sprintf("%s, %s", greetings[0], m.Author.Mention())
}
// Random coinflip command
func coinFlip(s *discordgo.Session, m *discordgo.MessageCreate) string {
coin := []string{
"heads",
"tails",
}
rand.Seed(time.Now().UnixNano())
// flip the coin
side := coin[rand.Intn(len(coin))]
return fmt.Sprintf("Flipped the coin and you get : %s", side)
}
// !remindme command function
func remindMe(s *discordgo.Session, m *discordgo.MessageCreate, remindMessage string, timer int) string {
<-time.After(time.Duration(timer) * time.Second)
return fmt.Sprintf("%s! %s", m.Author.Mention(), "Reminder: "+remindMessage)
}
func initAutoModeration(session *discordgo.Session) *discordgo.AutoModerationRule {
enabled := true
rule, err := session.AutoModerationRuleCreate(*GuildID, &discordgo.AutoModerationRule{
Name: "GollyBot Auto Moderation",
EventType: discordgo.AutoModerationEventMessageSend,
TriggerType: discordgo.AutoModerationEventTriggerKeyword,
TriggerMetadata: &discordgo.AutoModerationTriggerMetadata{
KeywordFilter: []string{"*Voldemort*"},
},
Actions: []discordgo.AutoModerationAction{
{Type: discordgo.AutoModerationRuleActionBlockMessage},
},
Enabled: &enabled,
})
if err != nil {
panic(err)
}
fmt.Println("Successfully created the rule")
session.AddHandlerOnce(func(s *discordgo.Session, e *discordgo.AutoModerationActionExecution) {
_, err = session.AutoModerationRuleEdit(*GuildID, rule.ID, &discordgo.AutoModerationRule{
Actions: []discordgo.AutoModerationAction{
{Type: discordgo.AutoModerationRuleActionBlockMessage},
{Type: discordgo.AutoModerationRuleActionSendAlertMessage, Metadata: &discordgo.AutoModerationActionMetadata{
ChannelID: e.ChannelID,
}},
},
})
if err != nil {
session.AutoModerationRuleDelete(*GuildID, rule.ID)
panic(err)
}
s.ChannelMessageSend(e.ChannelID, "Shh we aren't supposed to speak that name!")
})
return rule
}
// raffle attempts to create list of users in the channel who reacted to given message
// with given emoji (or) reaction and returns a random user.
func raffle(s *discordgo.Session, channelID, messageID, emoji string) string {
var reaction discordgo.Emoji
// Find emoji id and name
desc := emj.FromCode(emoji).Description
emojis := emj.Gemoji()
for _, em := range emojis {
if em.Description == desc {
reaction = discordgo.Emoji{
ID: em.Emoji,
Name: em.Description,
}
}
}
// Find message with given id in the channel
message, err := s.State.Message(channelID, messageID)
if err != nil {
//Could not find the message
fmt.Println("Error finding message with ID :", messageID)
return fmt.Sprint("Could not find message with ID : ", messageID)
}
// Find users who reacted to the message with given emoji
reactedUsers, err := s.MessageReactions(channelID, messageID, reaction.ID, 100, "", "")
if err != nil {
fmt.Println(err)
return "Could not find users reacted to this message"
}
// Returns, if no user reacted to the message
if len(reactedUsers) == 0 {
return fmt.Sprint("No user reacted to the message ", message.Content, "with emojiID ", reaction.ID)
}
// Pick random user from the list of users who reacted to the message
rand.Seed(time.Now().UnixNano())
winner := reactedUsers[rand.Intn(len(reactedUsers))]
return fmt.Sprintf("The winner is: <@%s>", winner.ID)
}
func serverinfo(s *discordgo.Session, m *discordgo.MessageCreate) *discordgo.MessageEmbed {
c, err := s.State.Channel(m.ChannelID)
if err != nil {
log.Println("couldnt get the channel id")
}
// Find the guild for that channel.
g, err := s.State.Guild(c.GuildID)
if err != nil {
log.Println("couldnt get the channel id")
}
owner := "<@" + g.OwnerID + ">"
category_channel_count := 0
text_channel_count := 0
voice_channel_count := 0
// finding the count of all channels
for _, ch := range g.Channels {
switch ch.Type {
case discordgo.ChannelTypeGuildCategory:
category_channel_count++
case discordgo.ChannelTypeGuildText:
text_channel_count++
case discordgo.ChannelTypeGuildVoice:
voice_channel_count++
}
}
member_count := g.MemberCount
role_count := len(g.Roles)
embed := &discordgo.MessageEmbed{
Title: "Server Info",
Fields: []*discordgo.MessageEmbedField{
{
Name: "Server Owner",
Value: owner,
},
{
Name: "Category Channels",
Value: strconv.Itoa(category_channel_count),
},
{
Name: "Text Channels",
Value: strconv.Itoa(text_channel_count),
},
{
Name: "Voice Channels",
Value: strconv.Itoa(voice_channel_count),
},
{
Name: "Members",
Value: strconv.Itoa(member_count),
},
{
Name: "Roles",
Value: strconv.Itoa(role_count),
},
},
}
return embed
}
// !playrps command function
func rps(s *discordgo.Session, m *discordgo.MessageCreate, rpsChoice string) string {
//pick a random rps choice
randomIndex := rand.Intn(len(rpschoices))
botChoice := rpschoices[randomIndex]
//compare user choice with bot choice
switch rpsChoice {
case "rock":
if botChoice == "rock" {
return fmt.Sprintf("Your choice: %s\nMy choice: %s\n`It's a tie!`", rpsChoice, botChoice)
}
if botChoice == "paper" {
return fmt.Sprintf("Your choice: %s\nMy choice: %s\nPaper covers rock. `I win!`", rpsChoice, botChoice)
}
if botChoice == "scissors" {
return fmt.Sprintf("Your choice: %s\nMy choice: %s\nRock crushes scissors. `You win!`", rpsChoice, botChoice)
}
case "paper":
if botChoice == "rock" {
return fmt.Sprintf("Your choice: %s\nMy choice: %s\nPaper covers rock. `You win!`", rpsChoice, botChoice)
}
if botChoice == "paper" {
return fmt.Sprintf("Your choice: %s\nMy choice: %s\n`It's a tie!`", rpsChoice, botChoice)
}
if botChoice == "scissors" {
return fmt.Sprintf("Your choice: %s\nMy choice: %s\nScissors cut paper. `I win!`", rpsChoice, botChoice)
}
case "scissors":
if botChoice == "rock" {
return fmt.Sprintf("Your choice: %s\nMy choice: %s\nRock crushes scissors. `I win!`", rpsChoice, botChoice)
}
if botChoice == "paper" {
return fmt.Sprintf("Your choice: %s\nMy choice: %s\nScissors cut paper. `You win!`", rpsChoice, botChoice)
}
if botChoice == "scissors" {
return fmt.Sprintf("Your choice: %s\nMy choice: %s\n`It's a tie!`", rpsChoice, botChoice)
}
}
return ""
}
func sendDirectMessage(s *discordgo.Session, channelID, userID, message string) {
// Create a channel to send direct message.
// If a DM channel already exists, it will be reused.
channel, err := s.UserChannelCreate(userID)
if err != nil {
// Failed to create the channel.
fmt.Println("error creating channel:", err)
s.ChannelMessageSend(
channelID,
"something went wrong while sending the direct message",
)
return
}
// Send the message through the created channel.
_, err = s.ChannelMessageSend(channel.ID, message)
if err != nil {
// Failed to send the message.
fmt.Println("error sending DM message:", err)
s.ChannelMessageSend(
channelID,
"failed to send a direct message",
)
}
}