-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
71 lines (59 loc) · 1.47 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
package main
import (
"fmt"
"log"
"math/rand"
"os"
"os/signal"
"strings"
"syscall"
"time"
"github.com/FM1337/Discord-CAH/cards"
"github.com/FM1337/Discord-CAH/commands"
"github.com/FM1337/Discord-CAH/utils"
"github.com/bwmarrin/discordgo"
_ "github.com/joho/godotenv/autoload"
)
func main() {
utils.Config.LoadConfig()
commands.RegisterCommands()
cards.LoadDefaultCards()
// Generate a random seed on startup.
rand.Seed(time.Now().UnixNano())
discord()
}
func discord() {
discordToken := utils.Config.DiscordToken
fmt.Println("Starting bot..")
bot, err := discordgo.New("Bot " + discordToken)
if err != nil {
fmt.Println("Error creating Discord session: ", err)
log.Fatal(err)
}
err = bot.Open()
if err != nil {
log.Fatal(err)
}
bot.AddHandler(messageCreate)
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.
bot.Close()
}
func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
log.Print("[" + m.Author.Username + "] " + m.Content)
if m.Author.ID == s.State.User.ID {
return
}
if m.ChannelID == utils.Config.CAHChannelID || utils.AllowCommandPrivmsg(s, m) {
if strings.HasPrefix(m.Content, utils.Config.Prefix) {
command := strings.Split(m.Content[1:len(m.Content)], " ")
name := strings.ToLower(command[0])
commands.RunCommand(name, s, m)
return
}
return
}
}