forked from broderickhyman/albiondata-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalbiondata-client.go
238 lines (203 loc) · 5.45 KB
/
albiondata-client.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package main
import (
"flag"
"os"
"strconv"
"strings"
"time"
"github.com/broderickhyman/albiondata-client/client"
"github.com/broderickhyman/albiondata-client/log"
"github.com/broderickhyman/albiondata-client/systray"
"github.com/broderickhyman/go-githubupdate/updater"
"github.com/sirupsen/logrus"
"github.com/spf13/viper"
)
var version string
func init() {
// Setup the config file and parse values
viper.SetConfigName("config")
viper.AddConfigPath(".")
err := viper.ReadInConfig()
// if we cannot find the configuration file, set Websockets to false
if err != nil {
viper.Set("EnableWebsockets", false)
}
client.ConfigGlobal.EnableWebsockets = viper.GetBool("EnableWebsockets")
client.ConfigGlobal.AllowedWSHosts = viper.GetStringSlice("AllowedWebsocketHosts")
flag.BoolVar(
&client.ConfigGlobal.Debug,
"debug",
false,
"Enable debug logging.",
)
flag.BoolVar(
&client.ConfigGlobal.DisableUpload,
"d",
false,
"If specified no attempts will be made to upload data to remote server.",
)
flag.StringVar(
&client.ConfigGlobal.ListenDevices,
"l",
"",
"Listen on this comma separated devices instead of all available",
)
flag.BoolVar(
&client.ConfigGlobal.LogToFile,
"output-file",
false,
"Enable logging to file.",
)
flag.StringVar(
&client.ConfigGlobal.OfflinePath,
"o",
"",
"Parses a local file instead of checking albion ports.",
)
flag.BoolVar(
&client.ConfigGlobal.Minimize,
"minimize",
false,
"Automatically minimize the window.",
)
flag.StringVar(
&client.ConfigGlobal.PublicIngestBaseUrls,
"i",
"http+pow://www.albion-online-data.com:4223",
"Base URL to send PUBLIC data to, can be 'nats://', 'http://' or 'noop' and can have multiple uploaders. Comma separated.",
)
flag.StringVar(
&client.ConfigGlobal.PrivateIngestBaseUrls,
"p",
"",
"Base URL to send PRIVATE data to, can be 'nats://', 'http://' or 'noop' and can have multiple uploaders. Comma separated.",
)
flag.StringVar(
&client.ConfigGlobal.RecordPath,
"record",
"",
"Enable recording commands to a file for debugging later.",
)
flag.StringVar(
&client.ConfigGlobal.DebugEventsString,
"events",
"",
"Whitelist of event IDs to output messages when debugging. Comma separated.",
)
flag.StringVar(
&client.ConfigGlobal.DebugEventsBlacklistString,
"events-ignore",
"",
"Blacklist of event IDs to hide messages when debugging. Comma separated.",
)
flag.StringVar(
&client.ConfigGlobal.DebugOperationsString,
"operations",
"",
"Whitelist of operation IDs to output messages when debugging. Comma separated.",
)
flag.StringVar(
&client.ConfigGlobal.DebugOperationsBlacklistString,
"operations-ignore",
"",
"Blacklist of operation IDs to hide messages when debugging. Comma separated.",
)
flag.BoolVar(
&client.ConfigGlobal.DebugIgnoreDecodingErrors,
"ignore-decode-errors",
false,
"Ignore the decoding errors when debugging",
)
flag.BoolVar(
&client.ConfigGlobal.NoCPULimit,
"no-limit",
false,
"Use all available CPU cores",
)
}
func main() {
flag.Parse()
if client.ConfigGlobal.Debug {
client.ConfigGlobal.LogLevel = "DEBUG"
}
client.ConfigGlobal.DebugEvents = make(map[int]bool)
if client.ConfigGlobal.DebugEventsString != "" {
for _, event := range strings.Split(client.ConfigGlobal.DebugEventsString, ",") {
number, err := strconv.Atoi(event)
if err == nil {
client.ConfigGlobal.DebugEvents[number] = true
}
}
}
if client.ConfigGlobal.DebugEventsBlacklistString != "" {
for _, event := range strings.Split(client.ConfigGlobal.DebugEventsBlacklistString, ",") {
number, err := strconv.Atoi(event)
if err == nil {
client.ConfigGlobal.DebugEvents[number] = false
}
}
}
client.ConfigGlobal.DebugOperations = make(map[int]bool)
if client.ConfigGlobal.DebugOperationsString != "" {
for _, operation := range strings.Split(client.ConfigGlobal.DebugOperationsString, ",") {
number, err := strconv.Atoi(operation)
if err == nil {
client.ConfigGlobal.DebugOperations[number] = true
}
}
}
if client.ConfigGlobal.DebugOperationsBlacklistString != "" {
for _, operation := range strings.Split(client.ConfigGlobal.DebugOperationsBlacklistString, ",") {
number, err := strconv.Atoi(operation)
if err == nil {
client.ConfigGlobal.DebugOperations[number] = false
}
}
}
level, err := logrus.ParseLevel(strings.ToLower(client.ConfigGlobal.LogLevel))
if err != nil {
log.Errorf("Error getting level: %v", err)
}
log.SetLevel(level)
if client.ConfigGlobal.OfflinePath != "" {
client.ConfigGlobal.Offline = true
client.ConfigGlobal.DisableUpload = true
}
if client.ConfigGlobal.DisableUpload {
log.Info("Upload is disabled.")
}
startUpdater()
go systray.Run()
c := client.NewClient(version)
err = c.Run()
if err != nil {
log.Error(err)
log.Error("The program encountered an error. Press any key to close this window.")
var b = make([]byte, 1)
_, _ = os.Stdin.Read(b)
}
}
func startUpdater() {
if version != "" && !strings.Contains(version, "dev") {
u := updater.NewUpdater(
version,
"broderickhyman",
"albiondata-client",
"update-",
)
go func() {
maxTries := 2
for i := 0; i < maxTries; i++ {
err := u.BackgroundUpdater()
if err != nil {
log.Error(err.Error())
log.Info("Will try again in 60 seconds. You may need to run the client as Administrator.")
// Sleep and hope the network connects
time.Sleep(time.Second * 60)
} else {
break
}
}
}()
}
}