-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.go
217 lines (190 loc) · 4.01 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
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
package main
import (
"context"
"errors"
"fmt"
github "github.com/google/go-github/v49/github"
wailsruntime "github.com/wailsapp/wails/v2/pkg/runtime"
"io/fs"
"os"
"path/filepath"
goruntime "runtime"
)
// The data structures used in the program.
type FileParts struct {
Dir string
Name string
Extension string
}
type GitHubRepos struct {
Name string `json:"name"`
URL string `json:"url"`
Stars int `json:"stars"`
Owner string `json:"owner"`
ID int64 `json:"id"`
Description string `json:"description"`
}
// App struct
type App struct {
ctx context.Context
err string
}
// NewApp creates a new App application struct
func NewApp() *App {
return &App{}
}
// startup is called when the app starts. The context is saved
// so we can call the runtime methods
func (a *App) startup(ctx context.Context) {
a.ctx = ctx
}
func (b *App) GetExecutable() string {
ex, err := os.Executable()
if err != nil {
b.err = err.Error()
}
return ex
}
func (b *App) Getwd() string {
wd, err := os.Getwd()
if err != nil {
b.err = err.Error()
}
return wd
}
func (b *App) ReadFile(path string) string {
b.err = ""
contents, err := os.ReadFile(path)
if err != nil {
b.err = err.Error()
}
return string(contents[:])
}
func (b *App) GetHomeDir() string {
b.err = ""
hdir, err := os.UserHomeDir()
if err != nil {
b.err = err.Error()
}
return hdir
}
func (b *App) WriteFile(path string, data string) {
err := os.WriteFile(path, []byte(data), 0666)
if err != nil {
b.err = err.Error()
}
}
func (b *App) FileExists(path string) bool {
b.err = ""
_, err := os.Stat(path)
return !errors.Is(err, os.ErrNotExist)
}
func (b *App) DirExists(path string) bool {
b.err = ""
dstat, err := os.Stat(path)
if err != nil {
b.err = err.Error()
return false
}
return dstat.IsDir()
}
func (b *App) SplitFile(path string) FileParts {
b.err = ""
var parts FileParts
parts.Dir, parts.Name = filepath.Split(path)
parts.Extension = filepath.Ext(path)
return parts
}
func (b *App) MakeDir(path string) {
b.err = ""
err := os.MkdirAll(path, 0755)
if err != nil {
b.err = err.Error()
}
}
func (b *App) MakeFile(path string) {
b.err = ""
b.WriteFile(path, "")
}
func (b *App) GetError() string {
return b.err
}
func (b *App) DeleteEntries(path string) {
b.err = ""
err := os.RemoveAll(path)
if err != nil {
b.err = err.Error()
}
}
func (b *App) CreateTempFile(contents string) string {
//
// Create the temperary file.
//
f, err := os.CreateTemp("", "extscript*")
if err != nil {
b.err = err.Error()
}
fname := f.Name()
//
// Write the contents.
//
if _, err := f.Write([]byte(contents)); err != nil {
b.err = err.Error()
}
//
// Close the file.
//
if err := f.Close(); err != nil {
b.err = err.Error()
}
//
// Return the results.
//
return (fname)
}
func (b *App) Chmod(file string, nmode fs.FileMode) {
err := os.Chmod(file, nmode)
if err != nil {
b.err = err.Error()
}
}
func (b *App) AppendPath(dir string, name string) string {
return filepath.Join(dir, name)
}
func (b *App) Quit() {
wailsruntime.Quit(b.ctx)
}
func (b *App) GetOSName() string {
os := goruntime.GOOS
result := ""
switch os {
case "windows":
result = "windows"
break
case "darwin":
result = "macos"
case "linux":
result = "linux"
default:
result = fmt.Sprintf("%s", os)
}
return result
}
func (b *App) GetGitHubThemes() []GitHubRepos {
var result []GitHubRepos
client := github.NewClient(nil)
topics, _, err := client.Search.Repositories(context.Background(), "in:topic personalkanban in:topic theme", nil)
if err == nil {
total := *topics.Total
result = make([]GitHubRepos, total, total)
for i := 0; i < total; i++ {
result[i].ID = *topics.Repositories[i].ID
result[i].Name = *topics.Repositories[i].Name
result[i].Owner = *topics.Repositories[i].Owner.Login
result[i].URL = *topics.Repositories[i].CloneURL
result[i].Stars = *topics.Repositories[i].StargazersCount
result[i].Description = *topics.Repositories[i].Description
}
}
return result
}