-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.go
171 lines (147 loc) · 3.32 KB
/
app.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
package main
import (
"context"
_ "embed"
"fmt"
"guiforclash/backend/core"
"os"
"os/exec"
"path/filepath"
"github.com/gen2brain/beeep"
"github.com/getlantern/systray"
"github.com/wailsapp/wails/v2/pkg/runtime"
)
//go:embed build\windows\icon.ico
var iconData []byte
var mShow, mHide, mQuit *systray.MenuItem
type App struct {
ctx context.Context
}
func NewApp() *App {
return &App{}
}
func (a *App) startup(ctx context.Context) {
a.ctx = ctx
onExit := func() {
fmt.Println("Is exited!")
}
go systray.Run(onReady, onExit)
}
func (a *App) OnDomReady(ctx context.Context) {
go func() {
for {
select {
case <-mShow.ClickedCh:
runtime.Show(ctx)
runtime.WindowUnminimise(ctx)
runtime.WindowSetAlwaysOnTop(ctx, true)
case <-mHide.ClickedCh:
runtime.Hide(ctx)
case <-mQuit.ClickedCh:
runtime.Quit(ctx)
}
}
}()
}
func onReady() {
systray.SetIcon(iconData)
systray.SetTooltip("Foxer")
mShow = systray.AddMenuItem("显示", "显示窗口")
mHide = systray.AddMenuItem("隐藏", "隐藏窗口")
systray.AddSeparator()
mQuit = systray.AddMenuItem("退出", "退出程序")
}
type ApiIOResult struct {
Flag bool `json:"flag"`
Data string `json:"data"`
}
// Writefile 写入文件
func (a *App) Writefile(path string, content string) ApiIOResult {
var (
cwd string
err error
)
if result := a.GetUserCwd(); result.Flag {
cwd = result.Data
} else {
cwd, err = os.Getwd()
if err != nil {
return ApiIOResult{false, err.Error()}
}
}
path = filepath.Join(cwd, path)
err = os.WriteFile(path, []byte(content), 0644)
if err != nil {
return ApiIOResult{false, err.Error()}
}
return ApiIOResult{true, "Success"}
}
// Readfile 读取文件
func (a *App) Readfile(path string) ApiIOResult {
var (
cwd string
err error
)
if result := a.GetUserCwd(); result.Flag {
cwd = result.Data
} else {
cwd, err = os.Getwd()
if err != nil {
return ApiIOResult{false, err.Error()}
}
}
path = filepath.Join(cwd, path)
b, err := os.ReadFile(path)
if err != nil {
return ApiIOResult{false, err.Error()}
}
return ApiIOResult{true, string(b)}
}
// Notification 通知
func (a *App) Notification(title string, message string, icon string) ApiIOResult {
fmt.Println("Notification:", title, message, icon)
err := beeep.Notify(title, message, icon)
if err != nil {
return ApiIOResult{false, err.Error()}
}
return ApiIOResult{true, "Success"}
}
// Getcwd 获取当前路径
func (a *App) Getcwd() ApiIOResult {
cwd, err := os.Getwd()
if err != nil {
return ApiIOResult{false, err.Error()}
}
return ApiIOResult{true, cwd}
}
// Exec 执行 CMD 命令
func (a *App) Exec(path string, args string) ApiIOResult {
fmt.Println("Exec:", path, args)
cwd, err := os.Getwd()
if err != nil {
return ApiIOResult{false, err.Error()}
}
path = filepath.Join(cwd, path)
cmd := exec.Command(path, args)
out, err := cmd.CombinedOutput()
if err != nil {
return ApiIOResult{false, err.Error()}
}
return ApiIOResult{true, string(out)}
}
// GetUserCwd 获取用户目录
func (a *App) GetUserCwd() ApiIOResult {
flag, home := core.GetUserPath()
return ApiIOResult{Flag: flag, Data: home}
}
// 判断文件夹是否存在
func PathExists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return false, err
}