-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.go
71 lines (58 loc) · 1.7 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 (
"crypto/tls"
"flag"
"net/http"
"os"
"os/signal"
"syscall"
"github.com/UCCNetsoc/discord-bot/commands"
"github.com/UCCNetsoc/discord-bot/api"
"github.com/UCCNetsoc/discord-bot/prometheus"
"github.com/UCCNetsoc/discord-bot/status"
"github.com/Strum355/log"
"github.com/UCCNetsoc/discord-bot/config"
"github.com/bwmarrin/discordgo"
"github.com/spf13/viper"
)
var production *bool
func main() {
http.DefaultTransport.(*http.Transport).TLSClientConfig = &tls.Config{InsecureSkipVerify: true} // Take this out when corona API is deborked
// Check for flags
production = flag.Bool("p", false, "enables production with json logging")
flag.Parse()
if *production {
log.InitJSONLogger(&log.Config{Output: os.Stdout})
} else {
log.InitSimpleLogger(&log.Config{Output: os.Stdout})
}
// Setup viper and consul
exitError(config.InitConfig())
// Discord connection
token := viper.GetString("discord.token")
session, err := discordgo.New("Bot " + token)
session.Identify.Intents = discordgo.MakeIntent(discordgo.IntentsAll)
exitError(err)
// Open websocket
err = session.Open()
commands.RegisterHandlers(session)
exitError(err)
// Run the REST API for events/announcements in a different goroutine
go api.Run(session)
go prometheus.CreateExporter(session)
// Update the bot status periodically
go status.Status(session)
// Maintain connection until a SIGTERM, then cleanly exit
log.Info("Bot is Running")
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc
log.Info("Cleanly exiting")
session.Close()
}
func exitError(err error) {
if err != nil {
log.WithError(err).Error("Failed to start bot")
os.Exit(1)
}
}