-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
59 lines (50 loc) · 1.16 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
package main
import (
"flag"
"log"
"os"
"os/signal"
"syscall"
"github.com/awesomepatrol/bb-match-history/discord"
"github.com/awesomepatrol/bb-match-history/server"
"github.com/awesomepatrol/bb-match-history/stats"
)
var (
token string
DB string
addr string
debug bool
)
func init() {
flag.StringVar(&token, "t", "", "Bot Token")
flag.StringVar(&DB, "db", "", "Path to DB")
flag.StringVar(&addr, "addr", ":8080", "Address of HTTP server")
flag.BoolVar(&debug, "debug", false, "Enable debugging options")
flag.Parse()
}
func main() {
stats.OpenDB(DB)
defer stats.CloseDB()
if !debug {
update, err := stats.ShouldUpdateELO()
if err != nil {
log.Println("failed to check if ELO was updated:", err)
} else if update {
err := stats.UpdateELO()
if err != nil {
log.Println("elo update failed:", err)
}
}
}
if token == "" {
log.Println("run without discord bot")
} else {
discord.OpenBot(token, debug)
defer discord.CloseBot()
}
server.OpenHTTP(addr)
log.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, os.Kill)
<-sc
}