-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmain.go
409 lines (350 loc) · 7.87 KB
/
main.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
402
403
404
405
406
407
408
409
package main
import (
"embed"
_ "embed"
"fmt"
"log"
"os"
"path/filepath"
"regexp"
"strings"
"time"
"github.com/emersion/go-autostart"
"github.com/fsnotify/fsnotify"
notify "github.com/getlantern/notifier"
"github.com/getlantern/systray"
"github.com/sagernet/sing/common/json"
"github.com/skratchdot/open-golang/open"
)
//go:embed icon/icon.png
var icon []byte
//go:embed icon/icon_off.png
var iconOff []byte
//go:embed icon/icon.ico
var iconWin []byte
//go:embed icon/icon_off.ico
var iconOffWin []byte
//go:embed icon/logo.png
var logo []byte
var home string
//go:embed .singbox
var singbox embed.FS
var Conf = ""
var ConfDir = ""
var sb *SingBox
var confFileReg = regexp.MustCompile(`^config(\.\w+)?.json$`)
type AppConf struct {
LaunchdAtLogin bool
ProxyAtLogin bool
ActiveConfig string
}
var appConf = &AppConf{
ActiveConfig: "config.json",
}
type menu struct {
Title string
Tips string
Icon []byte
OnClick func(m *systray.MenuItem)
}
func main() {
defer func() {
sb.Close()
}()
home, _ = os.UserHomeDir()
_ = SaveDir(singbox, home, false)
loadAppConf()
ConfDir = filepath.Join(home, ".singbox")
os.Chdir(ConfDir)
Conf = filepath.Join(home, ".singbox", "config.json")
systray.Run(onReady, onExit)
}
func onReady() {
_icon := icon
_iconOff := iconOff
if isWin() {
_icon = iconWin
_iconOff = iconOffWin
}
systray.SetTemplateIcon(_iconOff, _iconOff)
sb = &SingBox{ConfPath: Conf}
_startProxy := func(m *systray.MenuItem) {
err := sb.Start(ConfDir, appConf.ActiveConfig)
if err != nil {
notice(¬ify.Notification{
Title: "SingBox Start error",
Message: err.Error(),
})
return
}
m.SetTitle("StopProxy")
systray.SetTemplateIcon(_icon, _icon)
}
var restartMenu *systray.MenuItem
startProxy := func(m *systray.MenuItem) {
err := sb.Start(ConfDir, appConf.ActiveConfig)
if err != nil {
if strings.Contains(err.Error(), "configure tun interface") {
if strings.Contains(err.Error(), "Access is denied") {
notice2("when tun mod, please run app as admin")
return
}
if strings.Contains(err.Error(), "operation not permitted") {
_ = runAsAdministrator(func() {
sb.Close()
})
}
}
if strings.Contains(err.Error(), "no route to internet") {
go func() {
time.Sleep(time.Second * 10)
_startProxy(m)
}()
} else {
notice(¬ify.Notification{
Title: "SingBox Config ERR",
Message: err.Error(),
})
}
return
}
m.SetTitle("StopProxy")
systray.SetTemplateIcon(_icon, _icon)
if restartMenu != nil {
restartMenu.Show()
}
}
closeProxy := func(m *systray.MenuItem) {
sb.Close()
m.SetTitle("StartProxy")
systray.SetTemplateIcon(_iconOff, _iconOff)
if restartMenu != nil {
restartMenu.Hide()
}
}
proxyMenu := addMenu(&menu{
Title: "StartProxy",
OnClick: func(m *systray.MenuItem) {
m.Disable()
if sb.Running {
closeProxy(m)
} else {
startProxy(m)
}
m.Enable()
},
})
if appConf.ProxyAtLogin {
proxyMenu.Disable()
startProxy(proxyMenu)
proxyMenu.Enable()
}
restartProxy := func() {
closeProxy(proxyMenu)
startProxy(proxyMenu)
}
restartMenu = addMenu(&menu{
Title: "RestartProxy",
OnClick: func(m *systray.MenuItem) {
if sb.Running {
restartProxy()
} else {
startProxy(proxyMenu)
}
},
})
options, err := readConfig(filepath.Join(ConfDir, appConf.ActiveConfig))
if err == nil {
addMenu(&menu{
Title: "Dashboard",
OnClick: func(m *systray.MenuItem) {
_ = open.Run(fmt.Sprintf("http://%s/ui", options.Experimental.ClashAPI.ExternalController))
},
})
}
addCheckboxMenu(&menu{
Title: "LaunchdAtLogin",
OnClick: func(m *systray.MenuItem) {
app := &autostart.App{
Name: "singbox",
DisplayName: "SingBox",
Exec: []string{"open", "-a", "SingBox"},
}
if isWin() {
dir, _ := os.Getwd()
app.Exec = []string{filepath.Join(dir, "SingBox.exe")}
}
if !m.Checked() {
m.Check()
if app.IsEnabled() {
return
}
log.Println("Enabling app...")
if err := app.Enable(); err != nil {
log.Fatal(err)
}
} else {
m.Uncheck()
if !app.IsEnabled() {
return
}
log.Println("App is already enabled, removing it...")
if err := app.Disable(); err != nil {
log.Fatal(err)
}
}
log.Println("Done!")
appConf.LaunchdAtLogin = m.Checked()
saveAppConf()
},
}, appConf.LaunchdAtLogin)
addCheckboxMenu(&menu{
Title: "ProxyAtLogin",
OnClick: func(m *systray.MenuItem) {
if !m.Checked() {
m.Check()
} else {
m.Uncheck()
}
appConf.ProxyAtLogin = m.Checked()
saveAppConf()
},
}, appConf.ProxyAtLogin)
addMenu(&menu{
Title: "EditConfig",
OnClick: func(m *systray.MenuItem) {
confFile := filepath.Join(ConfDir, appConf.ActiveConfig)
err := open.RunWith(confFile, "Visual Studio Code")
if err != nil {
_ = open.Run(ConfDir)
}
},
})
var confList []*menu
if files, err := dirFileList(ConfDir); err == nil {
for _, v := range files {
fileName := v
if confFileReg.MatchString(fileName) == false {
continue
}
confList = append(confList, &menu{
Title: fileName,
OnClick: func(m *systray.MenuItem) {
if fileName == appConf.ActiveConfig {
return
}
appConf.ActiveConfig = fileName
saveAppConf()
fmt.Println(appConf.ActiveConfig)
restartProxy()
},
})
}
}
addRadioMenu("SelectConfig", appConf.ActiveConfig, confList)
addMenuGroup("About", []*menu{
{
Title: "SingBox",
OnClick: func(m *systray.MenuItem) {
_ = open.Run("http://github.com/daodao97/SingBox")
},
},
{
Title: "sing-box docs",
OnClick: func(m *systray.MenuItem) {
_ = open.Run("https://sing-box.sagernet.org/zh/configuration/")
},
},
})
systray.AddSeparator()
addMenu(&menu{
Title: "Quit",
OnClick: func(m *systray.MenuItem) {
sb.Close()
systray.Quit()
},
})
go watcher(sb, func(actType string) {
if sb.Running == false {
return
}
if actType == "@CONTENTCLICKED" || actType == "@ACTIONCLICKED" {
restartProxy()
}
})
}
func onExit() {
fmt.Println("exit app")
}
func watcher(sb *SingBox, cb func(actType string)) {
watcher, err := fsnotify.NewWatcher()
if err != nil {
notice2("file watcher err " + err.Error())
return
}
defer watcher.Close()
if files, err := dirFileList(ConfDir); err == nil {
for _, v := range files {
if strings.Contains(v, ".json") {
err = watcher.Add(filepath.Join(ConfDir, v))
if err != nil {
notice2("file watcher err " + err.Error())
}
}
}
}
for {
select {
case event, ok := <-watcher.Events:
if !ok {
return
}
fmt.Println("event:", event, fmt.Sprintf("%v", sb.Running))
if filepath.Join(ConfDir, appConf.ActiveConfig) == event.Name && strings.Contains(event.String(), "WRITE") && sb.Running {
notice(¬ify.Notification{
Title: "SingBox Config Change",
Message: "Click me to reload SingBox",
OnClick: cb,
})
}
case err, ok := <-watcher.Errors:
if !ok {
return
}
fmt.Println("error:", err)
}
}
}
func notice(msg *notify.Notification) {
msg.Sender = "run.daodao.SingBox"
n := notify.NewNotifications()
err := n.Notify(msg)
if err != nil {
fmt.Println("notify err", err)
}
}
func notice2(message string) {
n := notify.NewNotifications()
err := n.Notify(¬ify.Notification{Title: "SingBox", Message: message, Sender: "run.daodao.SingBox"})
if err != nil {
fmt.Println("notify err", err)
}
}
func saveAppConf() {
j, _ := json.Marshal(appConf)
err := saveFile(filepath.Join(home, ".singbox", "app.json"), j)
if err != nil {
log.Println("save app.json err", err)
}
}
func loadAppConf() {
bt, err := readFile(filepath.Join(home, ".singbox", "app.json"))
if err == nil {
err = json.Unmarshal(bt, appConf)
} else {
log.Println("read app.json err", err)
}
if appConf.ActiveConfig == "" {
appConf.ActiveConfig = "config.json"
}
}