This repository has been archived by the owner on Feb 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
executable file
·80 lines (66 loc) · 2.51 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
package main
import (
"flag"
"fmt"
"github.com/bwmarrin/discordgo"
"github.com/notmeta/osrs.cx/util"
"log"
"os"
"os/signal"
"syscall"
)
// Version is a constant that stores the Disgord version information.
const Version = "v0.4.1"
// Session is declared in the global space so it can be easily used
// throughout this program.
// In this use case, there is no error that would be returned.
var Session, _ = discordgo.New()
// Read in all configuration options from both environment variables and
// command line arguments.
func init() {
// Discord Authentication Token
Session.Token = os.Getenv("DG_TOKEN")
if Session.Token == "" {
flag.StringVar(&Session.Token, "t", "", "Discord Authentication Token")
}
util.RedisIp = os.Getenv("REDIS_IP")
if util.RedisIp == "" {
flag.StringVar(&util.RedisIp, "redis", "localhost", "Redis Store IP Address")
}
}
func main() {
// Declare any variables needed later.
var err error
// Print out a fancy logo!
fmt.Printf(`
██████╗ ███████╗██████╗ ███████╗ ██████╗██╗ ██╗
██╔═══██╗██╔════╝██╔══██╗██╔════╝ ██╔════╝╚██╗██╔╝
██║ ██║███████╗██████╔╝███████╗ ██║ ╚███╔╝
██║ ██║╚════██║██╔══██╗╚════██║ ██║ ██╔██╗
╚██████╔╝███████║██║ ██║███████║██╗╚██████╗██╔╝ ██╗
╚═════╝ ╚══════╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═════╝╚═╝ ╚═╝ %-16s`+"\n\n", Version)
// Parse command line arguments
flag.Parse()
// Verify a Token was provided
if Session.Token == "" {
log.Println("You must provide a Discord authentication token.")
return
}
// Connect to local redis container
util.StoreInit()
// Open a websocket connection to Discord
err = Session.Open()
if err != nil {
log.Printf("error opening connection to Discord, %s\n", err)
os.Exit(1)
}
_ = Session.UpdateStatus(0, Router.Prefix+"help | osrs.cx "+Version)
// Wait for a CTRL-C
log.Printf(`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
// Clean up
Session.Close()
// Exit Normally.
}