-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
66 lines (53 loc) · 1.46 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
package main
import (
"fmt"
"runtime"
"flag"
"os"
"os/signal"
"syscall"
"github.com/lordmortis/DiscordDestinyInfo/discord"
"github.com/lordmortis/goBungieNet"
)
var (
config *Config
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
configFile := flag.String("config", "config.json", "JSON Config File")
flag.Parse()
var err error
config, err = LoadConfig(*configFile)
err = setDbPath(config.DBPath)
if (err != nil) {
fmt.Println("Unable to setup Database")
fmt.Println(err)
return
}
goBungieNet.ApiKey = config.BungieNet.ApiKey
err = goBungieNet.SetManifestPath(config.BungieNet.ManifestPath)
if (err != nil) {
fmt.Println("Destiny Manifest Directory error:")
fmt.Println(err)
return
}
err = goBungieNet.ManifestUpdate()
if (err != nil) {
fmt.Println("Manifest did not update")
fmt.Println(err)
return
}
err = discord.Setup(config.Discord.Token)
if (err != nil) {
fmt.Println("Unable to connect to discord, ", err)
return
}
// Wait here until CTRL-C or other term signal is received.
fmt.Println("Bot is now running. Press CTRL-C to exit.")
fmt.Println("To add this bot to your server, visit https://discordapp.com/oauth2/authorize?scope=bot&permissions=o&client_id=" + config.Discord.ClientID)
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc
// Cleanly close down the Discord session.
discord.Close()
}