-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmonitor.go
401 lines (339 loc) · 9.99 KB
/
monitor.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
package tray
import (
"context"
"fmt"
"log"
"strings"
"time"
"github.com/NordSecurity/nordvpn-linux/cli"
"github.com/NordSecurity/nordvpn-linux/client"
"github.com/NordSecurity/nordvpn-linux/daemon/pb"
"github.com/NordSecurity/nordvpn-linux/internal"
"github.com/NordSecurity/nordvpn-linux/snapconf"
"github.com/NordSecurity/systray"
"google.golang.org/grpc/status"
)
// The pattern is to return 'true' if something has changed and 'false' when no changes were detected
func (ti *Instance) ping() bool {
daemonError := ""
resp, err := ti.client.Ping(context.Background(), &pb.Empty{})
if err != nil {
daemonError = messageForDaemonError(err)
} else {
switch resp.Type {
case internal.CodeOffline:
daemonError = cli.ErrInternetConnection.Error()
case internal.CodeDaemonOffline:
daemonError = internal.ErrDaemonConnectionRefused.Error()
case internal.CodeOutdated:
daemonError = cli.ErrUpdateAvailable.Error()
}
}
return ti.updateDaemonConnectionStatus(daemonError)
}
func (ti *Instance) updateLoginStatus() bool {
changed := false
resp, err := ti.client.IsLoggedIn(context.Background(), &pb.Empty{})
if err != nil {
return ti.updateDaemonConnectionStatus(messageForDaemonError(err))
}
loggedIn := resp.GetValue()
if !loggedIn && ti.state.loggedIn && ti.state.vpnStatus == ConnectedString {
// reset the VPN info if the user logs out while connected to VPN
ti.setVpnStatus("Disconnected", "", "", "", "", false)
}
ti.state.mu.Lock()
if !ti.state.loggedIn && loggedIn {
ti.state.loggedIn = true
changed = true
defer ti.notify("You've successfully logged in")
} else if ti.state.loggedIn && !loggedIn {
ti.state.loggedIn = false
ti.accountInfo.reset()
ti.state.accountName = ""
changed = true
defer ti.notify("You've logged out")
}
ti.state.mu.Unlock()
return changed
}
func (ti *Instance) updateVpnStatus() bool {
changed := false
resp, err := ti.client.Status(context.Background(), &pb.Empty{})
if err != nil {
return ti.updateDaemonConnectionStatus(messageForDaemonError(err))
}
vpnStatus := resp.State
vpnHostname := resp.Hostname
vpnCity := resp.City
vpnCountry := resp.Country
vpnName := resp.Name
if vpnName == "" {
vpnName = vpnHostname
}
shouldDisplayNotification := (ti.state.vpnStatus != vpnStatus) || (ti.state.vpnHostname != vpnHostname)
if shouldDisplayNotification {
// update daemon settings before notifications are shown
changed = ti.updateAccountInfo()
changed = ti.updateSettings() || changed
}
return ti.setVpnStatus(vpnStatus, vpnName, vpnHostname, vpnCity, vpnCountry, resp.VirtualLocation) || changed
}
func (ti *Instance) updateSettings() bool {
const errorRetrievingSettingsLog = "Error retrieving settings:"
changed := false
resp, err := ti.client.Settings(context.Background(), &pb.Empty{})
var settings *pb.UserSpecificSettings
if err != nil {
log.Println(internal.ErrorPrefix, errorRetrievingSettingsLog, err)
} else {
switch resp.Type {
case internal.CodeConfigError:
log.Println(internal.ErrorPrefix, errorRetrievingSettingsLog, client.ConfigMessage)
case internal.CodeSuccess:
settings = resp.Data.UserSettings
default:
log.Println(internal.ErrorPrefix, errorRetrievingSettingsLog, internal.ErrUnhandled)
}
}
if settings == nil {
return false
}
ti.state.mu.Lock()
var newNotificationsStatus Status
if settings.Notify {
newNotificationsStatus = Enabled
} else {
newNotificationsStatus = Disabled
}
if ti.state.notificationsStatus == Invalid {
changed = true
ti.state.notificationsStatus = newNotificationsStatus
} else if ti.state.notificationsStatus != newNotificationsStatus {
changed = true
ti.state.notificationsStatus = newNotificationsStatus
if newNotificationsStatus == Enabled {
defer ti.notifyForce("Notifications for NordVPN turned on")
defer log.Println(internal.InfoPrefix, "Notifications for NordVPN turned on")
} else {
defer ti.notifyForce("Notifications for NordVPN turned off")
defer log.Println(internal.InfoPrefix, "Notifications for NordVPN turned off")
}
}
var newTrayStatus Status
if settings.Tray {
newTrayStatus = Enabled
} else {
newTrayStatus = Disabled
}
if ti.state.trayStatus == Invalid {
changed = true
ti.state.trayStatus = newTrayStatus
} else if ti.state.trayStatus != newTrayStatus {
changed = true
ti.state.trayStatus = newTrayStatus
if newTrayStatus == Enabled {
defer log.Println(internal.InfoPrefix, "Tray enabled")
} else {
defer log.Println(internal.InfoPrefix, "Tray disabled")
}
}
ti.state.mu.Unlock()
return changed
}
func (ti *Instance) updateAccountInfo() bool {
payload, err := ti.accountInfo.getAccountInfo(ti.client)
if err != nil {
if errMessage := messageForDaemonError(err); errMessage != internal.ErrDaemonConnectionRefused.Error() {
ti.updateDaemonConnectionStatus(errMessage)
}
log.Println(internal.ErrorPrefix, "Error retrieving account info:", err)
return true
}
changed := false
vpnActive := ti.state.vpnActive
var accountName string
switch payload.Type {
case internal.CodeUnauthorized:
log.Println(internal.ErrorPrefix, cli.AccountTokenUnauthorizedError)
case internal.CodeExpiredRenewToken:
log.Println(internal.ErrorPrefix, "CodeExpiredRenewToken")
case internal.CodeTokenRenewError:
log.Println(internal.ErrorPrefix, "CodeTokenRenewError")
}
if payload.Username != "" {
accountName = payload.Username
} else {
accountName = payload.Email
}
switch payload.Type {
case internal.CodeSuccess:
vpnActive = true
case internal.CodeNoService:
vpnActive = false
}
ti.state.mu.Lock()
if ti.state.vpnActive != vpnActive {
ti.state.vpnActive = vpnActive
changed = true
}
if ti.state.accountName != accountName {
ti.state.accountName = accountName
changed = true
}
ti.state.mu.Unlock()
return changed
}
func (ti *Instance) redraw(result bool) {
if result {
select {
case ti.redrawChan <- struct{}{}:
default:
}
}
}
func (ti *Instance) pollingMonitor() {
initialChan := ti.initialChan
ticker := time.NewTicker(PollingUpdateInterval)
defer ticker.Stop()
fullUpdate := true
fullUpdateLast := time.Time{}
for {
ti.redraw(ti.ping())
if ti.state.daemonAvailable {
ti.redraw(ti.updateLoginStatus())
ti.redraw(ti.updateSettings())
if ti.state.loggedIn {
if fullUpdate {
ti.redraw(ti.updateAccountInfo())
}
ti.redraw(ti.updateVpnStatus())
if fullUpdate {
fullUpdateLast = time.Now()
}
}
}
// while the settings were not fetch don't unblock the tray loop
if ti.state.trayStatus != Invalid && initialChan != nil {
initialChan <- struct{}{}
close(initialChan)
initialChan = nil
if ti.debugMode {
log.Println(internal.DebugPrefix, "Initial retrieve")
}
}
select {
case fullUpdate = <-ti.updateChan:
case <-systray.TrayOpenedCh:
fullUpdate = true
case ts := <-ticker.C:
fullUpdate = ts.Sub(fullUpdateLast) >= PollingFullUpdateInterval
}
if ti.debugMode {
if fullUpdate {
log.Println(internal.DebugPrefix, "Full update")
} else {
log.Println(internal.DebugPrefix, "Update")
}
}
}
}
func messageForDaemonError(err error) string {
if err == nil {
return ""
}
statusError, ok := status.FromError(err)
if !ok {
return ""
}
errorMessage := statusError.Message()
if errorMessage == internal.ErrNotLoggedIn.Error() {
// no error needs to be displayed in this case
// the user is not logged in and will be handled when fetching the login status
return ""
}
if strings.Contains(errorMessage, "no such file or directory") {
message := "NordVPN daemon is not running\n\n"
if snapconf.IsUnderSnap() {
message += "sudo snap start nordvpn"
} else {
message += "sudo systemctl enable --now nordvpnd"
}
return message
}
if strings.Contains(errorMessage, "permission denied") || strings.Contains(errorMessage, "connection reset by peer") {
return "Add the user to the nordvpn group and reboot the system\n\nsudo usermod -aG nordvpn $USER"
}
if snapconf.IsUnderSnap() {
if snapErr := cli.RetrieveSnapConnsError(err); snapErr != nil {
return fmt.Sprintf(cli.MsgSnapPermissionsErrorForTray, cli.JoinSnapMissingPermissions(snapErr))
}
}
return internal.ErrDaemonConnectionRefused.Error()
}
func (ti *Instance) updateDaemonConnectionStatus(errorMessage string) bool {
changed := false
daemonAvailable := false
if (errorMessage == "") || (errorMessage == cli.ErrUpdateAvailable.Error()) {
daemonAvailable = true
}
ti.state.mu.Lock()
if ti.state.daemonAvailable != daemonAvailable {
changed = true
ti.state.daemonAvailable = daemonAvailable
if daemonAvailable {
defer ti.notify("Reconnected to NordVPN's background service")
} else {
defer ti.notify("Couldn't connect to NordVPN's background service. Please ensure the service is running.")
}
}
if ti.state.daemonError != errorMessage {
ti.state.daemonError = errorMessage
changed = true
}
ti.state.mu.Unlock()
return changed
}
func (ti *Instance) setVpnStatus(
vpnStatus string,
vpnName string,
vpnHostname string,
vpnCity string,
vpnCountry string,
virtualLocation bool,
) bool {
changed := false
ti.state.mu.Lock()
notifyConnected := func() {
// use this helper function to ensure that the connected notification is displaying the latest info from ti.state on defer
ti.notify("Connected to %s", ti.state.serverName())
}
if ti.state.vpnStatus != vpnStatus {
if vpnStatus == ConnectedString {
if ti.state.systrayRunning {
systray.SetIconName(ti.iconConnected)
}
defer notifyConnected()
} else {
if ti.state.systrayRunning {
systray.SetIconName(ti.iconDisconnected)
}
defer ti.notify(fmt.Sprintf("Disconnected from %s", ti.state.serverName()))
}
ti.state.vpnStatus = vpnStatus
changed = true
}
if ti.state.vpnHostname != vpnHostname {
if ti.state.vpnHostname != "" && vpnHostname != "" {
defer notifyConnected()
}
ti.state.vpnHostname = vpnHostname
changed = true
}
ti.state.vpnName = vpnName
ti.state.vpnCity = vpnCity
ti.state.vpnCountry = vpnCountry
ti.state.vpnVirtualLocation = virtualLocation
ti.state.mu.Unlock()
return changed
}