aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/tray.go
blob: e5260ae18ecaee78a6f532aa00bdb35508efc67d (plain) (blame)
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
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
 */

package ui

import (
	"fmt"
	"sort"
	"strings"

	"github.com/lxn/walk"
	"golang.zx2c4.com/wireguard/windows/service"
)

// Status + active CIDRs + deactivate + separator
const trayTunnelActionsOffset = 4

type Tray struct {
	*walk.NotifyIcon

	// Current known tunnels by name
	tunnels map[string]*walk.Action

	mtw  *ManageTunnelsWindow
	icon *walk.Icon
}

func NewTray(mtw *ManageTunnelsWindow, icon *walk.Icon) (*Tray, error) {
	var err error

	tray := &Tray{
		mtw:     mtw,
		icon:    icon,
		tunnels: make(map[string]*walk.Action),
	}
	tray.NotifyIcon, err = walk.NewNotifyIcon(mtw.MainWindow)
	if err != nil {
		return nil, err
	}

	return tray, tray.setup()
}

func (tray *Tray) setup() error {
	tray.SetToolTip("WireGuard: Deactivated")
	tray.SetVisible(true)
	tray.SetIcon(tray.icon)

	tray.MouseDown().Attach(func(x, y int, button walk.MouseButton) {
		if button == walk.LeftButton {
			tray.mtw.Show()
		}
	})

	// configure initial menu items
	for _, item := range [...]struct {
		label     string
		handler   walk.EventHandler
		enabled   bool
		hidden    bool
		separator bool
	}{
		{label: "Status: Unknown"},
		{label: "Networks: None", hidden: true},
		{label: "Deactivate", handler: tray.onDeactivateTunnel, enabled: true, hidden: true},
		{separator: true},
		{separator: true},
		{label: "&Manage tunnels...", handler: tray.mtw.Show, enabled: true},
		{label: "&Import tunnel(s) from file...", handler: tray.mtw.onImport, enabled: true},
		{separator: true},
		{label: "&About WireGuard", handler: onAbout, enabled: true},
		{label: "&Quit", handler: onQuit, enabled: true},
	} {
		var action *walk.Action
		if item.separator {
			action = walk.NewSeparatorAction()
		} else {
			action = walk.NewAction()
			action.SetText(item.label)
			action.SetEnabled(item.enabled)
			action.SetVisible(!item.hidden)
			if item.handler != nil {
				action.Triggered().Attach(item.handler)
			}
		}

		tray.ContextMenu().Actions().Add(action)
	}

	tunnels, err := service.IPCClientTunnels()
	if err != nil {
		return err
	}

	for _, tunnel := range tunnels {
		tray.addTunnelAction(tunnel.Name)
	}

	tray.mtw.TunnelAdded().Attach(tray.addTunnelAction)
	tray.mtw.TunnelDeleted().Attach(tray.removeTunnelAction)

	return nil
}

func (tray *Tray) addTunnelAction(tunnelName string) {
	tunnelAction := walk.NewAction()
	tunnelAction.SetText(tunnelName)
	tunnelAction.SetEnabled(true)
	tunnelAction.SetCheckable(true)
	tunnelAction.Triggered().Attach(func() {
		if activeTunnel := tray.mtw.tunnelTracker.activeTunnel; activeTunnel != nil && activeTunnel.Name == tunnelName {
			tray.onDeactivateTunnel()
		} else {
			tray.onActivateTunnel(tunnelName)
		}
	})
	tray.tunnels[tunnelName] = tunnelAction

	// Add the action at the right spot
	var names []string
	for name, _ := range tray.tunnels {
		names = append(names, name)
	}
	sort.Strings(names)

	var (
		idx  int
		name string
	)
	for idx, name = range names {
		if name == tunnelName {
			break
		}
	}

	tray.ContextMenu().Actions().Insert(trayTunnelActionsOffset+idx, tunnelAction)
}

func (tray *Tray) removeTunnelAction(tunnelName string) {
	tray.ContextMenu().Actions().Remove(tray.tunnels[tunnelName])
	delete(tray.tunnels, tunnelName)
}

func (tray *Tray) SetTunnelState(tunnel *service.Tunnel, state service.TunnelState) {
	tray.SetTunnelStateWithNotification(tunnel, state, true)
}

func (tray *Tray) SetTunnelStateWithNotification(tunnel *service.Tunnel, state service.TunnelState, showNotifications bool) {
	tunnelAction := tray.tunnels[tunnel.Name]

	actions := tray.ContextMenu().Actions()
	statusAction := actions.At(0)
	activeCIDRsAction := actions.At(1)
	deactivateAction := actions.At(2)

	setTunnelActionsEnabled := func(enabled bool) {
		for i := 0; i < len(tray.tunnels); i++ {
			action := actions.At(trayTunnelActionsOffset + i)
			action.SetEnabled(enabled)
		}
	}

	switch state {
	case service.TunnelStarting:
		statusAction.SetText("Status: Activating")
		setTunnelActionsEnabled(false)

		tray.SetToolTip("WireGuard: Activating...")

	case service.TunnelStarted:
		statusAction.SetText("Status: Active")
		setTunnelActionsEnabled(true)

		config, err := tunnel.RuntimeConfig()
		activeCIDRsAction.SetVisible(err == nil)
		deactivateAction.SetVisible(err == nil)
		if err == nil {
			var sb strings.Builder
			for i, addr := range config.Interface.Addresses {
				if i > 0 {
					sb.WriteString(", ")
				}

				sb.WriteString(addr.String())
			}

			activeCIDRsAction.SetText(fmt.Sprintf("Networks: %s", sb.String()))
		}

		tunnelAction.SetEnabled(true)
		tunnelAction.SetChecked(true)

		tray.SetToolTip("WireGuard: Activated")
		if showNotifications {
			tray.ShowInfo("WireGuard Activated", fmt.Sprintf("The %s tunnel has been activated.", tunnel.Name))
		}

	case service.TunnelStopping:
		statusAction.SetText("Status: Deactivating")
		setTunnelActionsEnabled(false)

		tray.SetToolTip("WireGuard: Deactivating...")

	case service.TunnelStopped:
		statusAction.SetText("Status: Inactive")
		activeCIDRsAction.SetVisible(false)
		deactivateAction.SetVisible(false)
		setTunnelActionsEnabled(true)
		tunnelAction.SetChecked(false)

		tray.SetToolTip("WireGuard: Deactivated")
		if showNotifications {
			tray.ShowInfo("WireGuard Deactivated", fmt.Sprintf("The %s tunnel has been deactivated.", tunnel.Name))
		}
	}
}

func (tray *Tray) onActivateTunnel(tunnelName string) {
	if err := tray.mtw.TunnelTracker().ActivateTunnel(&service.Tunnel{tunnelName}); err != nil {
		walk.MsgBox(tray.mtw, "Failed to activate tunnel", err.Error(), walk.MsgBoxIconError)
	}
}

func (tray *Tray) onDeactivateTunnel() {
	if err := tray.mtw.TunnelTracker().DeactivateTunnel(); err != nil {
		walk.MsgBox(tray.mtw, "Failed to deactivate tunnel", err.Error(), walk.MsgBoxIconError)
	}
}