-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathsystray_real.go
216 lines (186 loc) · 5.72 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
// 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"
"os/user"
log "github.com/sirupsen/logrus"
"github.com/arduino/arduino-create-agent/icon"
"github.com/arduino/go-paths-helper"
"github.com/getlantern/systray"
"github.com/go-ini/ini"
"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.SetIcon(icon.GetIcon())
// Add version
menuVer := systray.AddMenuItem("Agent version "+s.Version, "")
menuVer.Disable()
// Add links
mURL := systray.AddMenuItem("Go to Arduino Create", "Arduino Create")
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, s.CrashesIsEmpty())
// 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://create.arduino.cc")
case <-mDebug.ClickedCh:
_ = open.Start(s.DebugURL())
case <-mConfig.ClickedCh:
_ = open.Start(s.currentConfigFilePath.String())
case <-mRmCrashes.ClickedCh:
s.RemoveCrashes()
s.updateMenuItem(mRmCrashes, s.CrashesIsEmpty())
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()
}
}
// CrashesIsEmpty checks if the folder containing crash-reports is empty
func (s *Systray) CrashesIsEmpty() bool {
logsDir := getLogsDir()
return logsDir.NotExist() // if the logs directory is empty we assume there are no crashreports
}
// RemoveCrashes removes the crash-reports from `logs` folder
func (s *Systray) RemoveCrashes() {
logsDir := getLogsDir()
pathErr := logsDir.RemoveAll()
if pathErr != nil {
log.Errorf("Cannot remove crashreports: %s", pathErr)
} else {
log.Infof("Removed crashreports inside: %s", logsDir)
}
}
// getLogsDir simply returns the folder containing the logs
func getLogsDir() *paths.Path {
usr, _ := user.Current()
usrDir := paths.New(usr.HomeDir) // The user folder, on linux/macos /home/<usr>/
agentDir := usrDir.Join(".arduino-create")
return agentDir.Join("logs")
}
// starthibernate creates a systray icon with menu options to resume/quit the agent
func (s *Systray) startHibernate() {
systray.SetIcon(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
}