-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
165 lines (140 loc) · 3.73 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package main
import (
"fmt"
"os"
"strings"
"github.com/xntrik/go209/pkg/go209"
"github.com/urfave/cli"
)
func main() {
loadDotEnv()
app := NewApp()
err := app.Run(os.Args)
if err != nil {
_, _ = fmt.Fprintf(os.Stderr, "Error: %s\n", err)
os.Exit(1)
}
}
// NewApp is the cli.App which bootstraps everything
func NewApp() *cli.App {
app := cli.NewApp()
app.Name = "go209"
app.Usage = "The dumbest-smart slack bot app (in go)"
app.Version = go209.Version
cli.AppHelpTemplate = fmt.Sprintf(`%s
ENV VARIABLES:
SLACK_TOKEN Slack Bot User OAuth Access Token (required)
SLACK_SIGNING_SECRET Slack Bot Signing Secret (required)
REDIS_ADDR REDIS address (required)
REDIS_PWD REDIS password (default: "")
REDIS_DB REDIS DB (default: 0)
JSON_RULES The rule file (default: "rules.json")
WEB_ADDR The web listener address (default: "localhost:8000")
DYNAMIC_MODULES Optional .so plugins you want to load (separate with ":") `, cli.AppHelpTemplate)
// Check for additional app help for module ENV VARS
tmpMods := go209.FetchMods()
modEnvVarHelp := ""
for _, mod := range tmpMods.Modules {
if len(mod.EnvVars()) > 0 {
// this module has env vars
modEnvVarHelp = fmt.Sprintf(`%s
%s Module ENV VARIABLES:`, modEnvVarHelp, mod.Name())
for _, ev := range mod.EnvVars() {
adjusted := strings.ToUpper(fmt.Sprintf("%s_%s", mod.Name(), ev))
modEnvVarHelp = fmt.Sprintf(`%s
%s`, modEnvVarHelp, adjusted)
}
}
}
// If there are module env vars, lets add them to the help dialog
if len(modEnvVarHelp) > 0 {
cli.AppHelpTemplate = fmt.Sprintf(`%s %s
`, cli.AppHelpTemplate, modEnvVarHelp)
}
app.Flags = []cli.Flag{
cli.BoolFlag{
Name: "debug, d",
Usage: "enable debug output",
},
}
app.Commands = []cli.Command{
{
Name: "start",
Aliases: []string{"s"},
Usage: "Start the slack bot.",
Action: func(c *cli.Context) error {
// Fetch required env vars
slackToken, err := getSlackToken()
if err != nil {
return err
}
slackSigningSecret, err := getSlackSigningSecret()
if err != nil {
return err
}
redisAddr, err := getRedisAddr()
if err != nil {
return err
}
cfg := go209.BotConfig{
SlackToken: slackToken,
SlackSigningSecret: slackSigningSecret,
Debug: c.GlobalBool("debug"),
RulesFileLocation: getRulesFileLocation(),
RedisAddr: redisAddr,
RedisPwd: getRedisPwd(),
RedisDB: getRedisDB(),
}
err = go209.StartBot(&cfg)
return err
},
},
{
Name: "modules",
Usage: "Display the loaded modules",
Action: func(c *cli.Context) error {
err := go209.DumpMods()
return err
},
},
{
Name: "dump",
Usage: "Dump the rules json file, makes sure it parses too",
Action: func(c *cli.Context) error {
cfg := go209.BotConfig{
RulesFileLocation: getRulesFileLocation(),
}
err := go209.DumpRules(&cfg)
return err
},
},
{
Name: "web",
Aliases: []string{"w"},
Usage: "Start the web app.",
Action: func(c *cli.Context) error {
// Fetch required env vars
slackSigningSecret, err := getSlackSigningSecret()
if err != nil {
return err
}
redisAddr, err := getRedisAddr()
if err != nil {
return err
}
cfg := go209.BotConfig{
SlackSigningSecret: slackSigningSecret,
Debug: c.GlobalBool("debug"),
RulesFileLocation: getRulesFileLocation(),
RedisAddr: redisAddr,
RedisPwd: getRedisPwd(),
RedisDB: getRedisDB(),
WebListen: getWebListen(),
}
err = go209.StartWeb(&cfg)
return err
},
},
}
return app
}