-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
92 lines (82 loc) · 2.31 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
package main
import (
"discord-cmd-bot/config"
"flag"
"fmt"
"github.com/bwmarrin/discordgo"
"os"
"os/signal"
"strings"
"syscall"
)
var (
token string
configPath string
)
func init() {
flag.StringVar(&configPath, "c", "", "Bot Config")
token = os.Getenv("DISCORD_TOKEN")
if token == "" {
flag.StringVar(&token, "t", "", "Bot Token")
}
flag.Parse()
if token == "" {
panic("Need to provide token in -t or env variable DISCORD_TOKEN")
}
}
func main() {
cfg, err := config.LoadConfig(configPath)
if err != nil {
fmt.Println("error loading config,", err)
return
}
// 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
}
cmdRunner := NewCommandRunner(cfg)
dg.AddHandler(func(s *discordgo.Session, m *discordgo.MessageCreate) {
if m.Author.ID == s.State.User.ID {
return
}
if strings.HasPrefix(m.Content, "%run ") {
dcCommand := strings.TrimLeft(m.Content, "%run ")
if cmdRunner.HasCommand(dcCommand) {
output, err := cmdRunner.RunCommand(dcCommand)
if err != nil {
_, err := s.ChannelMessageSend(m.ChannelID, fmt.Sprintf("result of %s is error: ```%s```", dcCommand, err))
if err != nil {
fmt.Println("send message error", err)
}
return
}
//_, err = s.ChannelMessageSendComplex(m.ChannelID, fmt.Sprintf("result of %s ```%s```", dcCommand, output))
_, err = s.ChannelMessageSendEmbed(m.ChannelID, &discordgo.MessageEmbed{
Title: fmt.Sprintf("result of command %s", dcCommand),
Description: fmt.Sprintf("```%s```", output),
})
if err != nil {
fmt.Println("send message error", err)
}
return
}
}
})
// In this example, we only care about receiving message events.
dg.Identify.Intents = discordgo.IntentsGuildMessages | discordgo.IntentMessageContent
// Open a websocket connection to Discord and begin listening.
err = dg.Open()
if err != nil {
fmt.Println("error opening connection,", err)
return
}
// 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
// Cleanly close down the Discord session.
dg.Close()
}