-
Notifications
You must be signed in to change notification settings - Fork 22
/
main.go
76 lines (61 loc) · 1.81 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
// Declare this file to be part of the main package so it can be compiled into
// an executable.
package main
// Import all Go packages required for this file.
import (
"flag"
"fmt"
"log"
"os"
"os/signal"
"syscall"
"github.com/bwmarrin/discordgo"
)
// Version is a constant that stores the Disgord version information.
const Version = "v0.0.0-alpha"
// 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")
}
}
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
}
// 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)
}
// 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.
}