forked from arduino/arduino-create-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystray_real.go
251 lines (223 loc) · 7.71 KB
/
systray_real.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
// Copyright 2022 Arduino SA
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//go:build !cli
// Systray_real gets compiled when the tag 'cli' is missing. This is the default case
package systray
import (
"os"
"runtime"
"time"
"fyne.io/systray"
cert "github.com/arduino/arduino-create-agent/certificates"
"github.com/arduino/arduino-create-agent/config"
"github.com/arduino/arduino-create-agent/icon"
"github.com/arduino/arduino-create-agent/utilities"
"github.com/go-ini/ini"
log "github.com/sirupsen/logrus"
"github.com/skratchdot/open-golang/open"
)
// Start sets up the systray icon with its menus
func (s *Systray) Start() {
if s.Hibernate {
systray.Run(s.startHibernate, s.end)
} else {
systray.Run(s.start, s.end)
}
}
// Quit simply exits the program
func (s *Systray) Quit() {
systray.Quit()
}
// start creates a systray icon with menu options to go to arduino create, open debug, pause/quit the agent
func (s *Systray) start() {
systray.SetTemplateIcon(icon.GetIcon(), icon.GetIcon())
// Add version
menuVer := systray.AddMenuItem("Agent version "+s.Version, "")
menuVer.Disable()
// Add links
mURL := systray.AddMenuItem("Go to Arduino Cloud", "Arduino Cloud")
mDebug := systray.AddMenuItem("Open Debug Console", "Debug console")
mConfig := systray.AddMenuItem("Open Configuration", "Config File")
// Remove crash-reports
mRmCrashes := systray.AddMenuItem("Remove crash reports", "")
s.updateMenuItem(mRmCrashes, config.LogsIsEmpty())
mManageCerts := systray.AddMenuItem("Manage HTTPS certificate", "HTTPS Certs")
// On linux/windows chrome/firefox/edge(chromium) the agent works without problems on plain HTTP,
// so we disable the menuItem to generate/install the certificates
if runtime.GOOS != "darwin" {
s.updateMenuItem(mManageCerts, true)
}
// Add pause/quit
mPause := systray.AddMenuItem("Pause Agent", "")
systray.AddSeparator()
mQuit := systray.AddMenuItem("Quit Agent", "")
// Add configs
s.addConfigs()
// listen for events
go func() {
for {
select {
case <-mURL.ClickedCh:
_ = open.Start("https://app.arduino.cc")
case <-mDebug.ClickedCh:
_ = open.Start(s.DebugURL())
case <-mConfig.ClickedCh:
_ = open.Start(s.currentConfigFilePath.String())
case <-mRmCrashes.ClickedCh:
RemoveCrashes()
s.updateMenuItem(mRmCrashes, config.LogsIsEmpty())
case <-mManageCerts.ClickedCh:
infoMsg := "The Arduino Agent needs a local HTTPS certificate to work correctly with Safari.\n\nYour HTTPS certificate status:\n"
buttons := "{\"Install the certificate for Safari\", \"OK\"}"
toPress := "Install the certificate for Safari"
certDir := config.GetCertificatesDir()
if cert.CertInKeychain() || config.CertsExist() {
expDate, err := cert.GetExpirationDate()
if err != nil {
log.Errorf("cannot get certificates expiration date, something went wrong: %s", err)
}
infoMsg = infoMsg + "- Certificate installed:\t\tYes\n- Certificate trusted:\t\tYes\n- Certificate expiration:\t" + expDate.Format(time.DateTime)
buttons = "{\"Uninstall the certificate for Safari\", \"OK\"}"
toPress = "Uninstall the certificate for Safari"
pressedButton := utilities.UserPrompt(infoMsg, buttons, "OK", toPress, "Arduino Agent: Manage HTTPS certificate")
if pressedButton {
err := cert.UninstallCertificates()
if err != nil {
log.Errorf("cannot uninstall certificates something went wrong: %s", err)
} else {
cert.DeleteCertificates(certDir)
err = config.SetInstallCertsIni(s.currentConfigFilePath.String(), "false")
if err != nil {
log.Errorf("cannot set installCerts value in config.ini: %s", err)
}
utilities.UserPrompt("The HTTPS certificate has been uninstalled.", "{\"OK\"}", "OK", "OK", "Arduino Agent: HTTPS certificate installation")
}
s.Restart()
}
} else {
infoMsg = infoMsg + "- Certificate installed:\t\tNo\n- Certificate trusted:\t\tN/A\n- Certificate expiration:\tN/A"
pressedButton := utilities.UserPrompt(infoMsg, buttons, "OK", toPress, "Arduino Agent: Manage HTTPS certificate")
if pressedButton {
cert.GenerateAndInstallCertificates(certDir)
err := config.SetInstallCertsIni(s.currentConfigFilePath.String(), "true")
if err != nil {
log.Errorf("cannot set installCerts value in config.ini: %s", err)
}
s.Restart()
}
}
case <-mPause.ClickedCh:
s.Pause()
case <-mQuit.ClickedCh:
s.Quit()
}
}
}()
}
// updateMenuItem will enable or disable an item in the tray icon menu id disable is true
func (s *Systray) updateMenuItem(item *systray.MenuItem, disable bool) {
if disable {
item.Disable()
} else {
item.Enable()
}
}
// RemoveCrashes removes the crash-reports from `logs` folder
func RemoveCrashes() {
logsDir := config.GetLogsDir()
pathErr := logsDir.RemoveAll()
if pathErr != nil {
log.Errorf("Cannot remove crashreports: %s", pathErr)
} else {
log.Infof("Removed crashreports inside: %s", logsDir)
}
}
// starthibernate creates a systray icon with menu options to resume/quit the agent
func (s *Systray) startHibernate() {
systray.SetTemplateIcon(icon.GetIconHiber(), icon.GetIconHiber())
mResume := systray.AddMenuItem("Resume Agent", "")
systray.AddSeparator()
mQuit := systray.AddMenuItem("Quit Agent", "")
// listen for events
go func() {
for {
select {
case <-mResume.ClickedCh:
s.Resume()
case <-mQuit.ClickedCh:
s.Quit()
}
}
}()
}
// end simply exits the program
func (s *Systray) end() {
os.Exit(0)
}
func (s *Systray) addConfigs() {
var mConfigCheckbox []*systray.MenuItem
configs := s.getConfigs()
if len(configs) > 1 {
for _, config := range configs {
entry := systray.AddMenuItem(config.Name, "")
mConfigCheckbox = append(mConfigCheckbox, entry)
// decorate configs
gliph := " ☐ "
if s.AdditionalConfig == config.Location {
gliph = " 🗹 "
}
entry.SetTitle(gliph + config.Name)
}
}
// It would be great to use the select channel here,
// but unfortunately there's no clean way to do it with an array of channels, so we start a single goroutine for each of them
for i := range mConfigCheckbox {
go func(v int) {
<-mConfigCheckbox[v].ClickedCh
s.AdditionalConfig = configs[v].Location
s.Restart()
}(i)
}
}
type configIni struct {
Name string
Location string
}
// getConfigs parses all config files in the .arduino-create folder
func (s *Systray) getConfigs() []configIni {
var configs []configIni
files, err := s.ConfigDir.ReadDir()
if err != nil {
log.Errorf("cannot read the content of %s", s.ConfigDir)
return nil
}
files.FilterOutDirs()
files.FilterSuffix(".ini")
for _, file := range files {
cfg, err := ini.LoadSources(ini.LoadOptions{IgnoreInlineComment: true, AllowPythonMultilineValues: true}, file.String())
if err != nil {
log.Errorf("error walking through executable configuration: %s", err)
} else {
defaultSection, err := cfg.GetSection("")
name := defaultSection.Key("name").String()
if name == "" || err != nil {
name = "Default config"
}
conf := configIni{Name: name, Location: file.String()}
configs = append(configs, conf)
}
}
return configs
}